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

Hide the column in module pool

Former Member
0 Likes
947

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

3 REPLIES 3
Read only

Former Member
0 Likes
711

Hi Anitha

Please refer to thread for more information.

Regards

Ranganath

Read only

Former Member
0 Likes
711

Hii

Please Explain briefly..

Regards

Vshal..

Read only

0 Likes
711

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.