2007 Nov 20 3:41 AM
How to hide a column while displaying alv......but i need to get the value from the hidden field on click event.
2007 Nov 20 3:42 AM
you can set NO_OUT = 'X' in the field cataloge to hide the column.
Regards,
Naimesh Patel
2007 Nov 20 3:42 AM
you can set NO_OUT = 'X' in the field cataloge to hide the column.
Regards,
Naimesh Patel
2007 Nov 20 5:07 AM
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.