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

regarding subscreen

Former Member
0 Likes
336

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,

1 REPLY 1
Read only

Former Member
0 Likes
310

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