SAP PSC_GET_PSC_PRODUCT_CALC Function Module for called in exit from rollup to find PSC, product and calculation type
PSC_GET_PSC_PRODUCT_CALC is a standard psc 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 psc get psc product calc FM, simply by entering the name PSC_GET_PSC_PRODUCT_CALC into the relevant SAP transaction such as SE37 or SE38.
Function Group: PSC_ROLLUP_EXIT
Program Name: SAPLPSC_ROLLUP_EXIT
Main Program: SAPLPSC_ROLLUP_EXIT
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PSC_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 'PSC_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, ...
EXCEPTIONS
NO_PSC = 1 NO_CALCTYPE = 2 NO_PRODUCT = 3
IMPORTING Parameters details for PSC_GET_PSC_PRODUCT_CALC
I_GLU1 - Input the GLU1 because Rules are used
Data type: GLU1Optional: No
Call by Reference: No ( called with pass by value option)
I_YEAR -
Data type: JVPSC01T-RYEAROptional: No
Call by Reference: No ( called with pass by value option)
I_POPER -
Data type: JVPSC01A-POPEROptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for PSC_GET_PSC_PRODUCT_CALC
E_PSC_NAME - Product Sharing Agreement
Data type: JVPSC01T-RPSC_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
E_PSC_PRODUCT - Psc Product
Data type: JVPSC01T-RPSC_PRODUCTOptional: 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_TYPEOptional: 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 PSC_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. " |
|   CALL FUNCTION 'PSC_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 | |
| EXCEPTIONS | ||
| NO_PSC = 1 | ||
| NO_CALCTYPE = 2 | ||
| NO_PRODUCT = 3 | ||
| . " PSC_GET_PSC_PRODUCT_CALC | ||
ABAP code using 7.40 inline data declarations to call FM PSC_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). | ||||
Search for further information about these or an SAP related objects