‎2020 Oct 20 6:54 PM
Hi Experts,
In my report I am trying to get two different selection screens using two radio button.
How can I hide a selection screen belongs to 1st radio button when other radio button is clicked.
Thanks in advance.
‎2020 Oct 20 7:02 PM
Here I am using the below code but it didn't work
AT SELECTION-SCREEN OUTPUT.
IF rb_quar = 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'g1'.
screen-active = '1'.
ELSEIF screen-group1 = 'g2'.
screen-active = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
ELSEIF rb_rest = 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'g1'.
screen-active = '0'.
ELSEIF screen-group1 = 'g2'.
screen-active = '1'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
ENDIF.
‎2020 Oct 21 6:31 AM
You could find several examples of Selection Screen layout in transaction BIBS (listed in DWDM trans.).
If you want to "hide" selection screen depending of a choice, maybe TABSTRIP could be a better choice
‎2020 Oct 29 5:56 PM
‎2020 Oct 27 2:23 PM