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 do mask processing on checkboxes??

Former Member
0 Likes
666

Can anyone tell me how to do mask processing on checkboxes??

Rakesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
642

Are you talking about hiding the check box on the selection screen based upon user groups?

4 REPLIES 4
Read only

Former Member
0 Likes
642

Hi Rakesh,

what do you mean exactly by "mask processing"?

Kind regards,

Alvaro

Read only

Former Member
0 Likes
643

Are you talking about hiding the check box on the selection screen based upon user groups?

Read only

0 Likes
642

Exactly john. This is what i meant.

Read only

0 Likes
642

There are a couple of ways to do. You can do this by using at selection-screen event. During that event, you'll want to loop at the screen and depending on your user group. you will need to find out what the name of the user group is. It will look something like this.

IF USRGP = X AND SCREEN-NAME = "YOUR CHECKBOX'.

SCREEN-INVISIBLE = '0'. OR SCREEN-ACTIVE = '0'.

MODIFY SCREEN.

ENDIF.

Hope this helps.

John