SEND_NOTIF SAP Method Send email notification
Below is documentation, parameters and attributes of ABAP Method SEND_NOTIF within SAP class /XLSO/CL_EXTERNAL_TRAINING. 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 /XLSO/CL_EXTERNAL_TRAINING 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 SEND_NOTIF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SEND_NOTIF
.| Name | Type | Data Type | Description | Default Value |
| IV_COURSE_TITLE | Importing | TYPE /XLSO/E_EVSTEXT | Name of the Business Event | |
| IV_DELIVERY_METHOD | Importing | TYPE LSO_TFORM_C | Delivery Method | |
| IV_END_DATE | Importing | TYPE ENDDA | End Date | |
| IV_END_TIME | Importing | TYPE ENDTIME | End time of a shift | |
| IV_LEARNER | Importing | TYPE XUBNAME | User Name in User Master Record | |
| IV_LOCATION | Importing | TYPE LOCID | Business Event Location | |
| IV_RESPONSE | Importing | TYPE /XLSO/E_APPROVAL_REJ_REASON | Approval or Rejection Reason | |
| IV_START_DATE | Importing | TYPE BEGDA | Start Date | |
| IV_START_TIME | Importing | TYPE BEGTIME | Start time of a shift | |
| IV_STATUS | Importing | TYPE /XLSO/E_EXT_COURSE_STATUS | External course status | |
| CT_MESSAGES | Changing | TYPE BAPIRET2_T | Return parameter table |
Exceptions of Method SEND_NOTIF
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 /XLSO/CL_EXTERNAL_TRAINING.
DATA: lv_CT_MESSAGES TYPE BAPIRET2_T,
lv_IV_COURSE_TITLE TYPE /XLSO/E_EVSTEXT,
lv_IV_DELIVERY_METHOD TYPE LSO_TFORM_C,
lv_IV_END_DATE TYPE ENDDA,
lv_IV_END_TIME TYPE ENDTIME,
lv_IV_LEARNER TYPE XUBNAME,
lv_IV_LOCATION TYPE LOCID,
lv_IV_RESPONSE TYPE /XLSO/E_APPROVAL_REJ_REASON,
lv_IV_START_DATE TYPE BEGDA,
lv_IV_START_TIME TYPE BEGTIME,
lv_IV_STATUS TYPE /XLSO/E_EXT_COURSE_STATUS,
lv_other TYPE c.
CALL METHOD lo_class=>SEND_NOTIF(
EXPORTING
IV_COURSE_TITLE = lv_IV_COURSE_TITLE
IV_DELIVERY_METHOD = lv_IV_DELIVERY_METHOD
IV_END_DATE = lv_IV_END_DATE
IV_END_TIME = lv_IV_END_TIME
IV_LEARNER = lv_IV_LEARNER
IV_LOCATION = lv_IV_LOCATION
IV_RESPONSE = lv_IV_RESPONSE
IV_START_DATE = lv_IV_START_DATE
IV_START_TIME = lv_IV_START_TIME
IV_STATUS = lv_IV_STATUS
CHANGING
CT_MESSAGES = lv_CT_MESSAGES ).
Links to Related Class(s)
/XLSO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects