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

Pop Up message!!

Former Member
0 Likes
503

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

3 REPLIES 3
Read only

Former Member
0 Likes
460

Hi,

POP_TO_CONFIRM_LOSS_OF_DATA

Regards

Sudheer

Read only

Former Member
0 Likes
460

Hi,

Please try this FM.

POPUP_CONTINUE_YES_NO

POPUP_TO_DECIDE_INFO

Regards,

Ferry Lianto

Read only

sagar-acharya
Participant
0 Likes
460

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