RGPSC_RPT01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RGPSC_RPT01 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PSCRPT - psc report
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Calculation by Partner
Selection Text: S_VNAME = Venture
Selection Text: S_PSCGR = PSC group
Selection Text: S_PSC = Production sharing contract
Selection Text: S_PROD = PSC product
Selection Text: S_EQGRP = Equity Group
Selection Text: P_PERIOD = Period
Selection Text: P_GJAHR = Fiscal year
Selection Text: P_BUKRS = Company code
Title: Calculation by Partner
Text Symbol: SCR = Selection Criteria
Text Symbol: PRO = Processing options
Text Symbol: PDT = Posting details
Text Symbol: 220 = List contains no data
Text Symbol: 219 = Group
Text Symbol: 218 = Prod
Text Symbol: 217 = Psc Name
Text Symbol: 216 =
Text Symbol: 215 = Partner Share Amt
Text Symbol: 214 = Partner %
Text Symbol: 213 = Curr
Text Symbol: 212 = Curt
Text Symbol: 209 =
Text Symbol: 205 = Scheme Step
Text Symbol: 204 = Psc_Calc_Type
Text Symbol: 203 = Psc_Calc_Step
Text Symbol: 202 = Eqgrup
Text Symbol: 201 = Vent
Text Symbol: 101 = partner:
Text Symbol: 005 = Period:
Text Symbol: 004 = Year :
Text Symbol: 003 = Company:
Text Symbol: 002 = Client :
Text Symbol: 001 = RGPSC_RPT1
INCLUDE RGPSC_RPT01TOP.
INCLUDE RGPSC_RPT01SC.
No SAP DATABASE tables are accessed within this REPORT code!
HEADER CALL FUNCTION 'HEADER' EXPORTING i_report_num = text-001 i_report_title = prtxt i_title_length = 40.
BUILD_EQ_TABLE CALL FUNCTION 'BUILD_EQ_TABLE' EXPORTING * FLAG_INCLUDE_0_PERCENT = ' ' i_company = p_bukrs * I_DATE = ' ' i_equity_grp = ipscit-egrup i_is_npoci = 'X' i_period = p_period i_venture = ipscit-vname i_year = p_gjahr TABLES e_int_eq_share = int_eq_share EXCEPTIONS incomplete = 1 OTHERS = 2.
SPLIT_EQUITY CALL FUNCTION 'SPLIT_EQUITY' EXPORTING i_local_amt = ipsccr-con_amt i_trans_amt = 0 * I_LOCAL2_AMT = 0 * I_LOCAL3_AMT = 0 * IMPORTING * E_OPER_ALLOC_ERROR = TABLES e_int_eq_share = int_eq_share EXCEPTIONS incomplete = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.