SAP PP_C0_PDC_DOWN_OPERAS_DELTA Function Module for NOTRANSL: BDE-Schnittstelle: Vorgänge für Grundversorgungs-Download selekt
PP_C0_PDC_DOWN_OPERAS_DELTA is a standard pp c0 pdc down operas delta 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: BDE-Schnittstelle: Vorgänge für Grundversorgungs-Download selekt 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 pp c0 pdc down operas delta FM, simply by entering the name PP_C0_PDC_DOWN_OPERAS_DELTA into the relevant SAP transaction such as SE37 or SE38.
Function Group: PPC0
Program Name: SAPLPPC0
Main Program: SAPLPPC0
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PP_C0_PDC_DOWN_OPERAS_DELTA 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 'PP_C0_PDC_DOWN_OPERAS_DELTA'"NOTRANSL: BDE-Schnittstelle: Vorgänge für Grundversorgungs-Download selekt.
EXPORTING
I_CHANNEL = "
* I_TEST = "Indicator simulated run
TABLES
* IT_PLANT_RNG = "
* IT_WORKCENTER_RNG = "
* IT_ORDER_RNG = "
ET_OPERAS = "
ET_OPERAS_DEL = "
EXCEPTIONS
PROCESS_ALREADY_ACTIVE = 1 MISSING_AUTHORITY = 2
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLPPC0_101 Check Additional Conditions for PDC Download of Operation Data
IMPORTING Parameters details for PP_C0_PDC_DOWN_OPERAS_DELTA
I_CHANNEL -
Data type: T705W-KANALOptional: No
Call by Reference: No ( called with pass by value option)
I_TEST - Indicator simulated run
Data type: RC27X-FLG_SELOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for PP_C0_PDC_DOWN_OPERAS_DELTA
IT_PLANT_RNG -
Data type: BAPI_PHYSINV_PLANT_RAOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_WORKCENTER_RNG -
Data type: BAPI_PP_WORKCNTRRANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_ORDER_RNG -
Data type: BAPI_PP_ORDERRANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
ET_OPERAS -
Data type: BAPI_PP_PDC_OPERA2Optional: No
Call by Reference: No ( called with pass by value option)
ET_OPERAS_DEL -
Data type: BAPI_PP_PDC_OPERA1Optional: No
Call by Reference: Yes
EXCEPTIONS details
PROCESS_ALREADY_ACTIVE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
MISSING_AUTHORITY - Authorization missing
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PP_C0_PDC_DOWN_OPERAS_DELTA 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_i_channel | TYPE T705W-KANAL, " | |||
| lt_it_plant_rng | TYPE STANDARD TABLE OF BAPI_PHYSINV_PLANT_RA, " | |||
| lv_process_already_active | TYPE BAPI_PHYSINV_PLANT_RA, " | |||
| lv_i_test | TYPE RC27X-FLG_SEL, " | |||
| lt_it_workcenter_rng | TYPE STANDARD TABLE OF BAPI_PP_WORKCNTRRANGE, " | |||
| lv_missing_authority | TYPE BAPI_PP_WORKCNTRRANGE, " | |||
| lt_it_order_rng | TYPE STANDARD TABLE OF BAPI_PP_ORDERRANGE, " | |||
| lt_et_operas | TYPE STANDARD TABLE OF BAPI_PP_PDC_OPERA2, " | |||
| lt_et_operas_del | TYPE STANDARD TABLE OF BAPI_PP_PDC_OPERA1. " |
|   CALL FUNCTION 'PP_C0_PDC_DOWN_OPERAS_DELTA' "NOTRANSL: BDE-Schnittstelle: Vorgänge für Grundversorgungs-Download selekt |
| EXPORTING | ||
| I_CHANNEL | = lv_i_channel | |
| I_TEST | = lv_i_test | |
| TABLES | ||
| IT_PLANT_RNG | = lt_it_plant_rng | |
| IT_WORKCENTER_RNG | = lt_it_workcenter_rng | |
| IT_ORDER_RNG | = lt_it_order_rng | |
| ET_OPERAS | = lt_et_operas | |
| ET_OPERAS_DEL | = lt_et_operas_del | |
| EXCEPTIONS | ||
| PROCESS_ALREADY_ACTIVE = 1 | ||
| MISSING_AUTHORITY = 2 | ||
| . " PP_C0_PDC_DOWN_OPERAS_DELTA | ||
ABAP code using 7.40 inline data declarations to call FM PP_C0_PDC_DOWN_OPERAS_DELTA
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.| "SELECT single KANAL FROM T705W INTO @DATA(ld_i_channel). | ||||
| "SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_i_test). | ||||
Search for further information about these or an SAP related objects