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

Selection screen related problem

Former Member
0 Likes
252

Hi all,

I have created 2 selection screen one with using selection-screen begin of block and another using selection-screen begin of screen. Now i am able to dispaly few parameters on second selection screen but i don't know how to fetch data based on data entered on second selection screen.

Thanks & Regards.

Parag

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
234

You don't have to do anything extra to use them in your program. Use them as you are using the normal selection screen variables.

Like:


SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title
                                     AS WINDOW.
PARAMETERS name TYPE sy-uname.
SELECTION-SCREEN END OF SCREEN 500.

title = 'Input name'.

CALL SELECTION-SCREEN '0500' STARTING AT 10 10.

start-of-selection.
write: name.   " <<

Regards,

Naimesh Patel

1 REPLY 1
Read only

naimesh_patel
Active Contributor
0 Likes
235

You don't have to do anything extra to use them in your program. Use them as you are using the normal selection screen variables.

Like:


SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title
                                     AS WINDOW.
PARAMETERS name TYPE sy-uname.
SELECTION-SCREEN END OF SCREEN 500.

title = 'Input name'.

CALL SELECTION-SCREEN '0500' STARTING AT 10 10.

start-of-selection.
write: name.   " <<

Regards,

Naimesh Patel