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

call selection screen

Former Member
0 Likes
317

I have a radio button in my selection screen , when that is selected another selection screen has to pop up with some input fields.

How can i do that using call selection screen ?

1 REPLY 1
Read only

Former Member
0 Likes
298

i think i got it . i am using

SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.

SELECTION-SCREEN INCLUDE BLOCKS sel1.

SELECTION-SCREEN BEGIN OF BLOCK sel2

WITH FRAME TITLE tit2.

PARAMETERS: airpfr TYPE spfli-airpfrom,

airpto TYPE spfli-airpto.

SELECTION-SCREEN END OF BLOCK sel2.

SELECTION-SCREEN END OF SCREEN 500.

CALL SELECTION-SCREEN 500 STARTING AT 10 10.