RELARCH_READ_ARCHIVE_EABL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display meter reading result archive (RELARCH_READ_ARCHIVE_EABL) You can use this report (or the underlying transaction EARDISP06) to display the contents of an archive file in a summary list format...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 RELARCH_READ_ARCHIVE_EABL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EARDISP06 - Display Archive: MR Results
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: Display Meter Reading Result Archive
Text Symbol: L01 = Read document number
Text Symbol: L02 = ADate
Text Symbol: L03 = ATime
Text Symbol: L04 = Storage type
Text Symbol: L05 = Stor. stat
Text Symbol: L06 = Meter reading reason
Text Symbol: L07 = Device
Text Symbol: L08 = LbyL
Text Symbol: L09 = Description of Meter Reading Reason
Text Symbol: L10 = Display Meter Reading Res. Archive
Text Symbol: L11 = Installation
INCLUDE: RELARCH_TYP,
RELARCH_CON,
RELARCH_TOP,
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_READ call function 'ARCHIVE_OPEN_FOR_READ' exporting object = co_arc_objeabl importing archive_handle = wa_arc_data-handle exceptions file_already_open = 1 no_files_available = 4 not_authorized = 7 others = 8.
ARCHIVE_GET_NEXT_OBJECT call function 'ARCHIVE_GET_NEXT_OBJECT' exporting archive_handle = wa_arc_data-handle exceptions end_of_file = 1 others = 6.
ARCHIVE_GET_TABLE call function 'ARCHIVE_GET_TABLE' exporting archive_handle = wa_arc_data-handle record_structure = 'EABL' all_records_of_object = 'X' automatic_conversion = 'X' tables table = yi_eabl exceptions end_of_object = 1 internal_error = 2 wrong_access_to_archive = 3 others = 4.
ARCHIVE_GET_TABLE call function 'ARCHIVE_GET_TABLE' exporting archive_handle = wa_arc_data-handle record_structure = 'EABLG' all_records_of_object = 'X' automatic_conversion = 'X' tables table = yi_eablg exceptions end_of_object = 1 internal_error = 2 wrong_access_to_archive = 3 others = 4.
ISU_DB_TE609T_SINGLE * call function 'ISU_DB_TE609T_SINGLE' * exporting * x_spras = sy-langu * x_ablesgr = xi_eablg-ablesgr * importing * y_te609t = wa_te609t * exceptions * not_found = 1 * others = 2.
ARCHIVE_CLOSE_FILE call function 'ARCHIVE_CLOSE_FILE' exporting archive_handle = wa_arc_data-handle exceptions internal_error = 1 wrong_access_to_archive = 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.
RELARCH_READ_ARCHIVE_EABL - Display Meter Reading Result Archive RELARCH_READ_ARCHIVE_EABL - Display Meter Reading Result Archive RELARCH_GLOBAL_FORMS - Global form routines for archiving RELARCH_GLOBAL_FORMS - Global form routines for archiving RELARCH_DEL_EMRDETAIL - Delete EMRDETAIL Entries for Archived Meter Reading Documents RELARCH_DEL_EMRDETAIL - Delete EMRDETAIL Entries for Archived Meter Reading Documents