RELADB00 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 RELADB00 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.
Selection Text: DATEFROM = D .
Selection Text: DATE_TO = D .
Selection Text: EXT_NUMB = D .
Selection Text: MSGID = D .
Selection Text: MSGNO = D .
Selection Text: MSGTY = D .
Selection Text: MSGV1 = D .
Selection Text: MSGV2 = D .
Selection Text: MSGV3 = D .
Selection Text: MSGV4 = D .
Selection Text: OBJECT = D .
Selection Text: PROGRAM = D .
Selection Text: SUBOBJ = D .
Selection Text: TCODE = D .
Selection Text: TIMEFROM = D .
Selection Text: TIME_TO = D .
Selection Text: USER = D .
Title: Evaluate Application Log
No SAP DATABASE tables are accessed within this REPORT code!
BAL_FILTER_CREATE call function 'BAL_FILTER_CREATE' exporting i_object = object i_subobject = subobj " %%%%%%% Feldname max. 8 Zeichen
BAL_DB_SEARCH call function 'BAL_DB_SEARCH' exporting i_s_log_filter = l_s_log_filter importing e_t_log_header = l_t_log_header exceptions others = 1.
BAL_LOG_EXIST call function 'BAL_LOG_EXIST' exporting i_log_handle =
-log_handle exceptions log_not_found = 1.
BAL_DB_LOAD call function 'BAL_DB_LOAD' exporting i_t_log_header = l_t_log_header_sel i_do_not_load_messages = space importing e_t_log_handle = l_t_log_loaded exceptions others = 0.
BAL_DB_LOAD call function 'BAL_DB_LOAD' exporting i_t_log_header = l_t_log_header_relevant " %%%%%%% i_do_not_load_messages = read_from_db_hdr importing e_t_log_handle = l_t_log_loaded exceptions others = 0.
BAL_ARCHIVE_SEARCH call function 'BAL_ARCHIVE_SEARCH' exporting i_s_log_filter = l_s_log_filter i_do_not_load_messages = read_from_db_hdr importing e_s_arcdata = l_s_arcdata exceptions log_not_found = 1 read_error_from_archive = 2.
BAL_ARCHIVE_LOAD call function 'BAL_ARCHIVE_LOAD' exporting i_s_arcdata = l_s_arcdata i_do_not_load_messages = read_from_db_hdr importing e_t_log_handle = l_t_log_loaded exceptions others = 0.
BAL_DSP_PROFILE_SINGLE_LOG_GET call function 'BAL_DSP_PROFILE_SINGLE_LOG_GET' importing e_s_display_profile = l_s_display_profile exceptions others = 0.
BAL_DSP_PROFILE_STANDARD_GET call function 'BAL_DSP_PROFILE_STANDARD_GET' importing e_s_display_profile = l_s_display_profile exceptions others = 0.
BAL_DSP_LOG_DISPLAY call function 'BAL_DSP_LOG_DISPLAY' exporting i_t_log_handle = l_t_log_handle i_s_display_profile = l_s_display_profile i_srt_by_timstmp = i_srt_by_timstmp exceptions no_authority = 1 others = 2.
BAL_GLB_MEMORY_REFRESH call function 'BAL_GLB_MEMORY_REFRESH' exporting i_refresh_all = false i_t_logs_to_be_refreshed = l_t_log_loaded exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.