FERCR015 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 FERCR015 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: R_PLAN = Plan
Selection Text: R_ACTUAL = Actual
Selection Text: P_VERSN = D Version
Selection Text: P_PERIO = D Period
Selection Text: P_KOKRS = D CO area
Selection Text: P_GJAHR = D Fiscal year
Selection Text: P_BUDAT = D Posting date
Selection Text: F_TEST = D Test run
Selection Text: F_LOG = D Create log
Title: Correct Flow of Cost Trace With Errors
Text Symbol: Q00 = Process with
Text Symbol: P70 = Create log
Text Symbol: P60 = Test run
Text Symbol: P50 = Version
Text Symbol: P40 = Plan
Text Symbol: P30 = Actual
Text Symbol: P20 = Posting date
Text Symbol: P11 = /
Text Symbol: P10 = Period
Text Symbol: P00 = Parameters
Text Symbol: IND = Assign indicators
Text Symbol: 003 = Save changes?
Text Symbol: 002 = Data was changed
Text Symbol: 001 = Leave maintenance
INCLUDE FERCD000.
INCLUDE FERCF000.
No SAP DATABASE tables are accessed within this REPORT code!
FERC_DEFAULT_GET call function 'FERC_DEFAULT_GET' importing CONTROLLING_AREA = P_KOKRS PERIOD = P_PERIO YEAR = P_GJAHR LAST_DAY_OF_PERIOD = P_BUDAT exceptions others = 0.
MESSAGES_INITIALIZE call function 'MESSAGES_INITIALIZE'.
FERC_MESSAGE_STORE call function 'FERC_MESSAGE_STORE' exporting ZEILE = IFERC_L1-RUN_NO ARBGB = IFERC_L1-ARBGB MSGTY = MESG-MSGTY MSGV1 = IFERC_L1-MSGV1 MSGV2 = IFERC_L1-MSGV2 MSGV3 = IFERC_L1-MSGV3 MSGV4 = IFERC_L1-MSGV4 TXTNR = IFERC_L1-TXTNR.
MESSAGES_STOP call function 'MESSAGES_STOP' exceptions others = 4.
MESSAGES_SHOW call function 'MESSAGES_SHOW' exporting CORRECTIONS_OPTION = CORRECTION_POSSIBLE CORRECTIONS_FUNC_TEXT = 'Assign indicators'(IND) OBJECT = SY-TITLE * show_linno = 'X' I_USE_GRID = FERC_C0-LOG_GRID * i_amodal_window = ferc_c0-log_amodal importing CORRECTIONS_WANTED = CORRECTION_POSSIBLE.
POPUP_TO_CONFIRM_STEP call function 'POPUP_TO_CONFIRM_STEP' exporting * DEFAULTOPTION = 'Y' TEXTLINE1 = TEXT-002 TEXTLINE2 = TEXT-003 TITEL = TEXT-001 importing ANSWER = ANSWER.
MESSAGES_INITIALIZE call function 'MESSAGES_INITIALIZE'.
FERC_MESSAGE_STORE call function 'FERC_MESSAGE_STORE' exporting MSGTY = 'I' TXTNR = '326' ZEILE = '800'.
OBJECT_IDENTIFICATION_GET call function 'OBJECT_IDENTIFICATION_GET' exporting NO_KOKRS = 'X' OBJNR = IFERC_C6-OBJNR importing IDENT_TXT15 = TBO01-TXT15 IDENT_OBJID = SY-MSGV3.
FERC_MESSAGE_STORE call function 'FERC_MESSAGE_STORE' exporting ARBGB = 'F=' MSGTY = 'I' MSGV1 = IFERC_C6-IND MSGV2 = TBO01-TXT15 MSGV3 = SY-MSGV3 TXTNR = '327' ZEILE = '800'.
FERC_LOG_WRITE call function 'FERC_LOG_WRITE' exporting RUN_ID = FERC-RUN_ID RUN_NO = FERC_R0-EX_10 "ferc-run_no FERC_STEP = '10' "ferc-step RECORD_TYPE = FERC-RRCTY STATUS = 'W' " ferc-msgty EXPORT_MESSAGES = 'X'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.