How to hide the column in new SAP ALV Display of type CL_SALV_COLUMNS_TABLE
The column can be edited using the column object. The Column object can be retrieved from the get_columns( ) method of the ALV object. Step1: Get the columns object from the ALV object. DATA lr_columns TYPE REF TO cl_salv_columns_table. Lr_columns = lr_alv_object->get_columns( ). Step2: From the columns object, get the particular specific column object ‘CONTACT_ID’. …
How to hide the column in new SAP ALV Display of type CL_SALV_COLUMNS_TABLE Read More »