Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

OOPs ALV- removing standard function buttons form toolbar

Former Member
0 Likes
1,388

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.

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
649

Please check the attributes tab of class cl_gui_alv_grid for Associated type = UI_FUNC.

Please check the attributes tab of class cl_gui_alv_grid for Associated type = UI_FUNC.

2 REPLIES 2
Read only

former_member194669
Active Contributor
0 Likes
650

Please check the attributes tab of class cl_gui_alv_grid for Associated type = UI_FUNC.

Read only

0 Likes
649

Thank you very much, my problem is solved.