2006 Nov 28 10:25 AM
2006 Nov 28 10:25 AM
Use the Function Module POPUP_TO_CONFIRM.
Reward points if this helps.
Regards
Meera
2006 Nov 28 10:26 AM
hi,
try this.
data : WF_RES type c.
CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
EXPORTING
DEFAULTOPTION = 'N'
TEXTLINE1 = 'Do you want to delete the record?'
* TEXTLINE2 = ' '
TITEL = 'Delete Zone'
* START_COLUMN = 25
* START_ROW = 6
* CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = WF_RES.
if wf_res = 'J'.
user selected 'YES'.
else.
user selected 'NO'.
endif.
Rgds
anver
2006 Nov 28 10:27 AM
hi,
there are various popup function modules available:
eg : POPUP_CONTINUE_YES_NO
2006 Nov 28 10:28 AM
HI ,
U can try the below FM:
POPUP_TO_CONFIRM.
POPUP_TO_CONFIRM_STEP.
Hope this helps.
2006 Nov 28 10:28 AM
2006 Nov 28 10:30 AM
Hi Sandeep,
WINDOW STARTING AT x1 y1 ENDING AT x2 y2.
Cheers...
Santosh.
<u><i><u><b>Mark All Usefull Answers.</b></u></i></u>
2006 Nov 28 10:33 AM
hi,
Use the FM 'POPUP_TO_CONFIRM'
call function 'POPUP_TO_CONFIRM'
exporting
titlebar = p_title
text_question = p_msg
text_button_1 = 'Yes'(001)
text_button_2 = 'No'(002)
display_cancel_button = ' '
importing
answer = p_answer
exceptions
text_not_found = 1
others = 2.
if sy-subrc <> 0.
endif.
Hope this helps.
Regards,
Richa
2006 Dec 04 12:10 PM