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 design

Former Member
0 Likes
259

HI ,

I have 2 tabbbed block sin my selection screen. I want add one more Frame in 2nd tabbed block .How to do it

regards,

Ram

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
237

Simply include another frame in that tab of the selection screen, here is an example.



report zrich_0001
       no standard page heading.

selection-screen begin of screen 101 as subscreen.
selection-screen begin of block b1 with frame title text-001.
parameters: P_rad1 radiobutton group grp1 default 'X'
                                         user-command check,
            p_rad2 radiobutton group grp1.
selection-screen end of block b1.
selection-screen begin of block b2 with frame title text-002.
parameters: p_char1 type c.
selection-screen end of block b2.
selection-screen end of screen 101.

selection-screen begin of screen 102 as subscreen.
selection-screen begin of block b3 with frame title text-003.
parameters: p_char2 type c.
selection-screen end of block b3.
selection-screen begin of block b4 with frame title text-003.
parameters: p_char3 type c.
selection-screen end of block b4.
selection-screen end of screen 102.


selection-screen begin of tabbed block one for 20 lines.
selection-screen tab (15) name1 user-command ucomm1
default screen 101.
selection-screen tab (17) name2 user-command ucomm2
default screen 102.
selection-screen end of block one.

initialization.

  name1 = 'Tab 1'.
  name2 = 'Tab 2'.

at selection-screen output.


start-of-selection.

Regards,

RIch Heilman