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

alv column hide

kesavadas_thekkillath
Active Contributor
0 Likes
476

How to hide a column while displaying alv......but i need to get the value from the hidden field on click event.

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
457

you can set NO_OUT = 'X' in the field cataloge to hide the column.

Regards,

Naimesh Patel

2 REPLIES 2
Read only

naimesh_patel
Active Contributor
0 Likes
458

you can set NO_OUT = 'X' in the field cataloge to hide the column.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
457

Hi

see the code :

d_fieldcat_wa-fieldname = 'MATNR'.

d_fieldcat_wa-seltext_l = 'material number'.

d_fieldcat_wa-no_out = 'X'. * hide particular field

append d_fieldcat_wa to d_fieldcat.

clear d_fieldcat_wa.