Entering content frameSyntax documentationadd_button_group Locate the document in its SAP Library structure

You use this method to add a list of pushbuttons to your toolbar.

CALL METHOD toolbar->add_button_group

     EXPORTING  data_table = data_table

     EXCEPTIONS dp_error   = 1.

Parameter

Meaning

data_table

Table of pushbuttons that you want to add to the toolbar.

You create the table with reference to the type TTB_BUTTON .

You can use the method fill_buttons_data_table to fill the table.

Note

You should use static menus wherever possible, since this helps to eliminate excessive roundtrips. This is especially important under SAPGUI for HTML. For further details, refer to set_static_ctxmenu or assign_static_ctxmenu_table.

 

 

 

Leaving content frame