FICSGN10 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 FICSGN10 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.
Selection Text: PA_DIMEN = Dimension
Selection Text: PA_ITCLG = Cons chart of accounts
Selection Text: PA_RVERS = Version
Selection Text: PA_SDIM = Delete unit sets selectively
Selection Text: PA_SDIMU = Delete unit sets of dimension
Selection Text: PA_SITC = Delete item sets of cons chart
Selection Text: PA_TEST = Test run
Selection Text: SO_PERID = Period
Selection Text: SO_RVERS = D Version
Selection Text: SO_RYEAR = Fiscal year
Title: Delete Generated Sets (Units/Items)
Text Symbol: 100 = Do you really want to delete generated sets?
Text Symbol: 101 = Delete generated ECCS hierarchy sets
Text Symbol: 201 = The following sets were deleted:
Text Symbol: 202 = Could not delete the following sets:
Text Symbol: B01 = Unit Sets: Generated from Hierarchy Maintenance
Text Symbol: B02 = Item Sets: Generated from Hierarchy Maintenance
Text Symbol: B03 = Technical Settings
INCLUDE FICSGN1S.
No SAP DATABASE tables are accessed within this REPORT code!
FC_SET_DELETE CALL FUNCTION 'FC_SET_DELETE' CHANGING it_setid_del = it_setid_del.
G_SET_AUTHORITY_CHECK CALL FUNCTION 'G_SET_AUTHORITY_CHECK' EXPORTING actvt = '06'.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING e_id = 'DIMEN' e_dimen = pa_dimen.
FC_AUTHORITY_CHECK CALL FUNCTION 'FC_AUTHORITY_CHECK' EXPORTING e_id = 'ITCLG' e_itclg = pa_itclg.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' textline1 = text-100 titel = text-101 IMPORTING answer = ld_answer EXCEPTIONS OTHERS = 0.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = '0302' shortname = '0*' eccs_itclg = pa_itclg TABLES matching_sets = it_setlist.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = '0301' shortname = '0*' eccs_dimen = pa_dimen TABLES matching_sets = it_setlist.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = gc_status i_structure_name = gc_sname1 is_layout = gs_layout it_fieldcat = gt_fieldcat1 i_save = gc_x it_events = gt_events TABLES t_outtab = gt_setid_del EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_structure_name = ic_t_sname CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_events EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = gc_status is_layout = gs_layout it_fieldcat = gt_fieldcat2 it_events = gt_events TABLES t_outtab = gt_setid_ndel EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.