FERCVIEW 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 FERCVIEW into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FECC - Control of messages by the user
FEC6 - Regulatory indicator assignment
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: ACTION = D Input
Selection Text: EXC_TYPE = D Exception type
Selection Text: NEXT = D Reg. Procedure
Selection Text: RUN_ID = D Reg. run ID
Selection Text: VIEWNAME = D Table/View
Title: Call View Maintenance
Text Symbol: A01 = Display parameters
Text Symbol: A02 = Parameters are already archived.
Text Symbol: A03 = Should the system read from archive
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING viewname = viewname TABLES sellist = sellist x_header = x_header x_namtab = x_namtab EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING titel = 'Display parameters '(a01) textline1 = 'Parameters are already archived. '(a02)
VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING view_name = viewname action = 'E' enqueue_mode = 'E' enqueue_range = 'X' TABLES sellist = sellist EXCEPTIONS foreign_lock = 1 system_failure = 2 table_not_found = 5 client_reference = 7.
ENQUEUE_E_TABLEE CALL FUNCTION 'ENQUEUE_E_TABLEE' EXPORTING tabname = rstable-tabname varkey = rstable-varkey EXCEPTIONS foreign_lock = 4.
VIEWPROC_V_FERC_C6 CALL FUNCTION 'VIEWPROC_V_FERC_C6' EXPORTING fcode = 'EDIT' view_action = 'U' "action view_name = viewname IMPORTING * LAST_ACT_ENTRY = ucomm = sy-ucomm * update_required = status_update TABLES corr_keytab = corrkey dba_sellist = sellist dpl_sellist = sellist excl_cua_funct = exclfun extract = extract total = total x_header = x_header x_namtab = x_namtab EXCEPTIONS no_value_for_subset_ident = 1 missing_corr_number = 2 saving_correction_failed = 3 OTHERS = 4.
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING view_action = action view_name = viewname EXCEPTIONS no_authority = 1 no_clientindependent_authority = 2.
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING view_action = 'S' view_name = viewname EXCEPTIONS no_authority = 1.
DEQUEUE_E_TABLEE CALL FUNCTION 'DEQUEUE_E_TABLEE' EXPORTING tabname = rstable-tabname varkey = rstable-varkey.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.