SAP Reports / Programs

_RSECATTLOG_A_ARCHIVE SAP ABAP Report - Execution with TA SARA: Archive eCATT Logs







_RSECATTLOG_A_ARCHIVE 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 _RSECATTLOG_A_ARCHIVE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT _RSECATTLOG_A_ARCHIVE. "Basic submit
SUBMIT _RSECATTLOG_A_ARCHIVE AND RETURN. "Return to original report after report execution complete
SUBMIT _RSECATTLOG_A_ARCHIVE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: DEL_PROD = Delete w. Production Run Var.
Selection Text: DEL_TEST = Delete with Test Variant
Selection Text: NO_FILE = Do Not Create Archive File
Title: Execution with TA SARA: Archive eCATT Logs
Text Symbol: 102 = Technical Control
Text Symbol: 103 = This Is Data for Archiving with ECATT_LOG


INCLUDES used within this REPORT _RSECATTLOG_A_ARCHIVE

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ARCHIVE_OPEN_FOR_WRITE CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE' EXPORTING call_delete_job_in_test_mode = no_delete create_archive_file = create object = object comments = comments * DO_NOT_DELETE_DATA = ' ' * OUTPUT_SEL_SCREEN_WHEN_DIALOG = 'X' * OUTPUT_SEL_SCREEN_WHEN_BATCH = ' ' IMPORTING archive_handle = handle * EXCEPTIONS * internal_error = 1 * object_not_found = 2 * open_error = 3 * not_authorized = 4 * OTHERS = 5 .

ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = handle object_id = object_id * EXCEPTIONS * internal_error = 1 * wrong_access_to_archive = 2 * OTHERS = 3 .

ECATT_LOG_ARCHIVE_OBJECT CALL FUNCTION 'ECATT_LOG_ARCHIVE_OBJECT' EXPORTING archive_handle = handle ecatt_log_key = eclog_head_itab object_delete_flag = 'X' * EXCEPTIONS * wrong_access_to_archive = 1 * OTHERS = 2 .

ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = handle * IMPORTING * OBJECT_OFFSET = * ARCHIVE_NAME = EXCEPTIONS file_io_error = 1 internal_error = 2 open_error = 3 termination_requested = 4 wrong_access_to_archive = 5 OTHERS = 6 .

ARCHIVE_GIVE_STATISTICS CALL FUNCTION 'ARCHIVE_GIVE_STATISTICS' EXPORTING archive_handle = handle TABLES table = statistics * EXCEPTIONS * internal_error = 1 * OTHERS = 2 .

ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = handle * STATISTICS_ONLY_PER_RUN = ' ' * STATISTICS_ONLY_PER_FILE = ' ' * EXCEPTIONS * internal_error = 1 * OTHERS = 2 .

ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = handle * EXCEPTIONS * internal_error = 1 * wrong_access_to_archive = 2 * OTHERS = 3 .



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name _RSECATTLOG_A_ARCHIVE or its description.