CHANGE_TOOLBAR_ELEMENTS SAP Method of class CL_FPM_LAUNCHPAD_UIBB_ASSIST









Below is documentation, parameters and attributes of ABAP Method CHANGE_TOOLBAR_ELEMENTS within SAP class CL_FPM_LAUNCHPAD_UIBB_ASSIST. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_FPM_LAUNCHPAD_UIBB_ASSIST into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method CHANGE_TOOLBAR_ELEMENTS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CHANGE_TOOLBAR_ELEMENTS

.

NameTypeData TypeDescriptionDefault Value
ID_DIR_ENABLEImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_DIR_VISIBLEImportingTYPE
WDUI_VISIBILITY
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_INDEX_ENABLEImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_INDEX_VISIBLEImportingTYPE
WDUI_VISIBILITY
Web Dynpro: Visibility
ID_MAP_ENABLEImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_MAP_VISIBLEImportingTYPE
WDUI_VISIBILITY
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_TREE_ENABLEImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ID_TREE_VISIBLEImportingTYPE
WDUI_VISIBILITY
Web Dynpro: Visibility



Exceptions of Method CHANGE_TOOLBAR_ELEMENTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_FPM_LAUNCHPAD_UIBB_ASSIST.
DATA: lv_ID_DIR_ENABLE TYPE BOOLE_D,
lv_ID_DIR_VISIBLE TYPE WDUI_VISIBILITY,
lv_ID_INDEX_ENABLE TYPE BOOLE_D,
lv_ID_INDEX_VISIBLE TYPE WDUI_VISIBILITY,
lv_ID_MAP_ENABLE TYPE BOOLE_D,
lv_ID_MAP_VISIBLE TYPE WDUI_VISIBILITY,
lv_ID_TREE_ENABLE TYPE BOOLE_D,
lv_ID_TREE_VISIBLE TYPE WDUI_VISIBILITY,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_TOOLBAR_ELEMENTS(
EXPORTING
ID_DIR_ENABLE = lv_ID_DIR_ENABLE
ID_DIR_VISIBLE = lv_ID_DIR_VISIBLE
ID_INDEX_ENABLE = lv_ID_INDEX_ENABLE
ID_INDEX_VISIBLE = lv_ID_INDEX_VISIBLE
ID_MAP_ENABLE = lv_ID_MAP_ENABLE
ID_MAP_VISIBLE = lv_ID_MAP_VISIBLE
ID_TREE_ENABLE = lv_ID_TREE_ENABLE
ID_TREE_VISIBLE = lv_ID_TREE_VISIBLE ).

Links to Related Class(s)

CL_FPM_L...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!