cancel
Showing results for 
Search instead for 
Did you mean: 

ALV Settings--->Coloumn Selection

Former Member
0 Kudos

Hi Experts,

I have an ALV .

But in the Settings of ALV, only the Display Tab is Visible. I also want the second tab

ie. Coloumn Selection to be displayed in ALv settings.

Kindly tell me how to do it.

Thanks in Advance....

Best Regards,

Sahil

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sahil

the method IF_SALV_WD_STD_FUNCTIONS~SET_COLUMN_SELECTION_ALLOWED of class CL_SALV_WD_CONFIG_TABLE is available for hide and show of coloumn selection tab.



 data:
    l_VALUE type ref to Cl_Salv_Wd_Config_Table.
l_value->IF_SALV_WD_STD_FUNCTIONS~SET_COLUMN_SELECTION_ALLOWED( ABAP_TRUE ).

Regards

Naresh

Edited by: Naresh Kumar Malik on Nov 7, 2008 5:54 AM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Naresh,

Thanks a Lot for the quick response.

It works now...:))