Application Development and Automation 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: 
Read only

Problem in Message

Former Member
0 Likes
616

Hi,

How can i display YES,NO CANCEL IN message box, and when i click YES it should go to next page

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
592

Hi,

call function 'POPUP_TO_CONFIRM'
exporting
text_question = text-005 " Are you certain...?
importing
answer = w_answer
exceptions
text_not_found = 1
others = 2.

If the Answer is Y then goto Next page

Regards

Sudheer

4 REPLIES 4
Read only

gopi_narendra
Active Contributor
0 Likes
592

use the FM: POPUP_TO_CONFIRM

Regards

Gopi

Read only

amit_khare
Active Contributor
0 Likes
592

Check FM -

POPUP_WITH_3_BUTTONS_TO_CHOOSE

Regards,

Amit

reward all helpful replies.

Read only

Former Member
0 Likes
592

hi,

Use the Function Module POPUP_TO_CONFIRM.

Read only

Former Member
0 Likes
593

Hi,

call function 'POPUP_TO_CONFIRM'
exporting
text_question = text-005 " Are you certain...?
importing
answer = w_answer
exceptions
text_not_found = 1
others = 2.

If the Answer is Y then goto Next page

Regards

Sudheer