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

Table control

Former Member
0 Likes
554

HI,

I got the requirement that i have hide the table control at one scenario how to do that

Points will be rewarded for helpful answers.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
499

Hi,

CONTROLS <ctrl> TYPE TABLEVIEW USING SCREEN <scr>.

cxt_control-columns = '0'.

modify screen.

PLzz reward points if it helps.

3 REPLIES 3
Read only

Former Member
0 Likes
499

Hi,

in that u can do one thing simply design one blamk screen and in the scenario in which u want to hide the tabhle control in that aprticula subscreen area call this blank screen insted of the screen which contains that table control

hope u got me

plzz reward if it is usefull

plzz dont forget to reward ....

Read only

Former Member
0 Likes
500

Hi,

CONTROLS <ctrl> TYPE TABLEVIEW USING SCREEN <scr>.

cxt_control-columns = '0'.

modify screen.

PLzz reward points if it helps.

Read only

Former Member
0 Likes
499

Hi,

use the following code in PBO.

loop at screen.

if screen-name = 'tabl_ctrl'.

screen-invisible = '0'.

endloop.

regards,

Mansi.