PROCESS_EVENT SAP Method of class /BOFU/IF_FBI_VIEW_INSTANCE_NEW









Below is documentation, parameters and attributes of ABAP Method PROCESS_EVENT 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 PROCESS_EVENT can also be found below:

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


Parameters of Method PROCESS_EVENT

.

NameTypeData TypeDescriptionDefault Value
IO_ADDITIONAL_INFOImportingTYPE REF TO
OBJECT
IR_EVENT_DATAImportingTYPE
DATA
IS_UI_CONTEXT_DATAImportingTYPE
TS_UI_CONTEXT_DATA
IT_SELECTED_ROWSImportingTYPE
TT_ROW
Selected records
IV_EVENT_IDImportingTYPE
STRING
IV_RAISED_BY_OWN_UIImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_SUPPRESS_DIALOGImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IO_UI_INFOImportingTYPE REF TO
IF_FPM_LIST_ATS_UI_INFO
facade to get UI-related information from ATS List UIBB
IR_EVENT_LIST_LINEImportingTYPE REF TO
DATA
EV_FAILEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CV_EVENT_RESULT_DEFERChangingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method PROCESS_EVENT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/IF_FBI_VIEW_INSTANCE_NEW.
DATA: lv_EV_FAILED TYPE BOOLE_D,
lv_IO_ADDITIONAL_INFO TYPE OBJECT,
lv_IR_EVENT_DATA TYPE DATA,
lv_IS_UI_CONTEXT_DATA TYPE TS_UI_CONTEXT_DATA,
lv_IT_SELECTED_ROWS TYPE TT_ROW,
lv_IV_EVENT_ID TYPE STRING,
lv_IV_RAISED_BY_OWN_UI TYPE BOOLE_D,
lv_IV_SUPPRESS_DIALOG TYPE BOOLE_D,
lv_CV_EVENT_RESULT_DEFER TYPE BOOLE_D,
lv_IO_UI_INFO TYPE IF_FPM_LIST_ATS_UI_INFO,
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
IR_EVENT_DATA = lv_IR_EVENT_DATA
IS_UI_CONTEXT_DATA = lv_IS_UI_CONTEXT_DATA
IT_SELECTED_ROWS = lv_IT_SELECTED_ROWS
IV_EVENT_ID = lv_IV_EVENT_ID
IV_RAISED_BY_OWN_UI = lv_IV_RAISED_BY_OWN_UI
IV_SUPPRESS_DIALOG = lv_IV_SUPPRESS_DIALOG
IO_UI_INFO = lv_IO_UI_INFO
IR_EVENT_LIST_LINE = lv_IR_EVENT_LIST_LINE
IMPORTING
EV_FAILED = lv_EV_FAILED
CHANGING
CV_EVENT_RESULT_DEFER = lv_CV_EVENT_RESULT_DEFER ).

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



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!