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

passing selection screen values to popup

Former Member
0 Likes
1,895

Hi,

i need to pass the selection screen values to popup screen.how can i acheuve it..

any help?

1 ACCEPTED SOLUTION
Read only

viquar_iqbal
Active Contributor
0 Likes
1,652

Hi

try this

C100_SELSCREEN_SHOW_AS_POPUP

CBIH_ER00_SELSCR_SHOW_AS_POPUP

This will display the selection-screen as a popup

FITP_POPUP_TO_CONFIRM

Hi,

i need to pass the selection screen values to popup screen.how can i acheuve it..

any help?

7 REPLIES 7
Read only

Former Member
0 Likes
1,652

Hi ,

In At selection-screen or in further processing block you need to use the Window Starting at ...

statement and write after that the parameter or select-options od the selection-screen.

Else try this code it works -


PARAMETERS : paramtr TYPE i.

AT SELECTION-SCREEN.
                        " CReate the Modal dialog box screen 100 by doumle clicking on 100
**start-of-selection.
 CALL SCREEN 100 STARTING AT 20 30 ENDING AT 35 40 .
*----------------------------------------------------------------------*
*  MODULE write_test OUTPUT
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
MODULE write_test OUTPUT.   " In PBO give a module write_test
  SUPPRESS  DIALOG .
  LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
  WRITE paramtr.
ENDMODULE.                 " WRITE_TEST  OUTPUT

Regards

Pinaki

Read only

Former Member
0 Likes
1,652

hi...

after you have entered the value in selection screen.

in

at selection-screen. "event

here you use a message of type 'I' and that message text should have a place holder '&' which you should provide with the value with the parameter of the selection screen.

regards

Read only

0 Likes
1,652

I want a popup screen to select YES or NO with selection screen values?

Read only

Former Member
0 Likes
1,652

Hi,

Could you please explain your requirement with some more details.

Regards,

Anil

Read only

viquar_iqbal
Active Contributor
0 Likes
1,653

Hi

try this

C100_SELSCREEN_SHOW_AS_POPUP

CBIH_ER00_SELSCR_SHOW_AS_POPUP

This will display the selection-screen as a popup

FITP_POPUP_TO_CONFIRM

Read only

0 Likes
1,652

I dont want selection screen as popup..instead i want a popup screen which has options yes and no..

and also need to display some values which are entered in selection screen..is this possible..?

Read only

Former Member
0 Likes
1,652

i got it..thanx for replies