SAP JITOUT06_CREATE_ALERT Function Module for NOTRANSL: Einen Standard-Alert für JIT Outbound erzeugen
JITOUT06_CREATE_ALERT is a standard jitout06 create alert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Einen Standard-Alert für JIT Outbound erzeugen processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for jitout06 create alert FM, simply by entering the name JITOUT06_CREATE_ALERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT06
Program Name: SAPLJITOUT06
Main Program: SAPLJITOUT06
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT06_CREATE_ALERT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'JITOUT06_CREATE_ALERT'"NOTRANSL: Einen Standard-Alert für JIT Outbound erzeugen.
EXPORTING
* JITODIAHD_IS = "Dialog Structure Outbound Call Header
* JITODIAIT_IS = "Dialog Structure Outbound Components Group
* JITODIACO_IS = "Dialog Structure Outbound Components
IMPORTING
ALERT_ID_EV = "External ID for an Alert
CHANGING
MSSG_LOG_CS = "Transfer Structure for Additional Log Messages
EXCEPTIONS
ALERT_NOT_CREATED = 1
IMPORTING Parameters details for JITOUT06_CREATE_ALERT
JITODIAHD_IS - Dialog Structure Outbound Call Header
Data type: JITODIAHDOptional: Yes
Call by Reference: Yes
JITODIAIT_IS - Dialog Structure Outbound Components Group
Data type: JITODIAITOptional: Yes
Call by Reference: Yes
JITODIACO_IS - Dialog Structure Outbound Components
Data type: JITODIACOOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for JITOUT06_CREATE_ALERT
ALERT_ID_EV - External ID for an Alert
Data type: SALRTEXTIDOptional: No
Call by Reference: Yes
CHANGING Parameters details for JITOUT06_CREATE_ALERT
MSSG_LOG_CS - Transfer Structure for Additional Log Messages
Data type: JITO_MSSG_LOGOptional: No
Call by Reference: Yes
EXCEPTIONS details
ALERT_NOT_CREATED - Alert Was Not Generated
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JITOUT06_CREATE_ALERT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_alert_id_ev | TYPE SALRTEXTID, " | |||
| lv_mssg_log_cs | TYPE JITO_MSSG_LOG, " | |||
| lv_jitodiahd_is | TYPE JITODIAHD, " | |||
| lv_alert_not_created | TYPE JITODIAHD, " | |||
| lv_jitodiait_is | TYPE JITODIAIT, " | |||
| lv_jitodiaco_is | TYPE JITODIACO. " |
|   CALL FUNCTION 'JITOUT06_CREATE_ALERT' "NOTRANSL: Einen Standard-Alert für JIT Outbound erzeugen |
| EXPORTING | ||
| JITODIAHD_IS | = lv_jitodiahd_is | |
| JITODIAIT_IS | = lv_jitodiait_is | |
| JITODIACO_IS | = lv_jitodiaco_is | |
| IMPORTING | ||
| ALERT_ID_EV | = lv_alert_id_ev | |
| CHANGING | ||
| MSSG_LOG_CS | = lv_mssg_log_cs | |
| EXCEPTIONS | ||
| ALERT_NOT_CREATED = 1 | ||
| . " JITOUT06_CREATE_ALERT | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT06_CREATE_ALERT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects