2007 Aug 04 8:11 AM
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.
2007 Aug 04 8:15 AM
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.