FAGLSKF_DISPLAY_PERIOD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Period Evaluation You can display for individual ledgers and company codes (split by period) the statistical key figures that were entered for the characteristics used by the ledger...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter FAGLSKF_DISPLAY_PERIOD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FAGLSKF3 - Stat. Key Figures: Period Evaluation
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: P_RBUKRS = D .
Selection Text: P_RLDNR = D .
Title: Display Statistical Key Figures per Period
Text Symbol: 001 = Selection Criterion (Part 1)
Text Symbol: 002 = Display Statistical Key Figures per Period
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FAGL_CHECK_IF_LEDGER_IS_GLFLEX CALL FUNCTION 'FAGL_CHECK_IF_LEDGER_IS_GLFLEX' EXPORTING i_rldnr = p_rldnr EXCEPTIONS not_found = 1 no_glflex_ledger = 2 glflex_rollup_ledger = 3 wrong_application = 4 OTHERS = 5.
G_GET_ORGANIZATIONAL_DATA CALL FUNCTION 'G_GET_ORGANIZATIONAL_DATA' EXPORTING i_rldnr = p_rldnr i_orgunit = p_rbukrs EXCEPTIONS no_info_found = 1 error_in_setup = 2 error_in_depld = 3 OTHERS = 4.
FAGLSKF_GET_TABINFO_FROM_APPL * CALL FUNCTION 'FAGLSKF_GET_TABINFO_FROM_APPL' * EXPORTING * i_rldnr = p_rldnr * IMPORTING * es_tabinfo = ls_tabinfo * es_skfappl = ls_skfappl * EXCEPTIONS * error_in_cust = 1 * OTHERS = 2.
FAGL_GET_GUID_FOR_LEDGER CALL FUNCTION 'FAGL_GET_GUID_FOR_LEDGER' EXPORTING id_rldnr = p_rldnr IMPORTING ed_guid = ld_guid EXCEPTIONS no_glflex_ledger = 1 OTHERS = 2.
RSS_PROGRAM_DELETE CALL FUNCTION 'RSS_PROGRAM_DELETE' EXPORTING i_uni_idc25 = g_guid25 i_program_class = 'FAGLSKF_2' i_with_variants = rssg_c_true i_no_commit = rssg_c_true EXCEPTIONS invalid_program_class = 1 deletion_rejected = 2 OTHERS = 3.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
RSS_PROGRAM_GENERATE CALL FUNCTION 'RSS_PROGRAM_GENERATE' EXPORTING i_uni_idc25 = g_guid25 i_program_class = 'FAGLSKF_2' i_program_title = ld_textpooltx i_force_generation = ld_force i_timestamp = g_timestamp i_db_commit = rssg_c_true i_use_metaclass = rssg_c_true i_with_header_comment = rssg_c_true IMPORTING e_program_name = g_program_name e_program_generated = g_program_generated EXCEPTIONS invalid_program_class = 1 invalid_unique_id = 2 generation_error = 3 template_not_found = 4 template_syntax_error = 5 program_syntax_error = 6 foreign_lock = 7 system_failure = 8 internal_error = 9.
FAGLSKF_GET_TABINFO_FROM_APPL CALL FUNCTION 'FAGLSKF_GET_TABINFO_FROM_APPL' EXPORTING i_rldnr = p_rldnr IMPORTING es_tabinfo = cs_tabinfo EXCEPTIONS error_in_cust = 1 OTHERS = 2.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = ld_tabname TABLES dfies_tab = ct_dfies EXCEPTIONS not_found = 1 OTHERS = 2.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'FAGL_GLU1_FIX_FIELDS' fieldname = 'RLDNR' searchhelp = 'FAGL_RLDNR_AND_ROLLUP_W_LEAD' * SHLPPARAM = ' ' dynpprog = 'FAGLSKF_DISPLAY_PERIOD' dynpnr = '1000' dynprofield = 'P_RLDNR' * STEPL = 0 * VALUE = ' ' * MULTIPLE_CHOICE = ' ' * DISPLAY = ' ' * SUPPRESS_RECORDLIST = ' ' * callback_program = ' ' * callback_form = ' ' * SELECTION_SCREEN = ' ' * TABLES * RETURN_TAB = EXCEPTIONS field_not_found = 1 no_help_for_field = 2 inconsistent_help = 3 no_values_found = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
FAGLSKF_DISPLAY_PERIOD - Display Statistical Key Figures per Period FAGLSKF_DISPLAY_PERIOD - Display Statistical Key Figures per Period FAGLSKF_DELETE_DATA_COMP_CODE - General Ledger: Reset Data for Statistical Key Figures FAGLSKF_DELETE_DATA_COMP_CODE - General Ledger: Reset Data for Statistical Key Figures FAGLSKF_CREATE_FUNCTION - Creation of Update Function Modules FAGLSKF_CREATE_FUNCTION - Creation of Update Function Modules