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 controls

Former Member
0 Likes
415

Hi Experts,

I want to hide a column in table control.Because of performance issue i want to hide some columns in output screen.but i done want to delete the columns.

Thank u,

Manjula devi.D

3 REPLIES 3
Read only

Former Member
0 Likes
386

Hi

if you have Exits u can hide the colums because this standard programs or else there is no exits we can't hide the colums.

cheers

venu

Read only

0 Likes
386

In a table control there are columns in which data is displayed so, we can set the invisible property of the column. By doing so it will be invisible and not deleted.

Read only

Former Member
0 Likes
386

Hi,

To hide a column -

In PBO Module

loop at <TABCON>-COL .

if <TABCON>-COL-SCREEN-NAME = <DESIRED_COLUMN>.

<TABCON>-COL-INVISIBLE = 'X'.

ENDIF.

endloop.

<TABCON> is your table control.

<TABCON>-COL is an internal table containing all the

columns as individual rows .

<TABCON>-COL-SCREEN is a structure similar to screen table.

<TABCON>-COL-SCREEN-NAME - contains name of individual column.

You can modify IF condition to your need.

Regards:

Alok Bansal