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

how to make screen elements invisible ??

Former Member
0 Likes
1,391

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
829

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

4 REPLIES 4
Read only

Former Member
0 Likes
829
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

Read only

Former Member
0 Likes
830

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

Read only

Former Member
0 Likes
829

Hi Rad,

I think you got the solution..

regards

vijay

Read only

Former Member
0 Likes
829

Yes I did find the answers useful and solved my problem, just now.

Thanks a lot...