Hi all,
I am trying to remove some standard function buttons from toolbar, I was successfull in removing all buttons i am unable to remove 3 buttons
1) End User Document (with ' i ' symbol.
2) Details (with Lense symbol)
3) Check Entries
I dont want to use NO_TOOLBAR = 'X' in Layout.
I have used following code to remove each button(as I used below code to remove REFRESH Button), I have checked Interface table of Class 'CL_GUI_ALV_GRID' but I could not find it for these 3 buttons
DATA pt_exclude TYPE ui_functions.
DATA wa_exclude TYPE ui_func.
wa_exclude = cl_gui_alv_grid=>MC_FC_REFRESH.
APPEND wa_exclude TO pt_exclude.
Please help me.
Thanks in Advance.