HANDLE_ACTION SAP Method of class /BOFU/IF_FBI_VIEW_INSTANCE_NEW
Below is documentation, parameters and attributes of ABAP Method HANDLE_ACTION within SAP class /BOFU/IF_FBI_VIEW_INSTANCE_NEW. 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/IF_FBI_VIEW_INSTANCE_NEW 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 HANDLE_ACTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method HANDLE_ACTION
.| Name | Type | Data Type | Description | Default Value |
| IT_DATA | Importing | TYPE INDEX TABLE | ||
| IT_SELECTED_ROWS | Importing | TYPE TT_ROW | ||
| IV_ACTION_ID | Importing | TYPE STRING | ||
| IV_DO_SAVE | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_SET_ACT_PROPS | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| EO_CHANGE | Exporting | TYPE REF TO /BOBF/IF_TRA_CHANGE | Interface for transaction change objects | |
| CT_ACTION_PROPERTIES | Changing | TYPE TT_ACTION_PROPERTIES | ||
| CT_MESSAGES | Changing | TYPE TT_MESSAGE_QRY |
Exceptions of Method HANDLE_ACTION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/IF_FBI_VIEW_INSTANCE_NEW.
DATA: lv_CT_ACTION_PROPERTIES TYPE TT_ACTION_PROPERTIES,
lv_CT_MESSAGES TYPE TT_MESSAGE_QRY,
lv_IT_DATA TYPE INDEX TABLE,
lv_IT_SELECTED_ROWS TYPE TT_ROW,
lv_IV_ACTION_ID TYPE STRING,
lv_IV_DO_SAVE TYPE BOOLE_D,
lv_IV_SET_ACT_PROPS TYPE BOOLE_D,
lv_EO_CHANGE TYPE /BOBF/IF_TRA_CHANGE,
lv_other TYPE c.
CALL METHOD lo_class=>HANDLE_ACTION(
EXPORTING
IT_DATA = lv_IT_DATA
IT_SELECTED_ROWS = lv_IT_SELECTED_ROWS
IV_ACTION_ID = lv_IV_ACTION_ID
IV_DO_SAVE = lv_IV_DO_SAVE
IV_SET_ACT_PROPS = lv_IV_SET_ACT_PROPS
IMPORTING
EO_CHANGE = lv_EO_CHANGE
CHANGING
CT_ACTION_PROPERTIES = lv_CT_ACTION_PROPERTIES
CT_MESSAGES = lv_CT_MESSAGES ).
Links to Related Class(s)
/BOFU/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects