FERCR150 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The reversal program allows the user to reverse all of the regulatory postings and to delete all entries in the regulatory reporting tables...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 FERCR150 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 = 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_TRC = Traced accounts
Selection Text: F_TEST = D Test run
Selection Text: F_DIR = Direct accounts
Title: Deletion of drill down data
Text Symbol: S50 = Drill down preparation
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: H00 = Drill down table deletion statistics
Text Symbol: GUI = Deleting
002 settl.per. ccent order accou rec. period
001 BALANCE no valid Missing in T9q12 no valid
INCLUDE FERCD000.
INCLUDE FERCD100.
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.
ARCHIVE_GET_CUSTOMIZING_DATA CALL FUNCTION 'ARCHIVE_GET_CUSTOMIZING_DATA' EXPORTING object = ferc0_object IMPORTING commit_count_for_delete_prg = del_block EXCEPTIONS object_not_found = 0.
FERC_MESSAGE_STORE CALL FUNCTION 'FERC_MESSAGE_STORE' EXPORTING zeile = ferc-zeile arbgb = ferc0_arbgb msgty = 'I' txtnr = '037'.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = gui_per text = sy-lisel.
FERC_MESSAGE_STORE CALL FUNCTION 'FERC_MESSAGE_STORE' EXPORTING zeile = ferc-zeile arbgb = ferc0_arbgb msgty = 'S' msgv1 = ferc_proc txtnr = '053'.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * i_bypassing_buffer = 'X' i_structure_name = 'FERC_SFT' CHANGING ct_fieldcat = rt_fieldcat.
RS_DD_FIEL_SHOW CALL FUNCTION 'RS_DD_FIEL_SHOW' EXPORTING eutype = 'T' objname = gt_outtab-tabname.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_top_of_page.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.