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

Is it possible to create multiple selection screens

Former Member
0 Likes
625

hi,

Is it possible to create multiple selection screens

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
602

You can create them.

e.g.Create 2 radio buttons on first screen.When the 2nd radio button is pressed,call the 2nd selection screen by SUBMIT PROGRAM........

hi,

Is it possible to create multiple selection screens

4 REPLIES 4
Read only

Former Member
0 Likes
603

You can create them.

e.g.Create 2 radio buttons on first screen.When the 2nd radio button is pressed,call the 2nd selection screen by SUBMIT PROGRAM........

Read only

Former Member
0 Likes
602

Sobha,

selection-screen begin of screen 001 as subscreen.
selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
selection-screen comment 2(10) text-003.
parameters:par1 type marc-matnr.
selection-screen end of line.
selection-screen end of block b1.
selection-screen end of screen 001.
 
 
selection-screen begin of screen 002 as subscreen.
selection-screen begin of block b2 with frame title text-002.
selection-screen begin of line.
selection-screen comment 2(10) text-003.
parameters:par2 type marc-matnr.
selection-screen end of line.
selection-screen end of block b2.
selection-screen end of screen 002.
 
 
selection-screen begin of tabbed block tabstrip for 10 lines.
selection-screen tab (15) tabs1 user-command t1 default screen 001.
selection-screen tab (15) tabs2 user-command t2 default screen 002.
selection-screen end of block tabstrip.
 
 
initialization.
tabs1 = 'TAB1'.
tabs2 = 'TAB2'.

Amit.

Read only

Former Member
0 Likes
602

Hi,

if the que is like depending on the selections given in the first selection-screen, we need to call the other selection-screens, YES, we can do it.

if param1 = <>.

CALL SCREEN 9000.

else

CALL SCREEN 9001.

endif.

reward if useful,

regards,

teja.

Read only

Former Member
0 Likes
602

try to use tabstrip concept .. with that u can have n number of subcreen..