CHECK_FOR_ADDL_ALERTS SAP Method Check Additional Alerts
Below is documentation, parameters and attributes of ABAP Method CHECK_FOR_ADDL_ALERTS within SAP class IF_BADI_JITO_ALERTS. 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 IF_BADI_JITO_ALERTS 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 CHECK_FOR_ADDL_ALERTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_FOR_ADDL_ALERTS
.| Name | Type | Data Type | Description | Default Value |
| JITOAD_IT | Importing | TYPE JITOAD_TT | Additional Data for JIT Outbound | |
| JITODIACO_IT | Importing | TYPE JITODIACO_TT | Table Type for JITODIACO | |
| JITODIAHD_IT | Importing | TYPE JITODIAHD_TT | Table Type for JITODIAHD | |
| JITODIAIT_IT | Importing | TYPE JITODIAIT_TT | Table Type for JITODIAIT | |
| ZONE_IV | Importing | TYPE USLOGOND-TZONE | Time Zone | |
| JITO_DIA_ALL_MSSG_ET | Exporting | TYPE JITO_DIA_ALL_MSSG_TT | Table for Alerts with Dialog Fields and Messages |
Exceptions of Method CHECK_FOR_ADDL_ALERTS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_JITO_ALERTS.
DATA: lv_JITOAD_IT TYPE JITOAD_TT,
lv_JITODIACO_IT TYPE JITODIACO_TT,
lv_JITODIAHD_IT TYPE JITODIAHD_TT,
lv_JITODIAIT_IT TYPE JITODIAIT_TT,
lv_JITO_DIA_ALL_MSSG_ET TYPE JITO_DIA_ALL_MSSG_TT,
lv_ZONE_IV TYPE USLOGOND-TZONE,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_FOR_ADDL_ALERTS(
EXPORTING
JITOAD_IT = lv_JITOAD_IT
JITODIACO_IT = lv_JITODIACO_IT
JITODIAHD_IT = lv_JITODIAHD_IT
JITODIAIT_IT = lv_JITODIAIT_IT
ZONE_IV = lv_ZONE_IV
IMPORTING
JITO_DIA_ALL_MSSG_ET = lv_JITO_DIA_ALL_MSSG_ET ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects