I have an ABAP program that runs multiple SALV reports using CL_SALV_TABLE. I copied GUI STATUS: SALV_TABLE_STANDARD to program and assign it to CL_SALV_TABLE. I modified the GUI status to have buttons for each report. I am trying to disable the button for the report that is currently displayed using syntax:
-
>
data: lr_functions type ref to cl_salv_functions_list
lr_functions = cl_salv_table->get_functions( )
lr_functions->set_functions( name= <name>, boolean= abap_false)
-
>
In debug it is not finding the function name that needs to disabled.
What step did I miss?