SAP PPC1DC_ACTS_SELECT Function Module for NOTRANSL: Selektiert Komponenten (und Mengen)









PPC1DC_ACTS_SELECT is a standard ppc1dc acts select 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: Selektiert Komponenten (und Mengen) 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 ppc1dc acts select FM, simply by entering the name PPC1DC_ACTS_SELECT into the relevant SAP transaction such as SE37 or SE38.

Function Group: PPC1DC
Program Name: SAPLPPC1DC
Main Program: SAPLPPC1DC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function PPC1DC_ACTS_SELECT 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 'PPC1DC_ACTS_SELECT'"NOTRANSL: Selektiert Komponenten (und Mengen)
EXPORTING
IT_RESGUIDS = "GUID Table
IF_MODEGUID = "GUID for a Mode (Internal)

TABLES
* IR_BUDAT = "Posting Date
* IR_UNAME = "Created by
* IR_RPTID = "
* IR_ACTID = "
ET_ACTS_EXT = "
.



IMPORTING Parameters details for PPC1DC_ACTS_SELECT

IT_RESGUIDS - GUID Table

Data type: KCR_GUID_16_TAB
Optional: No
Call by Reference: Yes

IF_MODEGUID - GUID for a Mode (Internal)

Data type: PPC_MODE_GUID_INT
Optional: No
Call by Reference: Yes

TABLES Parameters details for PPC1DC_ACTS_SELECT

IR_BUDAT - Posting Date

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

IR_UNAME - Created by

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

IR_RPTID -

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

IR_ACTID -

Data type: PPCDC_R_ACTID
Optional: Yes
Call by Reference: Yes

ET_ACTS_EXT -

Data type: PPC_ACT_RAW
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for PPC1DC_ACTS_SELECT 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:
lt_ir_budat  TYPE STANDARD TABLE OF PPCDC_R_BUDAT, "   
lv_it_resguids  TYPE KCR_GUID_16_TAB, "   
lt_ir_uname  TYPE STANDARD TABLE OF PPCDC_R_UNAME, "   
lv_if_modeguid  TYPE PPC_MODE_GUID_INT, "   
lt_ir_rptid  TYPE STANDARD TABLE OF PPCDC_R_REPPOINT_INT, "   
lt_ir_actid  TYPE STANDARD TABLE OF PPCDC_R_ACTID, "   
lt_et_acts_ext  TYPE STANDARD TABLE OF PPC_ACT_RAW. "   

  CALL FUNCTION 'PPC1DC_ACTS_SELECT'  "NOTRANSL: Selektiert Komponenten (und Mengen)
    EXPORTING
         IT_RESGUIDS = lv_it_resguids
         IF_MODEGUID = lv_if_modeguid
    TABLES
         IR_BUDAT = lt_ir_budat
         IR_UNAME = lt_ir_uname
         IR_RPTID = lt_ir_rptid
         IR_ACTID = lt_ir_actid
         ET_ACTS_EXT = lt_et_acts_ext
. " PPC1DC_ACTS_SELECT




ABAP code using 7.40 inline data declarations to call FM PPC1DC_ACTS_SELECT

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



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!