POWL_HANDLE_ACTION SAP Method of class /BOFU/IF_FBI_VIEW_INSTANCE
Below is documentation, parameters and attributes of ABAP Method POWL_HANDLE_ACTION within SAP class /BOFU/IF_FBI_VIEW_INSTANCE. 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 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 POWL_HANDLE_ACTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method POWL_HANDLE_ACTION
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTIONID | Importing | TYPE POWL_ACTIONID_TY | Action identifier | |
| IV_ACTION_INDEX | Importing | LIKE SY-TABIX | Index of Internal Tables | |
| IV_DO_SAVE | Importing | TYPE POWL_XFLAG_TY | X-Flag | |
| ET_MESSAGES | Exporting | TYPE POWL_MSG_TTY | Message META description | |
| EV_ACTIONS_CHANGED | Exporting | TYPE POWL_XFLAG_TY | X-Flag | |
| CT_ACTION_DEFS | Changing | TYPE POWL_ACTDESCR_TTY | action meta description | |
| CT_RESULT_TAB | Changing | TYPE INDEX TABLE | ||
| CT_SELECTED | Changing | TYPE RSTABIXTAB | Repository Infosystem Table for Indexes |
Exceptions of Method POWL_HANDLE_ACTION
/BOFU/CX_FBI - FBI ExceptionExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/IF_FBI_VIEW_INSTANCE.
DATA: lv_CT_ACTION_DEFS TYPE POWL_ACTDESCR_TTY,
lv_CT_RESULT_TAB TYPE INDEX TABLE,
lv_CT_SELECTED TYPE RSTABIXTAB,
lv_ET_MESSAGES TYPE POWL_MSG_TTY,
lv_EV_ACTIONS_CHANGED TYPE POWL_XFLAG_TY,
lv_IV_ACTIONID TYPE POWL_ACTIONID_TY,
lv_IV_ACTION_INDEX TYPE SY-TABIX,
lv_IV_DO_SAVE TYPE POWL_XFLAG_TY,
lv_other TYPE c.
CALL METHOD lo_class=>POWL_HANDLE_ACTION(
EXPORTING
IV_ACTIONID = lv_IV_ACTIONID
IV_ACTION_INDEX = lv_IV_ACTION_INDEX
IV_DO_SAVE = lv_IV_DO_SAVE
IMPORTING
ET_MESSAGES = lv_ET_MESSAGES
EV_ACTIONS_CHANGED = lv_EV_ACTIONS_CHANGED
CHANGING
CT_ACTION_DEFS = lv_CT_ACTION_DEFS
CT_RESULT_TAB = lv_CT_RESULT_TAB
CT_SELECTED = lv_CT_SELECTED ).
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