FICRIC00 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 FICRIC00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CX0C00 - Check Ref. Integrity Customizing
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: SO_RVERS = D Version
Selection Text: SO_ITCLG = D Cons chart of accounts
Selection Text: SO_DIMEN = D Dimension
Selection Text: P_TEST = Test run
Selection Text: P_RECUR = Maximum number of check runs
Selection Text: P_KEYF = Check key fields only
Selection Text: P_DETAIL = Detailed output
Title: Check Referential Integrity of Customizing Tables
Text Symbol: T03 = Text
Text Symbol: T02 = Table row
Text Symbol: T01 = Technical settings
Text Symbol: T00 = Global selections
INCLUDE FICRIC0S. "WMS105414
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = 'LT_HEAD' i_structure_name = 'FC00_S_RIC_00' CHANGING ct_fieldcat = lt_fieldcat.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = 'LT_REP' i_structure_name = 'FC00_S_RIC_01' CHANGING ct_fieldcat = lt_fieldcat.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING it_fieldcat = lt_fieldcat i_tabname_header = 'LT_HEAD' i_tabname_item = 'LT_REP' is_keyinfo = ls_keyinfo TABLES t_outtab_header = lt_head t_outtab_item = lt_rep.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'DIMEN' E_DIMEN = l_DIMEN E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'BUNIT' E_DIMEN = l_DIMEN E_BUNIT = '*' E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'CONGR' E_DIMEN = l_DIMEN E_CONGR = '*' E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'RVERS' E_RVERS = l_RVERS E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'ITCLG' E_ITCLG = l_iTCLG E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'CACTT' e_dimen = l_dimen E_RVERS = l_RVERS E_ACTVT = l_act.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'ITCLGSUB' E_ACTVT = l_act.
FC_REF_INTEGRITY_CHECK CALL FUNCTION 'FC_REF_INTEGRITY_CHECK' EXPORTING e_mode = 'X' e_keyf_only = p_keyf e_table = i_table e_t_table = ct_data "use parameter e_t_table as input IMPORTING i_t_table = ct_tmp EXCEPTIONS illegal_input = 1 referential_integrity_error = 2 OTHERS = 3.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = i_table * STATE = 'A' langu = sy-langu TABLES dd03p_tab = lt_dd03p.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name =
langu = sy-langu IMPORTING dd02v_wa = ls_dd02v.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = i_table langu = sy-langu IMPORTING dd02v_wa = ls_dd02v.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = i_table TABLES dd03p_tab = lt_dd03p.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.