SAP JITOUT04_ACTION_DELETION_DELI Function Module for NOTRANSL: Status des MABs zurücksetzen beim Löschen der Lieferung
JITOUT04_ACTION_DELETION_DELI is a standard jitout04 action deletion deli 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: Status des MABs zurücksetzen beim Löschen der Lieferung 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 jitout04 action deletion deli FM, simply by entering the name JITOUT04_ACTION_DELETION_DELI into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT04
Program Name: SAPLJITOUT04
Main Program: SAPLJITOUT04
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT04_ACTION_DELETION_DELI 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 'JITOUT04_ACTION_DELETION_DELI'"NOTRANSL: Status des MABs zurücksetzen beim Löschen der Lieferung.
EXPORTING
* CHAINED_ACTION_IV = ' ' "Single-Character Indicator
* FR_ACTION_IV = "Action
IMPORTING
MSSG_RET_ET = "Transfer Table for System Messages
CHANGING
* JITODIAHD_CT = "Dialog Structure Outbound Call Header
JITODIAIT_CT = "
JITODIACO_CT = "Dialog Structure Outbound Components
* ASYNC_POSTING_CV = "
EXCEPTIONS
DELIVERY_DELETION_ERROR = 1
IMPORTING Parameters details for JITOUT04_ACTION_DELETION_DELI
CHAINED_ACTION_IV - Single-Character Indicator
Data type: CHAR1Default: ' '
Optional: Yes
Call by Reference: Yes
FR_ACTION_IV - Action
Data type: CJIT07-AKTIONOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for JITOUT04_ACTION_DELETION_DELI
MSSG_RET_ET - Transfer Table for System Messages
Data type: MSSG_RET_TTOptional: No
Call by Reference: Yes
CHANGING Parameters details for JITOUT04_ACTION_DELETION_DELI
JITODIAHD_CT - Dialog Structure Outbound Call Header
Data type: JITODIAHD_TTOptional: Yes
Call by Reference: Yes
JITODIAIT_CT -
Data type: JITODIAIT_TTOptional: No
Call by Reference: Yes
JITODIACO_CT - Dialog Structure Outbound Components
Data type: JITODIACO_TTOptional: No
Call by Reference: Yes
ASYNC_POSTING_CV -
Data type: COptional: Yes
Call by Reference: Yes
EXCEPTIONS details
DELIVERY_DELETION_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JITOUT04_ACTION_DELETION_DELI 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_mssg_ret_et | TYPE MSSG_RET_TT, " | |||
| lv_jitodiahd_ct | TYPE JITODIAHD_TT, " | |||
| lv_chained_action_iv | TYPE CHAR1, " ' ' | |||
| lv_delivery_deletion_error | TYPE CHAR1, " | |||
| lv_fr_action_iv | TYPE CJIT07-AKTION, " | |||
| lv_jitodiait_ct | TYPE JITODIAIT_TT, " | |||
| lv_jitodiaco_ct | TYPE JITODIACO_TT, " | |||
| lv_async_posting_cv | TYPE C. " |
|   CALL FUNCTION 'JITOUT04_ACTION_DELETION_DELI' "NOTRANSL: Status des MABs zurücksetzen beim Löschen der Lieferung |
| EXPORTING | ||
| CHAINED_ACTION_IV | = lv_chained_action_iv | |
| FR_ACTION_IV | = lv_fr_action_iv | |
| IMPORTING | ||
| MSSG_RET_ET | = lv_mssg_ret_et | |
| CHANGING | ||
| JITODIAHD_CT | = lv_jitodiahd_ct | |
| JITODIAIT_CT | = lv_jitodiait_ct | |
| JITODIACO_CT | = lv_jitodiaco_ct | |
| ASYNC_POSTING_CV | = lv_async_posting_cv | |
| EXCEPTIONS | ||
| DELIVERY_DELETION_ERROR = 1 | ||
| . " JITOUT04_ACTION_DELETION_DELI | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT04_ACTION_DELETION_DELI
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.| DATA(ld_chained_action_iv) | = ' '. | |||
| "SELECT single AKTION FROM CJIT07 INTO @DATA(ld_fr_action_iv). | ||||
Search for further information about these or an SAP related objects