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: 

Table control

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

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

cxt_control-columns = '0'.

modify screen.

PLzz reward points if it helps.

3 REPLIES 3

Former Member
0 Kudos

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 ....

Former Member
0 Kudos

Hi,

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

cxt_control-columns = '0'.

modify screen.

PLzz reward points if it helps.

Former Member
0 Kudos

Hi,

use the following code in PBO.

loop at screen.

if screen-name = 'tabl_ctrl'.

screen-invisible = '0'.

endloop.

regards,

Mansi.