‎2008 Dec 04 5:16 AM
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
‎2008 Dec 04 5:32 AM
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
‎2008 Dec 04 5:39 AM
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.
‎2008 Dec 04 5:39 AM
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