‎2007 May 09 7:06 PM
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
‎2007 May 09 7:11 PM
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