RGFLPST 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 RGFLPST 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.
Title: Program RGFLPST
INCLUDE RGFLPSTTOP . " GLOBAL DATA
INCLUDE RFEWUI01.
No SAP DATABASE tables are accessed within this REPORT code!
FAGL_CHECK_GLFLEX_ACTIVE * CALL FUNCTION 'FAGL_CHECK_GLFLEX_ACTIVE' * IMPORTING * e_glflex_active = ld_flex_active * EXCEPTIONS * error_in_setup = 0 * OTHERS = 0.
EWU_STATUS_UPDATE CALL FUNCTION 'EWU_STATUS_UPDATE' EXPORTING status = 'OK' EXCEPTIONS no_paket_entry = 0 foreign_lock = 0 system_failure = 0 no_program_entry = 0 wrong_call = 0 active_paket_not_found = 0 update_denied = 0.
EWU_STATUS_UPDATE CALL FUNCTION 'EWU_STATUS_UPDATE' EXPORTING status = 'ERR' EXCEPTIONS no_paket_entry = 0 foreign_lock = 0 system_failure = 0 no_program_entry = 0 wrong_call = 0 active_paket_not_found = 0 update_denied = 0 OTHERS = 0.
FAGL_CHECK_GLFLEX_ACTIVE CALL FUNCTION 'FAGL_CHECK_GLFLEX_ACTIVE' EXPORTING id_bukrs = ls_bukrs-bukrs IMPORTING e_glflex_active = ld_active_bukrs EXCEPTIONS error_in_setup = 1 OTHERS = 2.
FAGL_DELETE_LEDGER_COMPCODE CALL FUNCTION 'FAGL_DELETE_LEDGER_COMPCODE' EXPORTING id_rldnr = ld_rldnr_lead id_bukrs = ls_bukrs-bukrs id_ryear = ld_year id_no_period_zero = 'X' EXCEPTIONS ledger_not_found = 1 no_data_found = 2 OTHERS = 3.
EWU_PROTOCOL_APPEND CALL FUNCTION 'EWU_PROTOCOL_APPEND' EXPORTING level = '2' msgty = 'W' langu = sy-langu msgid = 'FAGL_EMU' msgno = '028' newobj = ' ' msgv1 = ld_ledger_nl msgv2 = ls_bukrs-bukrs msgv3 = ld_year EXCEPTIONS protocol_error = 0 OTHERS = 0.
FAGL_SUBSEQ_POSTING CALL FUNCTION 'FAGL_SUBSEQ_POSTING' EXPORTING it_compcode_range = lt_ra_bukrs it_fiscyear_range = lt_ra_year it_target_ledger = lt_target_ledger ib_process_splitter = space ib_check_records = space ib_test = space EXCEPTIONS error_message = 1 OTHERS = 2.
EWU_PROTOCOL_APPEND CALL FUNCTION 'EWU_PROTOCOL_APPEND' EXPORTING level = '2' msgty = sy-msgty langu = sy-langu msgid = sy-msgid msgno = sy-msgno newobj = ' ' msgv1 = sy-msgv1 msgv2 = sy-msgv2 msgv3 = sy-msgv3 msgv4 = sy-msgv4 EXCEPTIONS protocol_error = 0 OTHERS = 0.
G_MESS_GIVE_ERROR_PROTOCOL CALL FUNCTION 'G_MESS_GIVE_ERROR_PROTOCOL' IMPORTING et_error_position = lt_mess_error_position.
EWU_PROTOCOL_APPEND CALL FUNCTION 'EWU_PROTOCOL_APPEND' EXPORTING level = '2' msgty = ls_mess_error_position-msgty langu = sy-langu msgid = ls_mess_error_position-arbgb msgno = ld_symsgno newobj = ' ' msgv1 = ls_mess_error_position-msgv1 msgv2 = ls_mess_error_position-msgv2 msgv3 = ls_mess_error_position-msgv3 msgv4 = ls_mess_error_position-msgv4 EXCEPTIONS protocol_error = 0 OTHERS = 0.
EWU_PROTOCOL_WRITE CALL FUNCTION 'EWU_PROTOCOL_WRITE' EXCEPTIONS error_in_function_call = 0 table_empty = 0 sql_error = 0 wrong_call = 0 OTHERS = 0.
EWU_STATUS_UPDATE CALL FUNCTION 'EWU_STATUS_UPDATE' EXPORTING status = 'ERR' EXCEPTIONS no_paket_entry = 0 foreign_lock = 0 system_failure = 0 no_program_entry = 0 wrong_call = 0 active_paket_not_found = 0 update_denied = 0 OTHERS = 0.
EWU_STATUS_UPDATE CALL FUNCTION 'EWU_STATUS_UPDATE' EXPORTING status = 'WRG' EXCEPTIONS no_paket_entry = 0 foreign_lock = 0 system_failure = 0 no_program_entry = 0 wrong_call = 0 active_paket_not_found = 0 update_denied = 0 OTHERS = 0.
EWU_STATUS_UPDATE CALL FUNCTION 'EWU_STATUS_UPDATE' EXPORTING status = 'OK' EXCEPTIONS no_paket_entry = 0 foreign_lock = 0 system_failure = 0 no_program_entry = 0 wrong_call = 0 active_paket_not_found = 0 update_denied = 0 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.