0% found this document useful (0 votes)
74 views1 page

SALV Code Function

The document describes methods in the CL_SALV_FUNCTIONS_LIST class that can activate or deactivate buttons, such as using the SET_SORT_ASC method to remove the Sort Ascending button or using the SET_ALL method to disable all buttons in a CL_SALV_TABLE.

Uploaded by

shubham dadhich
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views1 page

SALV Code Function

The document describes methods in the CL_SALV_FUNCTIONS_LIST class that can activate or deactivate buttons, such as using the SET_SORT_ASC method to remove the Sort Ascending button or using the SET_ALL method to disable all buttons in a CL_SALV_TABLE.

Uploaded by

shubham dadhich
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

There are method available in the class CL_SALV_FUNCTIONS_LIST which can be helpful to active /

deactive certain button.

Like: To remove the SORT Ascending button:

data: lr_functions type ref to cl_salv_functions_list.

lr_functions = gr_table->get_functions( ).

lr_functions->SET_SORT_ASC( ).

Use SET_ALL method to disable the buttons in CL_SALV_TABLE.

DATA: lr_functions TYPEREFTO cl_salv_functions_list.

lr_functions = go_alv->get_functions().

lr_functions->set_all(' ').

You might also like