‎2007 Jun 25 10:24 AM
how to get the pop up screen ?the first screen as display button ,if we press that button then pop up screen has to come with same information?
‎2007 Jun 25 10:27 AM
Check FM POPUP_DISPLAY_MESSAGE
call function 'POPUP_DISPLAY_MESSAGE'
exporting
msgid = 'RP'
msgty = 'S'
msgno = '016'
msgv1 = 'TEST'
msgv2 = 'MESSAGE'.
‎2007 Jun 25 10:28 AM
‎2007 Jun 25 10:29 AM
If u have value in internal table which has to be displayed in the popup then use,
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'
EXPORTING
endpos_col = 100
endpos_row = 22
startpos_col = 50
startpos_row = 2
titletext = 'Billing plans'
If u want to display some texts
then use
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
EXPORTING
TITEL = 'Contract data'
textline1 = l_txt1
TEXTLINE2 = l_txt2
START_COLUMN = 20
START_ROW = 6
.
‎2007 Jun 25 10:29 AM
Hi
You can check the sy-ucomm (of the button), and use FM POPUP_TO_DISPLAY_TEXT
Regards
Raj
‎2007 Jun 25 10:29 AM
kotireddy,
check with these FM..
POPUP_TO_CONFIRM_LOSS_OF_DATA Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.
POPUP_TO_CONFIRM_STEP Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE Create a dialog box in which you inform the user about a specific decision point during an action.
Don't forget to reward if usefullll....
‎2007 Jun 25 10:32 AM
hi,
for this u can use FM's and CALL SCREEN ST as.
in PAI module of screen 100.
case sy-ucomm.
when 'DISP'. [F.code assigned for push button in Screen 100 ]
call screen 200 starting at 23 56.
................
..............
endcase.
or use F.modules as
give POP_UP* in SE37. then u can get list of all F.M's used for POP ups.
if helpful reward some points.
with regards,
suresh.
‎2007 Jun 25 10:33 AM
hi,
try with these also.
POPUP_TO_DISPLAY_TEXT
POPUP_WITH_TABLE_DISPLAY
Don't forget to reward if useful......
‎2007 Jun 25 4:35 PM
Hi,
USE THIS fm POPUP_TO_DECIDE_INFO .
Parameters required for this FM is the Text you require to display on the popup window.
Two buttons automatically comes on this window a Tick and a x sign if you click tick the output varaible ANSWER is J else it is A .
Regards,
Bhaskar