FERCR200 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 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FERH - Processing history
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_WINDOW = Dialog window
Selection Text: R_PLAN = D Plan
Selection Text: R_ACTUAL = D Actual
Selection Text: P_VERSN = D Version
Title: Processing history
Text Symbol: 70M = Archive deletion
Text Symbol: 70S = ArchiveDel
Text Symbol: ACT = Actual
Text Symbol: FYR = Fiscal year
Text Symbol: P00 = Parameters
Text Symbol: P01 = Data type
Text Symbol: PAL = Parameters
Text Symbol: PAM = Parameters
Text Symbol: PAS = Parameters
Text Symbol: PID = Period identifier
Text Symbol: PLN = Plan
Text Symbol: RTY = Record type
Text Symbol: SEL = Please select the period to be processed
Text Symbol: STI = Status icons
Text Symbol: VER = Version
Text Symbol: 00L = Standard cost adjustment
Text Symbol: 00M = Std. Cost Adjustment
Text Symbol: 00S = StdCstAdj
Text Symbol: 10L = Flow of primary cost trace
Text Symbol: 10M = Flow of cost trace
Text Symbol: 10S = FlowOfCost
Text Symbol: 20L = Traced costs postings
Text Symbol: 20M = Traced postings
Text Symbol: 20S = TracePost
Text Symbol: 30L = Variance allocation postings
Text Symbol: 30M = Variance postings
Text Symbol: 30S = VarAlloctn
Text Symbol: 40L = Direct postings
Text Symbol: 40M = Direct postings
Text Symbol: 40S = DirectPost
Text Symbol: 50L = Drill down preparation
INCLUDE FERCD100.
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.
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting * i_interface_check = 'X' * I_BYPASSING_BUFFER = 'X' * I_BUFFER_ACTIVE = ' ' i_callback_program = disvariant-report i_callback_pf_status_set = 'ALV_STATUS_SET' i_callback_user_command = 'ALV_USER_COMMAND' i_callback_top_of_page = 'ALV_TOP_OF_PAGE' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * I_STRUCTURE_NAME = 'FERC_R0' * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = * I_GRID_SETTINGS = is_layout = gs_layout it_fieldcat = gt_fieldcat[] * IT_EXCLUDING = it_special_groups = gt_special_groups it_sort = gt_sort[] * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' is_variant = disvariant * it_events = gt_events[] * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = i_screen_start_column = gs_screen-start_column i_screen_start_line = gs_screen-start_line i_screen_end_column = gs_screen-end_column i_screen_end_line = gs_screen-end_line * IT_ALV_GRAPHICS = * IT_ADD_FIELDCAT = * IT_HYPERLINK = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = tables t_outtab = gt_r0.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting * i_bypassing_buffer = 'X' i_structure_name = 'FERC_R0' changing ct_fieldcat = rt_fieldcat.
REUSE_ALV_COMMENTARY_WRITE call function 'REUSE_ALV_COMMENTARY_WRITE' exporting it_list_commentary = gt_top_of_page.
FERC_LOG_READ call function 'FERC_LOG_READ' exporting run_id = gt_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.