SAP PCITEMS_MASTERIDOCS_CREATE Function Module for NOTRANSL: ALE-Ausgang PCITEMS: Erzeugen Masteridoc









PCITEMS_MASTERIDOCS_CREATE is a standard pcitems masteridocs create 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: ALE-Ausgang PCITEMS: Erzeugen Masteridoc 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 pcitems masteridocs create FM, simply by entering the name PCITEMS_MASTERIDOCS_CREATE into the relevant SAP transaction such as SE37 or SE38.

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



Function PCITEMS_MASTERIDOCS_CREATE 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 'PCITEMS_MASTERIDOCS_CREATE'"NOTRANSL: ALE-Ausgang PCITEMS: Erzeugen Masteridoc
EXPORTING
PI_CATALOG = "Product Catalog Number
* PI_REQUESTCOMPLETE = ' ' "
* PI_MAXITEMS = 100 "

TABLES
* PI_T_VARIANTS = "
* PI_T_WLBM_KEY = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_T_WLMT_KEY = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_T_LTEXT_KEY = "DE-EN-LANG-SWITCH-NO-TRANSLATION
PI_T_RECEIVERS = "
* PE_T_REPLICATEDMATERIALS = "
* PE_T_COMMUNICATION_DOCUMENTS = "
* PE_T_APPLICATION_OBJECTS = "
PE_T_RETURN = "Return Values
.




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_SAPLWPCA_001 Function Exit for Product Catalog IDoc Outbound Message Type PCHEAD
EXIT_SAPLWPCA_002 Function Exit for Product Catalog IDoc Outbound Message Type PCITEMS
EXIT_SAPLWPCA_003 Function Exit for Product Catalog IDoc Inbound Message Type PCHEAD
EXIT_SAPLWPCA_004 Function Exit for Product Catalog IDoc Inbound Message Type PCITEMS

IMPORTING Parameters details for PCITEMS_MASTERIDOCS_CREATE

PI_CATALOG - Product Catalog Number

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

PI_REQUESTCOMPLETE -

Data type: BAPIPCALEHLP-REQCOM
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

PI_MAXITEMS -

Data type: BAPIPCALEHLP-MAXOBJ
Default: 100
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for PCITEMS_MASTERIDOCS_CREATE

PI_T_VARIANTS -

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

PI_T_WLBM_KEY - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

PI_T_WLMT_KEY - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

PI_T_LTEXT_KEY - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

PI_T_RECEIVERS -

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

PE_T_REPLICATEDMATERIALS -

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

PE_T_COMMUNICATION_DOCUMENTS -

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

PE_T_APPLICATION_OBJECTS -

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

PE_T_RETURN - Return Values

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

Copy and paste ABAP code example for PCITEMS_MASTERIDOCS_CREATE 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_pi_catalog  TYPE BAPIADMID-PRODCAT, "   
lt_pi_t_variants  TYPE STANDARD TABLE OF BAPIPCVARIANTID, "   
lt_pi_t_wlbm_key  TYPE STANDARD TABLE OF WLBM_KEY, "   
lv_pi_requestcomplete  TYPE BAPIPCALEHLP-REQCOM, "   ' '
lv_pi_maxitems  TYPE BAPIPCALEHLP-MAXOBJ, "   100
lt_pi_t_wlmt_key  TYPE STANDARD TABLE OF WLMT_KEY, "   
lt_pi_t_ltext_key  TYPE STANDARD TABLE OF LTEXT_KEY, "   
lt_pi_t_receivers  TYPE STANDARD TABLE OF BDI_LOGSYS, "   
lt_pe_t_replicatedmaterials  TYPE STANDARD TABLE OF BAPIPCMATERIALID, "   
lt_pe_t_communication_documents  TYPE STANDARD TABLE OF SWOTOBJID, "   
lt_pe_t_application_objects  TYPE STANDARD TABLE OF SWOTOBJID, "   
lt_pe_t_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'PCITEMS_MASTERIDOCS_CREATE'  "NOTRANSL: ALE-Ausgang PCITEMS: Erzeugen Masteridoc
    EXPORTING
         PI_CATALOG = lv_pi_catalog
         PI_REQUESTCOMPLETE = lv_pi_requestcomplete
         PI_MAXITEMS = lv_pi_maxitems
    TABLES
         PI_T_VARIANTS = lt_pi_t_variants
         PI_T_WLBM_KEY = lt_pi_t_wlbm_key
         PI_T_WLMT_KEY = lt_pi_t_wlmt_key
         PI_T_LTEXT_KEY = lt_pi_t_ltext_key
         PI_T_RECEIVERS = lt_pi_t_receivers
         PE_T_REPLICATEDMATERIALS = lt_pe_t_replicatedmaterials
         PE_T_COMMUNICATION_DOCUMENTS = lt_pe_t_communication_documents
         PE_T_APPLICATION_OBJECTS = lt_pe_t_application_objects
         PE_T_RETURN = lt_pe_t_return
. " PCITEMS_MASTERIDOCS_CREATE




ABAP code using 7.40 inline data declarations to call FM PCITEMS_MASTERIDOCS_CREATE

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 PRODCAT FROM BAPIADMID INTO @DATA(ld_pi_catalog).
 
 
 
"SELECT single REQCOM FROM BAPIPCALEHLP INTO @DATA(ld_pi_requestcomplete).
DATA(ld_pi_requestcomplete) = ' '.
 
"SELECT single MAXOBJ FROM BAPIPCALEHLP INTO @DATA(ld_pi_maxitems).
DATA(ld_pi_maxitems) = 100.
 
 
 
 
 
 
 
 


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!