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: 

FM POPUP_TO_CONFIRM

Former Member
0 Kudos

I need some examples where the FM POPUP_TO_CONFIRM has been used. Please suggest some FMs or programs using this

1 ACCEPTED SOLUTION

Former Member
0 Kudos

There are some demo programs which uses this FM. Use where used list to find the programs where this FM is used and check it out.

4 REPLIES 4

Former Member
0 Kudos

Hi,

Check the second example in this link-

Former Member
0 Kudos

when ever u want to confirm step from user

at that time this function module used,,

CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'

EXPORTING

DEFAULTOPTION = 'N'

TEXTLINE1 = TEXT-001

TEXTLINE2 = TEXT-002

TITEL = TEXT-000

  • START_COLUMN = 25

  • START_ROW = 6

  • CANCEL_DISPLAY = 'X'

IMPORTING

ANSWER = W_ANS.

IF W_ANS = 'J'.

perform save_ data.

endif.

Former Member
0 Kudos

There are some demo programs which uses this FM. Use where used list to find the programs where this FM is used and check it out.

former_member181995
Active Contributor
0 Kudos

put in se37>POPUP_TO_CONFIRM >CntlshiftF3.