SAP PSSC00_REPL_GET_CUSTOMIZING Function Module for Read the customizing









PSSC00_REPL_GET_CUSTOMIZING is a standard pssc00 repl get customizing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read the customizing 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 pssc00 repl get customizing FM, simply by entering the name PSSC00_REPL_GET_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.

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



Function PSSC00_REPL_GET_CUSTOMIZING 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 'PSSC00_REPL_GET_CUSTOMIZING'"Read the customizing
TABLES
* ET_PSSCC_DDR_FRQ = "Due Date Rule - Payment Frequency Assignment
* ET_PSSCC_PMNT_FAM = "Payment Family
* ET_TFK042Z = "Payment Method
* ET_PSSCC_SWITCHVAL = "Switch
* ET_PSSCC_BEN_PROG = "Benefit Programs
* ET_PSSCC_DDR_TYPE = "Due Date Rule Types
* ET_PSSCC_SXP_TYPE = "SXP Types (Entity Table)
* ET_PSSCC_ITM_TYPE = "Item Types (CRM)
* ET_PSSCC_SDP_ITM = "Social Deduct Plan Item Type: Transaction Control Parameters
* ET_PSSCC_FRQ_TYPE = "Frequency Types
* ET_PSSCC_GE_CEX = "Gross Entitlement Calculation Exit
* ET_PSSCC_GE_MCHECK = "Gross Entitlement Manual Check
* ET_PSSCC_GP_SXP = "SSP Type Attributes for Gross Payment Item Determination
.



TABLES Parameters details for PSSC00_REPL_GET_CUSTOMIZING

ET_PSSCC_DDR_FRQ - Due Date Rule - Payment Frequency Assignment

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

ET_PSSCC_PMNT_FAM - Payment Family

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

ET_TFK042Z - Payment Method

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

ET_PSSCC_SWITCHVAL - Switch

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

ET_PSSCC_BEN_PROG - Benefit Programs

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

ET_PSSCC_DDR_TYPE - Due Date Rule Types

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

ET_PSSCC_SXP_TYPE - SXP Types (Entity Table)

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

ET_PSSCC_ITM_TYPE - Item Types (CRM)

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

ET_PSSCC_SDP_ITM - Social Deduct Plan Item Type: Transaction Control Parameters

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

ET_PSSCC_FRQ_TYPE - Frequency Types

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

ET_PSSCC_GE_CEX - Gross Entitlement Calculation Exit

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

ET_PSSCC_GE_MCHECK - Gross Entitlement Manual Check

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

ET_PSSCC_GP_SXP - SSP Type Attributes for Gross Payment Item Determination

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

Copy and paste ABAP code example for PSSC00_REPL_GET_CUSTOMIZING 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_et_psscc_ddr_frq  TYPE STANDARD TABLE OF PSSCS_M_DDR_FRQ, "   
lt_et_psscc_pmnt_fam  TYPE STANDARD TABLE OF PSSCC_PMNT_FAM, "   
lt_et_tfk042z  TYPE STANDARD TABLE OF TFK042Z, "   
lt_et_psscc_switchval  TYPE STANDARD TABLE OF PSSCC_SWITCHVAL, "   
lt_et_psscc_ben_prog  TYPE STANDARD TABLE OF PSSCC_BPROG, "   
lt_et_psscc_ddr_type  TYPE STANDARD TABLE OF PSSCS_M_DDR_TYPE, "   
lt_et_psscc_sxp_type  TYPE STANDARD TABLE OF PSSCC_SXP_TYPE, "   
lt_et_psscc_itm_type  TYPE STANDARD TABLE OF PSSCC_ITM_TYPE, "   
lt_et_psscc_sdp_itm  TYPE STANDARD TABLE OF PSSCC_SDP_ITM, "   
lt_et_psscc_frq_type  TYPE STANDARD TABLE OF PSSCS_M_FRQ_TYPE, "   
lt_et_psscc_ge_cex  TYPE STANDARD TABLE OF PSSCT_SXP_TYPE_CHECK_RESULTS, "   
lt_et_psscc_ge_mcheck  TYPE STANDARD TABLE OF PSSCC_GE_MCHECK, "   
lt_et_psscc_gp_sxp  TYPE STANDARD TABLE OF PSSCC_GP_SXP. "   

  CALL FUNCTION 'PSSC00_REPL_GET_CUSTOMIZING'  "Read the customizing
    TABLES
         ET_PSSCC_DDR_FRQ = lt_et_psscc_ddr_frq
         ET_PSSCC_PMNT_FAM = lt_et_psscc_pmnt_fam
         ET_TFK042Z = lt_et_tfk042z
         ET_PSSCC_SWITCHVAL = lt_et_psscc_switchval
         ET_PSSCC_BEN_PROG = lt_et_psscc_ben_prog
         ET_PSSCC_DDR_TYPE = lt_et_psscc_ddr_type
         ET_PSSCC_SXP_TYPE = lt_et_psscc_sxp_type
         ET_PSSCC_ITM_TYPE = lt_et_psscc_itm_type
         ET_PSSCC_SDP_ITM = lt_et_psscc_sdp_itm
         ET_PSSCC_FRQ_TYPE = lt_et_psscc_frq_type
         ET_PSSCC_GE_CEX = lt_et_psscc_ge_cex
         ET_PSSCC_GE_MCHECK = lt_et_psscc_ge_mcheck
         ET_PSSCC_GP_SXP = lt_et_psscc_gp_sxp
. " PSSC00_REPL_GET_CUSTOMIZING




ABAP code using 7.40 inline data declarations to call FM PSSC00_REPL_GET_CUSTOMIZING

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!