MAP_APP_MSG SAP Method Map message to application log
Below is documentation, parameters and attributes of ABAP Method MAP_APP_MSG within SAP class /BSNAGT/CL_FILE_PICKUP. 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 /BSNAGT/CL_FILE_PICKUP into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method MAP_APP_MSG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAP_APP_MSG
.| Name | Type | Data Type | Description | Default Value |
| IT_MESSAGES | Importing | TYPE BAPIRET2_T | Return parameter table | |
| IV_GROUPID | Importing | TYPE BALNREXT | Application Log: External ID | |
| ET_MSG_APP | Exporting | TYPE /BSNAGT/TT_MSG_LIST | Message list table for BSN agent |
Exceptions of Method MAP_APP_MSG
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_MSG_APP TYPE /BSNAGT/TT_MSG_LIST,
lv_IT_MESSAGES TYPE BAPIRET2_T,
lv_IV_GROUPID TYPE BALNREXT,
lv_other TYPE c.
CALL METHOD /BSNAGT/CL_FILE_PICKUP=>MAP_APP_MSG(
EXPORTING
IT_MESSAGES = lv_IT_MESSAGES
IV_GROUPID = lv_IV_GROUPID
IMPORTING
ET_MSG_APP = lv_ET_MSG_APP ).
Links to Related Class(s)
/BSNAGT/...Full list of available SAP object classes
Search for further information about these or an SAP related objects