IFIFMCHA_GET_CONTROL_DATA is a standard ABAP INCLUDE 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 IFIFMCHA_GET_CONTROL_DATA 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FM_GET_ACTIVE_DIMENSIONS CALL FUNCTION 'FM_GET_ACTIVE_DIMENSIONS' IMPORTING e_grant_active = c_f_control_data-grant_active e_fund_active = c_f_control_data-fund_active e_bud_per_active = c_f_control_data-bud_per_active e_function_active = c_f_control_data-function_active e_measure_active = c_f_control_data-measure_active.
FM_SIGN_GET_FOR_EXPENDITURE CALL FUNCTION 'FM_SIGN_GET_FOR_EXPENDITURE' IMPORTING e_sign = c_f_control_data-exp_sign.
FM_GET_EXPERT_MODE CALL FUNCTION 'FM_GET_EXPERT_MODE' EXPORTING i_uname = c_f_control_data-uname i_programm = con_repid IMPORTING e_exception_active = c_f_control_data-flg_expert_mode.
FMFK_FIKRS_READ CALL FUNCTION 'FMFK_FIKRS_READ' EXPORTING ip_application_data = con_on ip_fikrs = c_f_control_data-fikrs ip_applc = applc_ca IMPORTING f_fm01 = l_f_fm01.
FM_CONTROL_DATA_GET CALL FUNCTION 'FM_CONTROL_DATA_GET' EXPORTING i_profil = l_f_fm01-fs_profil IMPORTING e_f_fmup00 = l_f_fmup00 TABLES t_fmup01 = l_t_fmup01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.