‎2011 Mar 04 9:01 AM
HI
I need to HIDE the table control column dynamically in module pool program. Based on one condition I need to HIDE the column otherwise it will remains in the table control.
Can anyone pls help me in this.
Regards
Anitha
‎2011 Mar 04 9:05 AM
Hi Anitha
Please refer to thread for more information.
Regards
Ranganath
‎2011 Nov 07 6:13 AM
‎2011 Nov 07 7:18 AM
data: column type cxtab_column. (if u want rows use rows instead of rows)
loop at table_control-cols into colum.
if column-index = 3 .
column-screen-input = '0'.(To make it as read only field)
cols-invisible = '1'. (To make the column invisible)
modify table_control-cols from column.
endif.
endloop.