Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

popup with valus displayed?

Former Member
0 Kudos

Hi guys,

What is exactly popup function to display values entered in I/o fields on screen?

Thanks,

Nihad

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Try FM: POPUP_TO_CONFIRM_WITH_VALUE

You may also check:

POPUP_TO_CONFIRM_WITH_MESSAGE

11 REPLIES 11

Former Member
0 Kudos

Hi:

Try to use function module like POPUP_TO_DISPLAY_USERDATA

or call a screen , for details have a look

[LInk|http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbab2935c111d1829f0000e829fbfe/content.htm]

Regards

Shashi

0 Kudos

well, not exactly... I need FM to display values and ask for confirmation. I found this

POPUP_TO_DISPLAY_VALUE, can it display numeric and char values?

Regards,

Nihad

0 Kudos

check these FM

POPUP_TO_CONFIRM
POPUP_TO_CONFIRM_WITH_VALUE

Former Member
0 Kudos

hi,

see fm POPUP_GET_VALUES

thanks

sarbajitm
Contributor
0 Kudos

Use FM POPUP_TO_GET_VALUE.

Regards.

Sarbajit.

Former Member
0 Kudos

Try FM: POPUP_TO_CONFIRM_WITH_VALUE

You may also check:

POPUP_TO_CONFIRM_WITH_MESSAGE

Former Member
0 Kudos

Thanks this POPUP_TO_CONFIRM_WITH_VALUE could be usefull.

If answer is J I need this record to be inserted into oracle db, and link is maintained with dbcon.

now, I am very curious what will happen if dbcon is temporary broken

how will I handle this situation? record will not be inserted into remote db table, right?

Thanks,

NIhad

Edited by: nihad omerbegovic on Apr 1, 2009 9:05 AM

0 Kudos

After insertion statement keep a SELECT query with BYPASSING BUFFER statement to know whether the value really inserted into Oracle DB or not.

Regard.

Sarbajit

0 Kudos

If not, will data be stored in "buffer" and inserted after dbcon is reconected??

and I do INSERT into oracle db, not select....

NIhad

Edited by: nihad omerbegovic on Apr 1, 2009 9:14 AM

0 Kudos

Okay then first check whether dbcon is exist or not or broken.Based on that you perform the insertion operation.Now you have to scedule that operation in such way that if dbcon is broken then it will again check whether dbcon is reconnected or not and if dbcon is okay then the operation try to insert the data and whether it is a successful insertion to check that,SELECT query will be used. based on the select query output it will be decided whether the operation have to perform again or not.

Regards.

sarbajit.

0 Kudos

Ok, can u check this please:

EXEC SQL.

CONNECT TO 'ORADB'

ENDEXEC.

if sy-subrc ne 0. " not connected

***what to do here, SET CONNECTION??****

endif.

how to check if data is inserted or not?

Thanks,

Nihad

Edited by: nihad omerbegovic on Apr 1, 2009 9:35 AM

Edited by: nihad omerbegovic on Apr 1, 2009 9:36 AM