SAP PSA_GET_PSC_PRODUCT_CALC Function Module for called in exit from rollup to find PSC, product and calculation type









PSA_GET_PSC_PRODUCT_CALC is a standard psa get psc product calc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for called in exit from rollup to find PSC, product and calculation type 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 psa get psc product calc FM, simply by entering the name PSA_GET_PSC_PRODUCT_CALC into the relevant SAP transaction such as SE37 or SE38.

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



Function PSA_GET_PSC_PRODUCT_CALC 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 'PSA_GET_PSC_PRODUCT_CALC'"called in exit from rollup to find PSC, product and calculation type
EXPORTING
I_GLU1 = "Input the GLU1 because Rules are used
I_YEAR = "
I_POPER = "

IMPORTING
E_PSC_NAME = "Product Sharing Agreement
E_PSC_PRODUCT = "Psc Product
E_PSC_CALC_TYPE = "Calculation Type like CAPEX, OPEX, ...
E_REGROU = "Equity Group

EXCEPTIONS
NO_PSC = 1 NO_CALCTYPE = 2 NO_PRODUCT = 3
.



IMPORTING Parameters details for PSA_GET_PSC_PRODUCT_CALC

I_GLU1 - Input the GLU1 because Rules are used

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

I_YEAR -

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

I_POPER -

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

EXPORTING Parameters details for PSA_GET_PSC_PRODUCT_CALC

E_PSC_NAME - Product Sharing Agreement

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

E_PSC_PRODUCT - Psc Product

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

E_PSC_CALC_TYPE - Calculation Type like CAPEX, OPEX, ...

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

E_REGROU - Equity Group

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

EXCEPTIONS details

NO_PSC -

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

NO_CALCTYPE -

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

NO_PRODUCT -

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

Copy and paste ABAP code example for PSA_GET_PSC_PRODUCT_CALC 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_glu1  TYPE GLU1, "   
lv_no_psc  TYPE GLU1, "   
lv_e_psc_name  TYPE JVPSC01T-RPSC_NAME, "   
lv_i_year  TYPE JVPSC01T-RYEAR, "   
lv_no_calctype  TYPE JVPSC01T, "   
lv_e_psc_product  TYPE JVPSC01T-RPSC_PRODUCT, "   
lv_i_poper  TYPE JVPSC01A-POPER, "   
lv_no_product  TYPE JVPSC01A, "   
lv_e_psc_calc_type  TYPE JVPSC01T-PSC_CALC_TYPE, "   
lv_e_regrou  TYPE JVPSC01T-REGROU. "   

  CALL FUNCTION 'PSA_GET_PSC_PRODUCT_CALC'  "called in exit from rollup to find PSC, product and calculation type
    EXPORTING
         I_GLU1 = lv_i_glu1
         I_YEAR = lv_i_year
         I_POPER = lv_i_poper
    IMPORTING
         E_PSC_NAME = lv_e_psc_name
         E_PSC_PRODUCT = lv_e_psc_product
         E_PSC_CALC_TYPE = lv_e_psc_calc_type
         E_REGROU = lv_e_regrou
    EXCEPTIONS
        NO_PSC = 1
        NO_CALCTYPE = 2
        NO_PRODUCT = 3
. " PSA_GET_PSC_PRODUCT_CALC




ABAP code using 7.40 inline data declarations to call FM PSA_GET_PSC_PRODUCT_CALC

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 RPSC_NAME FROM JVPSC01T INTO @DATA(ld_e_psc_name).
 
"SELECT single RYEAR FROM JVPSC01T INTO @DATA(ld_i_year).
 
 
"SELECT single RPSC_PRODUCT FROM JVPSC01T INTO @DATA(ld_e_psc_product).
 
"SELECT single POPER FROM JVPSC01A INTO @DATA(ld_i_poper).
 
 
"SELECT single PSC_CALC_TYPE FROM JVPSC01T INTO @DATA(ld_e_psc_calc_type).
 
"SELECT single REGROU FROM JVPSC01T INTO @DATA(ld_e_regrou).
 


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!