GET_GUIBB_MESSAGES SAP Method of class CL_FPM_SADL_CRUD_MSG_MANAGER
Below is documentation, parameters and attributes of ABAP Method GET_GUIBB_MESSAGES within SAP class CL_FPM_SADL_CRUD_MSG_MANAGER. 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 CL_FPM_SADL_CRUD_MSG_MANAGER 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 GET_GUIBB_MESSAGES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_GUIBB_MESSAGES
.| Name | Type | Data Type | Description | Default Value |
| IR_KEYS | Importing | TYPE REF TO DATA | ||
| IT_EDITABLE_ELEMENT | Importing | TYPE IF_SADL_ENTITY_TRANSACTIONAL=>TT_ELEMENT_NAMES | ||
| IV_SADL_ID | Importing | TYPE SADL_ENTITY_ID | Business Entity | |
| RT_MESSAGE | Returning | TYPE FPMGB_T_MESSAGES | FPMGB Messages (T100 & Plaintext) |
Exceptions of Method GET_GUIBB_MESSAGES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_SADL_CRUD_MSG_MANAGER.
DATA: lv_IR_KEYS TYPE DATA,
lv_IT_EDITABLE_ELEMENT TYPE IF_SADL_ENTITY_TRANSACTIONAL=>TT_ELEMENT_NAMES,
lv_IV_SADL_ID TYPE SADL_ENTITY_ID,
lv_RT_MESSAGE TYPE FPMGB_T_MESSAGES,
lv_other TYPE c.
CALL METHOD lo_class=>GET_GUIBB_MESSAGES(
EXPORTING
IR_KEYS = lv_IR_KEYS
IT_EDITABLE_ELEMENT = lv_IT_EDITABLE_ELEMENT
IV_SADL_ID = lv_IV_SADL_ID
RECEIVING
RT_MESSAGE = lv_RT_MESSAGE )
"Alternate coding for Method Call with returning parameter
lv_RT_MESSAGE = lo_class=>GET_GUIBB_MESSAGES(
EXPORTING
IR_KEYS = lv_IR_KEYS
IT_EDITABLE_ELEMENT = lv_IT_EDITABLE_ELEMENT
IV_SADL_ID = lv_IV_SADL_ID ).
Links to Related Class(s)
CL_FPM_S...Full list of available SAP object classes
Search for further information about these or an SAP related objects