MSGCREATE SAP Method Compile Message Data from Alert Data
Below is documentation, parameters and attributes of ABAP Method MSGCREATE within SAP class /SCMB/IF_EX_ANOT_MSGCREATE. 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 /SCMB/IF_EX_ANOT_MSGCREATE 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 MSGCREATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MSGCREATE
.| Name | Type | Data Type | Description | Default Value |
| IS_ANOTPALERT | Importing | TYPE /SCMB/ANOTPALERT_STR | Alert Notification: Information on Alert Message | |
| IV_TST | Importing | TYPE /SCMB/ANTST | Time Stamp of Alert Notification | |
| EV_NORETURN | Exporting | TYPE XFELD | Do Not Skip Standard Msg. Gen. Logic | |
| EV_OK | Exporting | TYPE XFELD | Message Generation OK | |
| CT_ANOTPMSG | Changing | TYPE /SCMB/ANOTPMSG_TAB | Alert Message for Alert Notification |
Exceptions of Method MSGCREATE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_EX_ANOT_MSGCREATE.
DATA: lv_CT_ANOTPMSG TYPE /SCMB/ANOTPMSG_TAB,
lv_EV_NORETURN TYPE XFELD,
lv_EV_OK TYPE XFELD,
lv_IS_ANOTPALERT TYPE /SCMB/ANOTPALERT_STR,
lv_IV_TST TYPE /SCMB/ANTST,
lv_other TYPE c.
CALL METHOD lo_class=>MSGCREATE(
EXPORTING
IS_ANOTPALERT = lv_IS_ANOTPALERT
IV_TST = lv_IV_TST
IMPORTING
EV_NORETURN = lv_EV_NORETURN
EV_OK = lv_EV_OK
CHANGING
CT_ANOTPMSG = lv_CT_ANOTPMSG ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects