ADD_MESSAGE SAP Method Adds a Message
Below is documentation, parameters and attributes of ABAP Method ADD_MESSAGE within SAP class CL_BSP_WD_MESSAGE_SERVICE. 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_BSP_WD_MESSAGE_SERVICE 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 ADD_MESSAGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADD_MESSAGE
.| Name | Type | Data Type | Description | Default Value |
| IV_DYN_LONGTEXT | Importing | TYPE REF TO IF_BSP_WD_MESSAGE_EXTENSION | ||
| IV_IMPORTANT_INFO | Importing | TYPE ABAP_BOOL | Flag: Important User Information | |
| IV_MSG_ID | Importing | TYPE SYMSGID | Messages, Message Class | |
| IV_MSG_LEVEL | Importing | TYPE BSP_WD_MESSAGE_LEVEL | Message Level | |
| IV_MSG_NUMBER | Importing | TYPE SYMSGNO | Messages, Message Number | |
| IV_MSG_TYPE | Importing | TYPE SYMSGTY | Messages, Message Type | |
| IV_MSG_V1 | Importing | TYPE CSEQUENCE | Messages, Message Variable | |
| IV_MSG_V2 | Importing | TYPE CSEQUENCE | Messages, Message Variable | |
| IV_MSG_V3 | Importing | TYPE CSEQUENCE | Messages, Message Variable | |
| IV_MSG_V4 | Importing | TYPE CSEQUENCE | Messages, Message Variable | |
| IV_VERIFICATION | Importing | TYPE REF TO IF_BSP_WD_MESSAGE_HANDLER | Interface for Error Handler |
Exceptions of Method ADD_MESSAGE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_BSP_WD_MESSAGE_SERVICE.
DATA: lv_IV_DYN_LONGTEXT TYPE IF_BSP_WD_MESSAGE_EXTENSION,
lv_IV_IMPORTANT_INFO TYPE ABAP_BOOL,
lv_IV_MSG_ID TYPE SYMSGID,
lv_IV_MSG_LEVEL TYPE BSP_WD_MESSAGE_LEVEL,
lv_IV_MSG_NUMBER TYPE SYMSGNO,
lv_IV_MSG_TYPE TYPE SYMSGTY,
lv_IV_MSG_V1 TYPE CSEQUENCE,
lv_IV_MSG_V2 TYPE CSEQUENCE,
lv_IV_MSG_V3 TYPE CSEQUENCE,
lv_IV_MSG_V4 TYPE CSEQUENCE,
lv_IV_VERIFICATION TYPE IF_BSP_WD_MESSAGE_HANDLER,
lv_other TYPE c.
CALL METHOD lo_class=>ADD_MESSAGE(
EXPORTING
IV_DYN_LONGTEXT = lv_IV_DYN_LONGTEXT
IV_IMPORTANT_INFO = lv_IV_IMPORTANT_INFO
IV_MSG_ID = lv_IV_MSG_ID
IV_MSG_LEVEL = lv_IV_MSG_LEVEL
IV_MSG_NUMBER = lv_IV_MSG_NUMBER
IV_MSG_TYPE = lv_IV_MSG_TYPE
IV_MSG_V1 = lv_IV_MSG_V1
IV_MSG_V2 = lv_IV_MSG_V2
IV_MSG_V3 = lv_IV_MSG_V3
IV_MSG_V4 = lv_IV_MSG_V4
IV_VERIFICATION = lv_IV_VERIFICATION ).
Links to Related Class(s)
CL_BSP_W...Full list of available SAP object classes
Search for further information about these or an SAP related objects