FICSGN00 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 FICSGN00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CX71 - Generation of cons group sets
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_A_ALL = Adjustment complete
Selection Text: PA_CONGR = Consolidation group
Selection Text: PA_DIMEN = Dimension
Selection Text: PA_LIST = Display log
Selection Text: PA_PERID = Period
Selection Text: PA_RVERS = Version
Selection Text: PA_RYEAR = Fiscal year
Selection Text: PA_UPD = Set Generation
Title: Set Generation for CG/CU Assignments
Text Symbol: 000 = The basic set
Text Symbol: 001 = The single dimension set
Text Symbol: 002 = has the following members:
Text Symbol: 003 = A total of
Text Symbol: 004 = sets to be generated:
Text Symbol: 005 = Basic sets
Text Symbol: 006 = Single dimension sets
Text Symbol: 007 = A total of
Text Symbol: 008 = sets generated:
INCLUDE FICCON00.
No SAP DATABASE tables are accessed within this REPORT code!
FC_GET_VERSIONS CALL FUNCTION 'FC_GET_VERSIONS' EXPORTING e_errflg = con_on e_ind_strvs = con_on e_rvers = pa_rvers IMPORTING i_strvs = gd_strvs.
FC_SET_DELETE CALL FUNCTION 'FC_SET_DELETE' CHANGING it_setid_del = it_setid_del.
FC_COIMETH_HIERARCHY CALL FUNCTION 'FC_COIMETH_HIERARCHY' EXPORTING e_dimen = pa_dimen e_congr = pa_congr e_rvers = pa_rvers e_ryear = pa_ryear e_perid = pa_perid e_rollup_cu = 'X' IMPORTING it_cg_mhry = it_cg_mhry it_cu_mhry = it_cu_mhry.
CONVERSION_EXIT_AFIMC_INPUT CALL FUNCTION 'CONVERSION_EXIT_AFIMC_INPUT' EXPORTING input = a_cghry-congr IMPORTING output = a_cghry-outcongr EXCEPTIONS OTHERS = 1.
CONVERSION_EXIT_AFIMC_INPUT CALL FUNCTION 'CONVERSION_EXIT_AFIMC_INPUT' EXPORTING input = a_cuhry-bunit IMPORTING output = a_cuhry-outbunit EXCEPTIONS OTHERS = 1.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING class = ' ' langu = sy-langu no_authority_check = ' ' setnr = it_tf187-setnr source_client = sy-mandt table = 'FIMC' IMPORTING set_header = a_setheader TABLES set_lines_basic = it_bset_old set_lines_single = it_sset_old.
FC_SETGEN_BUNITSETNAME_GET CALL FUNCTION 'FC_SETGEN_BUNITSETNAME_GET' EXPORTING e_dimen = pa_dimen e_congr = v_congr e_ryear = pa_ryear e_perid = pa_perid e_vers = v_strvs e_settyp = v_settyp e_typ = v_typ IMPORTING i_settext = a_settext.
G_SET_ENQUEUE CALL FUNCTION 'G_SET_ENQUEUE' EXPORTING setnr = r_setid.
G_SET_GENERATE CALL FUNCTION 'G_SET_GENERATE' EXPORTING set_header = a_setheader TABLES set_lines_basic = it_bset set_lines_single = it_sset EXCEPTIONS bad_formula = 1 double_field = 2 entry_not_found = 3 not_unique = 4 old_set_has_wrong_data_element = 5 old_set_has_wrong_type = 6 set_is_recursive = 7 setname_too_long = 8 subset_does_not_exist = 9 subset_has_wrong_class = 10 subset_has_wrong_data_element = 11 subset_has_wrong_type = 12 table_or_fieldname_missing = 13 temporary_in_permanent_set = 14 variable_does_not_exist = 15 variable_has_wrong_data_elem = 16 variable_has_wrong_table = 17 variable_has_wrong_type = 18 wrong_interval = 19 wrong_setclass = 20 subset_has_wrong_table = 21 OTHERS = 22.
G_SET_DEQUEUE CALL FUNCTION 'G_SET_DEQUEUE' EXPORTING setnr = r_setid.
FC_SETGEN_BUNITSETNAME_GET CALL FUNCTION 'FC_SETGEN_BUNITSETNAME_GET' EXPORTING e_dimen = pa_dimen e_congr = v_congr e_ryear = pa_ryear e_perid = pa_perid e_vers = v_strvs e_settyp = v_settyp e_typ = v_typ IMPORTING i_setheader = a_setheader i_setid = r_setid.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.