SAP CO_DR_ITAB_CORRECTION Function Module for NOTRANSL: Korrigieren der ITAB-Indizes, falls Druck für Auftrag aus andere
CO_DR_ITAB_CORRECTION is a standard co dr itab correction 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: Korrigieren der ITAB-Indizes, falls Druck für Auftrag aus andere 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 co dr itab correction FM, simply by entering the name CO_DR_ITAB_CORRECTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: CODR
Program Name: SAPLCODR
Main Program: SAPLCODR
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CO_DR_ITAB_CORRECTION 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 'CO_DR_ITAB_CORRECTION'"NOTRANSL: Korrigieren der ITAB-Indizes, falls Druck für Auftrag aus andere.
EXPORTING
I_CAUFVD_TAB = "
I_AFFLD_TAB = "
I_AFVGD_TAB = "
I_RESBD_TAB = "
I_AFFHD_TAB = "
I_AFPOD_TAB = "
CHANGING
C_ITAB = "
IMPORTING Parameters details for CO_DR_ITAB_CORRECTION
I_CAUFVD_TAB -
Data type: CO_CAUFVD_TABOptional: No
Call by Reference: Yes
I_AFFLD_TAB -
Data type: CO_AFFLD_TABOptional: No
Call by Reference: Yes
I_AFVGD_TAB -
Data type: CO_AFVGD_TABOptional: No
Call by Reference: Yes
I_RESBD_TAB -
Data type: CO_RESBD_TABOptional: No
Call by Reference: Yes
I_AFFHD_TAB -
Data type: CO_AFFHD_TABOptional: No
Call by Reference: Yes
I_AFPOD_TAB -
Data type: CO_AFPOD_TABOptional: No
Call by Reference: Yes
CHANGING Parameters details for CO_DR_ITAB_CORRECTION
C_ITAB -
Data type: CO_SFC_ITAB_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CO_DR_ITAB_CORRECTION 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_c_itab | TYPE CO_SFC_ITAB_TAB, " | |||
| lv_i_caufvd_tab | TYPE CO_CAUFVD_TAB, " | |||
| lv_i_affld_tab | TYPE CO_AFFLD_TAB, " | |||
| lv_i_afvgd_tab | TYPE CO_AFVGD_TAB, " | |||
| lv_i_resbd_tab | TYPE CO_RESBD_TAB, " | |||
| lv_i_affhd_tab | TYPE CO_AFFHD_TAB, " | |||
| lv_i_afpod_tab | TYPE CO_AFPOD_TAB. " |
|   CALL FUNCTION 'CO_DR_ITAB_CORRECTION' "NOTRANSL: Korrigieren der ITAB-Indizes, falls Druck für Auftrag aus andere |
| EXPORTING | ||
| I_CAUFVD_TAB | = lv_i_caufvd_tab | |
| I_AFFLD_TAB | = lv_i_affld_tab | |
| I_AFVGD_TAB | = lv_i_afvgd_tab | |
| I_RESBD_TAB | = lv_i_resbd_tab | |
| I_AFFHD_TAB | = lv_i_affhd_tab | |
| I_AFPOD_TAB | = lv_i_afpod_tab | |
| CHANGING | ||
| C_ITAB | = lv_c_itab | |
| . " CO_DR_ITAB_CORRECTION | ||
ABAP code using 7.40 inline data declarations to call FM CO_DR_ITAB_CORRECTION
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