2005 Nov 30 10:04 PM
Hi,
In my selection-screen, I can add no-display attribute to Parameter data but how can i make screen elements invisible which are declared as follows ??
PARAMETERS: SMALLLOG as checkbox .
thanks
2005 Nov 30 10:14 PM
Hi
PARAMETERS: SMALLLOG as checkbox modif id XYZ .
at selection-screen output.
loop at screen .
CHECK SCREEN-GROUP1 = 'XYZ'.
screen-invisible = '1'.
modify screen.
endloop.
This will make the checkbox invisible.
Regards
Kalpana
Hi,
In my selection-screen, I can add no-display attribute to Parameter data but how can i make screen elements invisible which are declared as follows ??
PARAMETERS: SMALLLOG as checkbox .
thanks
2005 Nov 30 10:06 PM
PARAMETERS: SMALLLOG as checkbox user-command abc.
at selection-screen output.
***if it is input disable
loop at screen.
case screen-field.
**if input disable
when 'SMALLOG'.
screen-input = '0'.
clear smalllog.
endcase.
modify screen.
endloop.
loop at screen.
case screen-field.
**if inivisible
when 'SMALLOG'.
screen-invisible = '1'.
clear smalllog.
endcase.
modify screen.
endloop.Message was edited by: Vijay Babu Dudla
2005 Nov 30 10:14 PM
Hi
PARAMETERS: SMALLLOG as checkbox modif id XYZ .
at selection-screen output.
loop at screen .
CHECK SCREEN-GROUP1 = 'XYZ'.
screen-invisible = '1'.
modify screen.
endloop.
This will make the checkbox invisible.
Regards
Kalpana
2005 Nov 30 10:17 PM
2005 Nov 30 10:31 PM
Yes I did find the answers useful and solved my problem, just now.
Thanks a lot...