FERCR200_OLD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The history function of the regulatory reporting menu shows the status of each regulatory procedure for a CO area, for the selected periods and years...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter FERCR200_OLD into the relevant SAP transactions such as SE38 or SE80
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.
Selection Text: S_PERIO = D Period
Selection Text: S_GJAHR = D Fiscal year
Selection Text: R_PLAN = Plan
Selection Text: R_ACTUAL = Actual
Selection Text: P_VERSN = Version
Selection Text: P_KOKRS = Controlling area
Title: Processing History
Text Symbol: R11 = Suppress run ID
Text Symbol: R10 = Display run ID
Text Symbol: P01 = Data type
Text Symbol: P00 = Parameters
Text Symbol: KEY = |Symbol|Description |
Text Symbol: I07 = Procedure executed in test mode
Text Symbol: I06 = Procedure being processed
Text Symbol: I05 = Procedure inactive
Text Symbol: I04 = Procedure reversed
Text Symbol: I03 = Procedure terminated
Text Symbol: I02 = Procedure ended incomplete
Text Symbol: I01 = Procedure ended complete
Text Symbol: FE5 = Version
Text Symbol: FE4 = Plan
Text Symbol: FE3 = Actual
Text Symbol: FE1 = Controlling area
Text Symbol: B02 = | | |adjstmnt|costs |postings| | |down |files |data | |
Text Symbol: B01 = | | |cost |primary |costs |postings|postings|drill |archive |archived|ID |
Text Symbol: B00 = |Year|Per|Standard|Flow of |Traced |Variance|Direct |Prepare |Create |Delete |Run |
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
K_KOKRS_SET CALL FUNCTION 'K_KOKRS_SET' IMPORTING e_kokrs = p_kokrs.
K_KOKRS_READ CALL FUNCTION 'K_KOKRS_READ' EXPORTING kokrs = p_kokrs IMPORTING e_tka01 = tka01.
FERC_LOG_READ CALL FUNCTION 'FERC_LOG_READ' EXPORTING run_id = r0-run_id ferc_step = ferc-step EXCEPTIONS system_error = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.