RFTBLT02 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Transferring the Combination of Characteristic Values for Limits from Table VTBLS (Release <= 4...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 RFTBLT02 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TBLT02 - Limit: Move Data to Generated Table
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_CLEAR = Initialize Target Table First
Selection Text: P_COMMIT = DB Commit To
Selection Text: P_DIR = D Copy Direction of Limit Recs
Selection Text: P_MODE = Copy/Move Records
Selection Text: S_SLA = D Limit Type
Title: Limit Records: Move Data
Text Symbol: 001 = Move Limit Records to/from Generated Table(s)
Text Symbol: P01 = Access to generated tables in Customizing currently inactive
Text Symbol: P02 = Continue?
Text Symbol: P03 = Access to generated tables in Customizing currently active
Text Symbol: S01 = Selection
Text Symbol: S02 = Mode/Direction
Text Symbol: S03 = Technical Setting
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_LIMITTYPE_RANGE_READ CALL FUNCTION 'TB_LIMITTYPE_RANGE_READ' EXPORTING ir_sla = s_sla[] IMPORTING et_atla = lt_atla[].
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-p01 * DIAGNOSE_OBJECT = ' ' text_question = text-p02 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = l_answer * TABLES * PARAMETER = * EXCEPTIONS * TEXT_NOT_FOUND = 1 * OTHERS = 2 .
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-p03 * DIAGNOSE_OBJECT = ' ' text_question = text-p02 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = l_answer * TABLES * PARAMETER = * EXCEPTIONS * TEXT_NOT_FOUND = 1 * OTHERS = 2 .
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_CHARS_COPY CALL FUNCTION 'TB_LIMIT_CHARS_COPY' EXPORTING ir_sla = s_sla[] i_mode = p_mode i_direction = p_dir i_commit = p_commit i_clear_target = p_clear i_loghandle = lt_loghandle EXCEPTIONS error_no_sla = 1 table_not_existent = 2 error_call = 3.
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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFTBLT02 - Limit Records: Move Data RFTBLT02 - Limit Records: Move Data RFTBLT01 - Generation of Limit Record Tables for Limit Types RFTBLT01 - Generation of Limit Record Tables for Limit Types RFTBLSTCD - Delete Entries from Post-Run Update Table RFTBLSTCD - Delete Entries from Post-Run Update Table