RFTBLT04 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report integrates the analysis characteristics of the Market Risk Analyzer (->
If you would like to execute this report or see the full code listing simply enter RFTBLT04 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TBLT04 - Limit: Reorganiz. of Analysis Char.
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: Reorganize Analysis Characteristics
Text Symbol: 001 = Reorganize Analysis Characteristics and Dependent Tables
Text Symbol: 002 = Delete Analysis Characteristics, Reorganize Dependent Tables
Text Symbol: P01 = Reorganize (Only New Characteristics Inserted)
Text Symbol: P02 = Reorganize (Characteristics Changed/Deleted (With Mass Activation))
Text Symbol: P03 = Delete All Analysis Characteristics in Client
Text Symbol: S01 = Operating Mode
INCLUDE SBAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
BAL_GLB_SEARCH_LOG CALL FUNCTION 'BAL_GLB_SEARCH_LOG' EXPORTING i_s_log_filter = l_lfil * I_T_LOG_CONTEXT_FILTER = * I_T_LOG_HANDLE = IMPORTING e_t_log_handle = lt_loghandle[] EXCEPTIONS log_not_found = 1.
BAL_GLB_MEMORY_REFRESH CALL FUNCTION 'BAL_GLB_MEMORY_REFRESH' EXPORTING * I_AUTHORIZATION = i_refresh_all = ' ' i_t_logs_to_be_refreshed = lt_loghandle[] EXCEPTIONS not_authorized = 1 OTHERS = 2.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_logheader IMPORTING e_log_handle = lt_loghandle.
TB_LIMIT_CHARACTERISTICS_READ CALL FUNCTION 'TB_LIMIT_CHARACTERISTICS_READ' EXPORTING i_t_atla = lt_atla[] i_no_buffer = 'X' i_all_mandt = 'X' IMPORTING e_t_atlam = lt_atlam[].
TB_LIMIT_CHARS_GEN_FOR_MRM CALL FUNCTION 'TB_LIMIT_CHARS_GEN_FOR_MRM' EXPORTING i_incl_se14 = p_se14 i_del_option = p_del i_loghandle = lt_loghandle EXCEPTIONS error = 1 error_no_active = 2 error_no_mrm = 3 error_enqueue = 4 OTHERS = 5.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING * I_S_DISPLAY_PROFILE = i_t_log_handle = lt_loghandle[] * I_T_MSG_HANDLE = * I_S_LOG_FILTER = * I_S_MSG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_AMODAL = ' ' * IMPORTING * E_S_EXIT_COMMAND = * EXCEPTIONS * PROFILE_INCONSISTENT = 1 * INTERNAL_ERROR = 2 * NO_DATA_AVAILABLE = 3 * NO_AUTHORITY = 4 * OTHERS = 5 .
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = lt_loghandle EXCEPTIONS log_not_found = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = l_s_msg i_log_handle = u_loghandle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.