2007 Apr 13 2:31 PM
Hi,
I need to display the pop up message with yes/no and cancel button in a screen of size 16*20 ...tried using popup_to_confirm but we can't control the yes/no positioning ther.....any function module for the same?
Regards
Gunjan
Hi,
I need to display the pop up message with yes/no and cancel button in a screen of size 16*20 ...tried using popup_to_confirm but we can't control the yes/no positioning ther.....any function module for the same?
Regards
Gunjan
2007 Apr 13 2:33 PM
2007 Apr 13 2:39 PM
Hi,
Please try this FM.
POPUP_CONTINUE_YES_NO
POPUP_TO_DECIDE_INFO
Regards,
Ferry Lianto
2007 Apr 13 2:56 PM
Hi Gunjan,
You can use POPUP_TO_CONFIRM itself. You can specify which button is 'Yes' and which is 'No'.
CALL FUNCTION 'POPUP_TO_CONFIRM'
EXPORTING
TITLEBAR = 'Confirmation'
TEXT_QUESTION = w_question
TEXT_BUTTON_1 = 'Yes'
ICON_BUTTON_1 = 'ICON_OKAY'
TEXT_BUTTON_2 = 'No'
ICON_BUTTON_2 = 'ICON_CANCEL'
DISPLAY_CANCEL_BUTTON = 'X'
DEFAULT_BUTTON = '2'
START_COLUMN = '40'
START_ROW = '10'
IMPORTING
ANSWER = w_answer
EXCEPTIONS
TEXT_NOT_FOUND = 1
OTHERS = 2.
Regards
Sagar
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |