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

Former Member
0 Likes
1,054

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?

8 REPLIES 8
Read only

Former Member
0 Likes
1,006

Check FM POPUP_DISPLAY_MESSAGE

call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.

Read only

Former Member
0 Likes
1,006

use the function module ACC_MSG_TEXT_POPUP.

Regards,

Aparna

Read only

Former Member
0 Likes
1,006

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

  • .

Read only

Former Member
0 Likes
1,006

Hi

You can check the sy-ucomm (of the button), and use FM POPUP_TO_DISPLAY_TEXT

Regards

Raj

Read only

Former Member
0 Likes
1,006

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....

Read only

Former Member
0 Likes
1,006

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.

Read only

Former Member
0 Likes
1,006

hi,

try with these also.

POPUP_TO_DISPLAY_TEXT

POPUP_WITH_TABLE_DISPLAY

Don't forget to reward if useful......

Read only

Former Member
0 Likes
1,006

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