
Hiding Standard Functions
Use
Depending on the application area and the data displayed in the ALV Grid Control, not all standard functions are needed or useful. This is why you can either hide the entire toolbar or display only a subset of the standard functions available.
Procedure
Hiding the Entire Toolbar
data: gs_layout type lvc_s_layo.
gs_layout-no_toolbar = 'X'.
Hiding Individual Functions
data: lt_exclude type ui_functions,
ls_exclude type ui_func.
ls_exclude = cl_gui_alv_grid=>mc_fc_sum.
append ls_exclude to lt_exclude.

The attributes of the standard functions all begin with the prefix
MC_FC_ . In addition, there is the prefix MC_MB_ for an entire menu in the toolbar.Result
Either the entire toolbar or the icons of the standard functions passed in the table are not visible during the entire lifetime of the ALV Grid Control.