REAWRITE_LOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Summarizing the results of a BRE run Control tool -> You can access an overview of the results of all BRE runs that have ever been executed...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 REAWRITE_LOG into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BLOG - Overview of BRE Run
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: SORTBYID = Sort Acc. to Identification
Selection Text: SETNO = Backlog Set
Selection Text: RUNID = Run ID ParlBRE
Selection Text: IDENTIF = Identification
Selection Text: EXTNO = External ID
Selection Text: ACTCAT = Activity
Title: Overview BRE Run
Text Symbol: 009 = ( Identification: )
Text Symbol: 008 = ( Backlog Set: )
Text Symbol: 007 = New Ext. Identif.
Text Symbol: 006 = New Identification:
Text Symbol: 005 = New Backlog Set:
Text Symbol: 004 = New Activity:
Text Symbol: 003 = Run ID ParlBRE
Text Symbol: 002 = Report Compltd
Text Symbol: 001 = No Entries Found
INCLUDE IBRECONST.
INCLUDE IEAMSG00.
INCLUDE MEAMAC00.
INCLUDE IBRRCOMTEX.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_BRELOGS_RANGE CALL FUNCTION 'ISU_DB_BRELOGS_RANGE' TABLES XR_ACTCAT = TAB_ACTCAT XR_SETNO = TAB_SETNO XR_EXTNUMBER = TAB_EXTNO XR_IDENTIF = TAB_IDENTIF XR_RUNID = TAB_RUNID YT_BRE_LOGS = I_ISU_BRE_LOGS EXCEPTIONS NOT_FOUND = 1 SYSTEM_ERROR = 2 OTHERS = 3.
APPL_LOG_DISPLAY CALL FUNCTION 'APPL_LOG_DISPLAY' EXPORTING OBJECT = 'IUBRE' SUBOBJECT = ' ' EXTERNAL_NUMBER = EXTERNAL_NUMBER DATE_FROM = DATE_INF TIME_FROM = '000000' DATE_TO = DATE_SUP TIME_TO = TIME_TO SUPPRESS_SELECTION_DIALOG = 'X' EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
ISU_DB_PROC_BRE_SELECT CALL FUNCTION 'ISU_DB_PROC_BRE_SELECT' EXPORTING X_RUNID = W_ISU_BRE_LOGS-RUNID X_MAXCOUNT = 1 EXCEPTIONS NOT_FOUND = 1 SYSTEM_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.