RFRECALOGDISPLAY 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 RFRECALOGDISPLAY into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RECALP - Param. for Log Overview (Internal)
RECALA_USER - Analyze Own Logs
RECALA - Analyze Logs
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_DATEFR = D .
Selection Text: P_DATETO = D .
Selection Text: P_EXT = D .
Selection Text: P_OBJ = D .
Selection Text: P_PROG = D .
Selection Text: P_SUB = D .
Selection Text: P_TCODE = D .
Selection Text: P_TIMEFR = D .
Selection Text: P_TIMETO = D .
Selection Text: P_USER = D .
Title: Analyze Logs
Text Symbol: BL1 = Log ID
Text Symbol: BL2 = Time Restriction
Text Symbol: BL3 = Created By
Text Symbol: L01 = From (Date/Time)
Text Symbol: L02 = To (Date/Time)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAL_DSP_TXT_OBJECT_READ CALL FUNCTION 'BAL_DSP_TXT_OBJECT_READ' EXPORTING * I_LANGU = SY-LANGU i_object = p_obj IMPORTING e_text = cmm_obj.
BAL_DSP_TXT_SUBOBJECT_READ CALL FUNCTION 'BAL_DSP_TXT_SUBOBJECT_READ' EXPORTING * I_LANGU = SY-LANGU i_object = p_obj i_subobject = p_sub IMPORTING e_text = cmm_sub.
RECA_GUI_LOGLIST_APPL CALL FUNCTION 'RECA_GUI_LOGLIST_APPL' EXPORTING id_object = p_obj id_subobject = p_sub id_external_number = p_ext id_date_from = p_datefr id_time_from = p_timefr id_date_to = p_dateto id_time_to = p_timeto id_user = p_user id_tcode = p_tcode id_prog = p_prog.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.