SAP PP_C0_OPERAS_SEL_FOR_PDC_DOWN Function Module for NOTRANSL: BDE-Schnittstelle: Vorgänge für Download selektieren









PP_C0_OPERAS_SEL_FOR_PDC_DOWN is a standard pp c0 operas sel for pdc down 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 Download selektieren 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 operas sel for pdc down FM, simply by entering the name PP_C0_OPERAS_SEL_FOR_PDC_DOWN into the relevant SAP transaction such as SE37 or SE38.

Function Group: PPC0
Program Name: SAPLPPC0
Main Program: SAPLPPC0
Appliation area: D
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function PP_C0_OPERAS_SEL_FOR_PDC_DOWN 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_OPERAS_SEL_FOR_PDC_DOWN'"NOTRANSL: BDE-Schnittstelle: Vorgänge für Download selektieren
EXPORTING
* I_DELETE = ' ' "
I_CHANNEL = "Communication Channel
* I_OPEN_EVENTS = ' ' "

IMPORTING
E_DELETE = "

TABLES
* IT_ORDER = "Orders to be checked
* IT_OPRKEY = "
* ET_OPERAS = "
* ET_OPENEVENTS = "
* ET_ORDCOM_NOT_DEL = "
.




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_OPERAS_SEL_FOR_PDC_DOWN

I_DELETE -

Data type: RC27X-FLG_SEL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHANNEL - Communication Channel

Data type: T705W-KANAL
Optional: No
Call by Reference: No ( called with pass by value option)

I_OPEN_EVENTS -

Data type: RC27X-FLG_SEL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for PP_C0_OPERAS_SEL_FOR_PDC_DOWN

E_DELETE -

Data type: RC27X-FLG_SEL
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for PP_C0_OPERAS_SEL_FOR_PDC_DOWN

IT_ORDER - Orders to be checked

Data type: ORD_PRE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_OPRKEY -

Data type: ARBPL_AFVC
Optional: Yes
Call by Reference: No ( called with pass by value option)

ET_OPERAS -

Data type: BAPI_PP_PDC_OPERA2
Optional: Yes
Call by Reference: No ( called with pass by value option)

ET_OPENEVENTS -

Data type: BAPI_PP_PDC_OPENEVENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

ET_ORDCOM_NOT_DEL -

Data type: ARBPL_AFVC
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for PP_C0_OPERAS_SEL_FOR_PDC_DOWN 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_e_delete  TYPE RC27X-FLG_SEL, "   
lt_it_order  TYPE STANDARD TABLE OF ORD_PRE, "   
lv_i_delete  TYPE RC27X-FLG_SEL, "   SPACE
lt_it_oprkey  TYPE STANDARD TABLE OF ARBPL_AFVC, "   
lv_i_channel  TYPE T705W-KANAL, "   
lt_et_operas  TYPE STANDARD TABLE OF BAPI_PP_PDC_OPERA2, "   
lv_i_open_events  TYPE RC27X-FLG_SEL, "   SPACE
lt_et_openevents  TYPE STANDARD TABLE OF BAPI_PP_PDC_OPENEVENT, "   
lt_et_ordcom_not_del  TYPE STANDARD TABLE OF ARBPL_AFVC. "   

  CALL FUNCTION 'PP_C0_OPERAS_SEL_FOR_PDC_DOWN'  "NOTRANSL: BDE-Schnittstelle: Vorgänge für Download selektieren
    EXPORTING
         I_DELETE = lv_i_delete
         I_CHANNEL = lv_i_channel
         I_OPEN_EVENTS = lv_i_open_events
    IMPORTING
         E_DELETE = lv_e_delete
    TABLES
         IT_ORDER = lt_it_order
         IT_OPRKEY = lt_it_oprkey
         ET_OPERAS = lt_et_operas
         ET_OPENEVENTS = lt_et_openevents
         ET_ORDCOM_NOT_DEL = lt_et_ordcom_not_del
. " PP_C0_OPERAS_SEL_FOR_PDC_DOWN




ABAP code using 7.40 inline data declarations to call FM PP_C0_OPERAS_SEL_FOR_PDC_DOWN

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 FLG_SEL FROM RC27X INTO @DATA(ld_e_delete).
 
 
"SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_i_delete).
DATA(ld_i_delete) = ' '.
 
 
"SELECT single KANAL FROM T705W INTO @DATA(ld_i_channel).
 
 
"SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_i_open_events).
DATA(ld_i_open_events) = ' '.
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!