FICCOIB0 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 FICCOIB0 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CX6C3 - Check Customizing of Cons of Investm
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: PA_DIMEN = D Dimension
Selection Text: PA_ITCLG = D Cons Chart of Accounts
Selection Text: PA_PERID = D Period
Selection Text: PA_RVERS = D Version
Selection Text: PA_RYEAR = D Fiscal Year
Selection Text: SO_METH = D Method
Title: Check Customizing Settings for Consolidation of Investments
Text Symbol: B01 = Parameters
INCLUDE FICCON00.
INCLUDE FICCOIBS.
No SAP DATABASE tables are accessed within this REPORT code!
FC_CUSTOMIZING_CHECK_COI CALL FUNCTION 'FC_CUSTOMIZING_CHECK_COI' EXPORTING E_DIMEN = i_DIMEN E_ITCLG = i_ITCLG E_RVERS = i_RVERS E_PERID = i_PERID E_RYEAR = i_RYEAR ET_CMETH = lT_CMETH E_GLOBAL_CHECK_ONLY = lf_no_method_chk CHANGING CT_MESSAGE = lT_Msg.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'DIMEN' E_DIMEN = pa_dimen E_ACTVT = '03'.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'RVERS' E_RVERS = pa_rvers E_ACTVT = '03'.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING E_ID = 'ITCLG' E_ITCLG = pa_itclg E_ACTVT = '03'.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = c_log_handle.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = c_log_handle i_s_msg = ls_bal_msg.
BAL_DSP_PROFILE_NO_TREE_GET CALL FUNCTION 'BAL_DSP_PROFILE_NO_TREE_GET' IMPORTING e_s_display_profile = ls_profile.
BAL_CNTL_CREATE CALL FUNCTION 'BAL_CNTL_CREATE' EXPORTING i_container = io_container i_s_display_profile = ls_profile i_t_log_handle = lt_log_handle IMPORTING e_control_handle = c_control_handle.
BAL_CNTL_FREE CALL FUNCTION 'BAL_CNTL_FREE' CHANGING c_control_handle = c_control_handle.
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = c_log_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.