Application Development 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: 

Showing/Hiding icons in Module Pool

Former Member
0 Kudos

Hi,

I have the requirement to dynamically show/hide an icon (based on conditions) on the module pool screen. Please let me know as to how this can be done.

Regards,

Divya.

1 REPLY 1

Former Member
0 Kudos

Hi,

You can do it in the PBO event,

IF xxxxxx   " Write your condition
LOOP AT SCREEN.
IF SCREEN-NAME = 'xxxx'.  " Screen field name
 SCREEN-ACTIVE = 0.
 SCREEN -INVISIBLE = 1.
 Modify SCREEN.
ENDIF.
ENDLOOP.

ENDIF.