POWL_GET_MESSAGES_PREV SAP Method of class /BOFU/CL_FBI_VIEW_INST
Below is documentation, parameters and attributes of ABAP Method POWL_GET_MESSAGES_PREV within SAP class /BOFU/CL_FBI_VIEW_INST. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_FBI_VIEW_INST 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_GET_MESSAGES_PREV can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method POWL_GET_MESSAGES_PREV
.| Name | Type | Data Type | Description | Default Value |
| IO_PREVIOUS | Importing | TYPE REF TO CX_ROOT | Abstract Superclass for All Global Exceptions | |
| IV_REF_COLID | Importing | TYPE POWL_MSG_STY-REF_COLID | (unique) ref. to outtab column (c.f. GET_OBJECT_DEFINITION) | |
| IV_REF_INDX | Importing | TYPE POWL_MSG_STY-REF_INDX | Row Index of Internal Tables | |
| IV_SEVERITY | Importing | TYPE /BOBF/S_FRW_MESSAGE_K-SEVERITY | CM_ROOT=>TY_MESSAGE_SEVERITY | |
| CT_MESSAGES | Changing | TYPE POWL_MSG_TTY | Message META description |
Exceptions of Method POWL_GET_MESSAGES_PREV
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /BOFU/CL_FBI_VIEW_INST.
DATA: lv_CT_MESSAGES TYPE POWL_MSG_TTY,
lv_IO_PREVIOUS TYPE CX_ROOT,
lv_IV_REF_COLID TYPE POWL_MSG_STY-REF_COLID,
lv_IV_REF_INDX TYPE POWL_MSG_STY-REF_INDX,
lv_IV_SEVERITY TYPE /BOBF/S_FRW_MESSAGE_K-SEVERITY,
lv_other TYPE c.
CALL METHOD lo_class=>POWL_GET_MESSAGES_PREV(
EXPORTING
IO_PREVIOUS = lv_IO_PREVIOUS
IV_REF_COLID = lv_IV_REF_COLID
IV_REF_INDX = lv_IV_REF_INDX
IV_SEVERITY = lv_IV_SEVERITY
CHANGING
CT_MESSAGES = lv_CT_MESSAGES ).
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