‎2009 Apr 22 2:04 PM
Hi ,
For displaying ALV on a modal dialog screen, I am using "CL_GUI_ALV_GRID" and the method is SET_TABLE_FOR_FIRST_DISPLAY.
I want to exclude the complete tool bar that is appearing on the screen. For that I have an exporting parameter of the above mentioned method, i.e., "IT_TOOLBAR_EXCLUDING"
But I dont know the function codes of the tool bar elements, to fill the internal table with. Couls any one please help me how to find them out.
‎2009 Apr 22 2:23 PM
In the ALV Layout mark NO_TOOLBAR = 'X'
data: e_layout TYPE LVC_S_LAYO.
MOVE 'X' TO e_layout-no_toolbar.
Pass e_layout to IS_LAYOUT of SET_TABLE_FOR_FIRST_DISPLAY
Edited by: Swastik Bharati on Apr 22, 2009 3:24 PM
‎2009 Apr 22 2:07 PM
‎2009 Apr 22 2:17 PM
Hi,
pls refer to the link link:[https://wiki.sdn.sap.com/wiki/display/ABAP/HIDEToolbarbuttonsinALV]thanks
ravi
‎2009 Apr 22 2:23 PM
In the ALV Layout mark NO_TOOLBAR = 'X'
data: e_layout TYPE LVC_S_LAYO.
MOVE 'X' TO e_layout-no_toolbar.
Pass e_layout to IS_LAYOUT of SET_TABLE_FOR_FIRST_DISPLAY
Edited by: Swastik Bharati on Apr 22, 2009 3:24 PM
‎2009 Apr 22 3:01 PM