EXECUTE_ACTION SAP Method Execute Action
Below is documentation, parameters and attributes of ABAP Method EXECUTE_ACTION within SAP class /BOFU/CL_GBI_ADAPTER. 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 /BOFU/CL_GBI_ADAPTER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method EXECUTE_ACTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXECUTE_ACTION
.| Name | Type | Data Type | Description | Default Value |
| IT_PARAMETER | Importing | TYPE /IWBEP/T_MGW_NAME_VALUE_PAIR | table for name value pairs | |
| IV_ACTION_NAME | Importing | TYPE STRING | ||
| IV_BO | Importing | TYPE /BOFU/BO | Business Object | |
| IV_ENTITY_NAME | Importing | TYPE STRING | Node Name | |
| IV_NODE_ID | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_VIEW_NAME | Importing | TYPE /BOFU/FBI_VIEW | FBI View | |
| ER_DATA | Exporting | TYPE REF TO DATA |
Exceptions of Method EXECUTE_ACTION
This method does not have any exceptionsExample ABAP coding
DATA: lv_ER_DATA TYPE DATA,
lv_IT_PARAMETER TYPE /IWBEP/T_MGW_NAME_VALUE_PAIR,
lv_IV_ACTION_NAME TYPE STRING,
lv_IV_BO TYPE /BOFU/BO,
lv_IV_ENTITY_NAME TYPE STRING,
lv_IV_NODE_ID TYPE /BOBF/CONF_KEY,
lv_IV_VIEW_NAME TYPE /BOFU/FBI_VIEW,
lv_other TYPE c.
CALL METHOD /BOFU/CL_GBI_ADAPTER=>EXECUTE_ACTION(
EXPORTING
IT_PARAMETER = lv_IT_PARAMETER
IV_ACTION_NAME = lv_IV_ACTION_NAME
IV_BO = lv_IV_BO
IV_ENTITY_NAME = lv_IV_ENTITY_NAME
IV_NODE_ID = lv_IV_NODE_ID
IV_VIEW_NAME = lv_IV_VIEW_NAME
IMPORTING
ER_DATA = lv_ER_DATA ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects