‎2008 Feb 22 6:02 AM
Hi,
I have a Box named as %#AUTOTEXT001 in the subscreen.I need to know how to make entire box and the fields in it invisible.
suggestions will be rewarded.
thanks,
‎2008 Feb 22 6:18 AM
HI
There are two ways to hide it
1) go to screen painter, double-click on box and set the display attribut as invisible.
2) at run time at PBO
loop at screen.
if screen-name = 'BOX_NMAE'.
screen-invisible = 1.
modify screen.
endif.
endloop.
Give a name to box instead of using auto generated name.
Regards
Aditya