‎2007 Jul 10 8:02 AM
Hi,
How can i display YES,NO CANCEL IN message box, and when i click YES it should go to next page
‎2007 Jul 10 8:08 AM
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
‎2007 Jul 10 8:03 AM
‎2007 Jul 10 8:06 AM
Check FM -
POPUP_WITH_3_BUTTONS_TO_CHOOSE
Regards,
Amit
reward all helpful replies.
‎2007 Jul 10 8:07 AM
‎2007 Jul 10 8:08 AM
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