RFTBLNO1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for For 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 RFTBLNO1 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: Insert Note Indicator in Database
Text Symbol: T01 = Log for update of note flags on database
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_LIMIT_LSTRUC_2_RCHAR CALL FUNCTION 'TB_LIMIT_LSTRUC_2_RCHAR' EXPORTING I_LS = L_LS IMPORTING ER_CHAR = LR_CHAR.
TB_LIMIT_CHARS_MAIN_GEN CALL FUNCTION 'TB_LIMIT_CHARS_MAIN_GEN' EXPORTING I_ACCESS_MODE = '1' * I_INCLUDE_INITIAL_VALUES = I_ROWS = 1 * I_CLEAR_VTBLS = 'X' * I_MAX_FIELD = * IR_SLDFIL = IR_CHAR = LR_CHAR * IT_ENTRIES_LM = * IT_ENTRIES_LKEY = * IT_WHERE = * IMPORTING * E_MAX = L_MAX-RLV CHANGING CT_VTBLS = LT_LS[] * EXCEPTIONS * PARAM_ERROR = 1 * FNAME_ERROR = 2 * EXPRESSION_ERROR = 3 * TABLE_NOT_EXISTENT = 4 * OTHERS = 5 .
TB_LIMIT_CHARS_MAIN * CALL FUNCTION 'TB_LIMIT_CHARS_MAIN' * EXPORTING * I_ACCESS_MODE = '4' * I_LS = L_LS * CHANGING * CT_VTBLS = LT_LS[].
TB_CHECK_NOTICES_EXIST CALL FUNCTION 'TB_CHECK_NOTICES_EXIST' CHANGING CT_VTBLV0 = T_VTBLV0[] CT_VTBLSP = T_VTBLSP[] EXCEPTIONS OTHERS = 1.
TB_EXPOSURE_ENQUEUE CALL FUNCTION 'TB_EXPOSURE_ENQUEUE' EXPORTING I_SLA = T_ATLA-SLA I_MODE = 'S' EXCEPTIONS ENQUEUE = 1 OTHERS = 2.
TB_LIMITSETS_ENQUEUE CALL FUNCTION 'TB_LIMITSETS_ENQUEUE' EXPORTING I_CREATE = XFALSE I_SLA = T_ATLA-SLA EXCEPTIONS ENQUEUE = 1 OTHERS = 2.
TB_LIMITSETS_DEQUEUE CALL FUNCTION 'TB_LIMITSETS_DEQUEUE' EXPORTING I_SLA = T_ATLA-SLA EXCEPTIONS OTHERS = 1.
TB_EXPOSURE_DEQUEUE CALL FUNCTION 'TB_EXPOSURE_DEQUEUE' EXPORTING I_SLA = T_ATLA-SLA I_MODE = 'S' EXCEPTIONS OTHERS = 1.
TR_WRITE_LOG CALL FUNCTION 'TR_WRITE_LOG' EXPORTING IV_LOG_TYPE = 'DB' IV_LOGNAME_DB = G_LOGNAME TABLES IT_MSGS = T_MSGS[] EXCEPTIONS INVALID_INPUT = 1 FILE_ACCESS_ERROR = 2 DB_ACCESS_ERROR = 3 OTHERS = 4.
TR_READ_AND_DISPLAY_LOG CALL FUNCTION 'TR_READ_AND_DISPLAY_LOG' EXPORTING IV_LOG_TYPE = 'DB' IV_LOGNAME_DB = G_LOGNAME IV_TITLEBAR = TEXT-T01 EXCEPTIONS INVALID_INPUT = 1 ACCESS_ERROR = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.