PROCESS_EVENT SAP Method of class /BOFU/IF_FBI_UI_HLPR_ACTION
Below is documentation, parameters and attributes of ABAP Method PROCESS_EVENT within SAP class /BOFU/IF_FBI_UI_HLPR_ACTION. 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_UI_HLPR_ACTION 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 PROCESS_EVENT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_EVENT
.| Name | Type | Data Type | Description | Default Value |
| IO_ADDITIONAL_INFO | Importing | TYPE REF TO OBJECT | ||
| IV_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | Business Object | |
| IV_NODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | Node | |
| IV_RAISED_BY_OWN_UI | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IR_EVENT_LIST_LINE | Importing | TYPE REF TO DATA | ||
| EV_EVENT_PROCESSED | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| CR_EVENT_DATA | Changing | TYPE DATA | ||
| CT_SELECTED_ROWS | Changing | TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TT_ROW | ||
| CV_EVENT_ID | Changing | TYPE STRING | ||
| CV_FAILED | Changing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') |
Exceptions of Method PROCESS_EVENT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/IF_FBI_UI_HLPR_ACTION.
DATA: lv_CR_EVENT_DATA TYPE DATA,
lv_CT_SELECTED_ROWS TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TT_ROW,
lv_CV_EVENT_ID TYPE STRING,
lv_CV_FAILED TYPE BOOLE_D,
lv_EV_EVENT_PROCESSED TYPE BOOLE_D,
lv_IO_ADDITIONAL_INFO TYPE OBJECT,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_RAISED_BY_OWN_UI TYPE BOOLE_D,
lv_IR_EVENT_LIST_LINE TYPE DATA,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_EVENT(
EXPORTING
IO_ADDITIONAL_INFO = lv_IO_ADDITIONAL_INFO
IV_BO_KEY = lv_IV_BO_KEY
IV_NODE_KEY = lv_IV_NODE_KEY
IV_RAISED_BY_OWN_UI = lv_IV_RAISED_BY_OWN_UI
IR_EVENT_LIST_LINE = lv_IR_EVENT_LIST_LINE
IMPORTING
EV_EVENT_PROCESSED = lv_EV_EVENT_PROCESSED
CHANGING
CR_EVENT_DATA = lv_CR_EVENT_DATA
CT_SELECTED_ROWS = lv_CT_SELECTED_ROWS
CV_EVENT_ID = lv_CV_EVENT_ID
CV_FAILED = lv_CV_FAILED ).
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