‎2006 Aug 22 6:09 AM
Hi all,
I wanted to customize selection screen. I have prepared a selection screen , which I have called using Call selection screen statement . Now I wanted to avoid check button on that particular selection screen.Please help me
Regards,
Prasad
‎2006 Aug 22 6:49 AM
Hi
I guess you can delete the same from the layout of the
screen.
Kind Regards
Eswar
‎2006 Aug 22 7:03 AM
Hi,
Modify the screen by making the check box invisible.
Rgds,
CK
‎2006 Aug 22 7:29 AM
Hi,
You can modify the screen..see example below:
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'SC1'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
IF screen-group1 = 'SC2'.
screen-invisible = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
You can use Screen-Surname for field in place of screen-group1.
-Vishal