SAP JITOUT05_CHOOSE_ITEMS4ACTION Function Module for NOTRANSL: Aktion und zugehörige Teilegruppen auswählen
JITOUT05_CHOOSE_ITEMS4ACTION is a standard jitout05 choose items4action 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: Aktion und zugehörige Teilegruppen auswählen 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 jitout05 choose items4action FM, simply by entering the name JITOUT05_CHOOSE_ITEMS4ACTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT05
Program Name: SAPLJITOUT05
Main Program: SAPLJITOUT05
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT05_CHOOSE_ITEMS4ACTION 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 'JITOUT05_CHOOSE_ITEMS4ACTION'"NOTRANSL: Aktion und zugehörige Teilegruppen auswählen.
EXPORTING
JITODIAIT_IT = "Table Type for JITODIAIT
* JITODIAHD_IT = "Table Type for JITODIAHD
* JITODIACO_IT = "Table Type for JITODIACO
* ACTION_IV = "Action
* NO_DIALOG_IV = ' ' "Single-Character Flag
IMPORTING
NEW_SELECTION_EV = "Single-Character Flag
EXCEPTIONS
NOTHING_DONE = 1 GENERAL_ERROR = 2
IMPORTING Parameters details for JITOUT05_CHOOSE_ITEMS4ACTION
JITODIAIT_IT - Table Type for JITODIAIT
Data type: JITODIAIT_TTOptional: No
Call by Reference: Yes
JITODIAHD_IT - Table Type for JITODIAHD
Data type: JITODIAHD_TTOptional: Yes
Call by Reference: Yes
JITODIACO_IT - Table Type for JITODIACO
Data type: JITODIACO_TTOptional: Yes
Call by Reference: Yes
ACTION_IV - Action
Data type: JIT_AKTIONOptional: Yes
Call by Reference: No ( called with pass by value option)
NO_DIALOG_IV - Single-Character Flag
Data type: CHAR1Default: ' '
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for JITOUT05_CHOOSE_ITEMS4ACTION
NEW_SELECTION_EV - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: Yes
EXCEPTIONS details
NOTHING_DONE -
Data type:Optional: No
Call by Reference: Yes
GENERAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JITOUT05_CHOOSE_ITEMS4ACTION 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_jitodiait_it | TYPE JITODIAIT_TT, " | |||
| lv_nothing_done | TYPE JITODIAIT_TT, " | |||
| lv_new_selection_ev | TYPE CHAR1, " | |||
| lv_jitodiahd_it | TYPE JITODIAHD_TT, " | |||
| lv_general_error | TYPE JITODIAHD_TT, " | |||
| lv_jitodiaco_it | TYPE JITODIACO_TT, " | |||
| lv_action_iv | TYPE JIT_AKTION, " | |||
| lv_no_dialog_iv | TYPE CHAR1. " ' ' |
|   CALL FUNCTION 'JITOUT05_CHOOSE_ITEMS4ACTION' "NOTRANSL: Aktion und zugehörige Teilegruppen auswählen |
| EXPORTING | ||
| JITODIAIT_IT | = lv_jitodiait_it | |
| JITODIAHD_IT | = lv_jitodiahd_it | |
| JITODIACO_IT | = lv_jitodiaco_it | |
| ACTION_IV | = lv_action_iv | |
| NO_DIALOG_IV | = lv_no_dialog_iv | |
| IMPORTING | ||
| NEW_SELECTION_EV | = lv_new_selection_ev | |
| EXCEPTIONS | ||
| NOTHING_DONE = 1 | ||
| GENERAL_ERROR = 2 | ||
| . " JITOUT05_CHOOSE_ITEMS4ACTION | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT05_CHOOSE_ITEMS4ACTION
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_no_dialog_iv) | = ' '. | |||
Search for further information about these or an SAP related objects