‎2008 Aug 14 3:25 PM
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
‎2008 Aug 14 3:45 PM
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
‎2008 Aug 14 3:45 PM
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