S3LIKPRL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Archiving Delivery Documents in SD: Reload Program Program to reload archived delivery documents into the database Reloading delivery documents can not be done in the standard system and is therefore not available in archiving management (transaction SARA )...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 S3LIKPRL 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: DD_VBELN = Document selection
Selection Text: TESTLAUF = Test run
Title: Archiving deliveries: Reload program
INCLUDE ARCHCOMO.
INCLUDE S3LIKPTB.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_MOVE call function 'ARCHIVE_OPEN_FOR_MOVE' exporting object = 'RV_LIKP' test_mode = testlauf importing archive_read_handle = handle_read archive_write_handle = handle_write.
ARCHIVE_GET_INFORMATION call function 'ARCHIVE_GET_INFORMATION' exporting archive_handle = archive_handle importing adk_version = adk_version archive_creation_release = archive_creation_release exceptions internal_error = 1 wrong_access_to_archive = 2 others = 3.
ARCHIVE_GET_NEXT_OBJECT call function 'ARCHIVE_GET_NEXT_OBJECT' exporting archive_handle = handle_read importing object_id = arc_object_id exceptions end_of_file = 01.
ARCHIVE_GET_NEXT_RECORD call function 'ARCHIVE_GET_NEXT_RECORD' exporting archive_handle = handle_read importing record_flags = arc_buffer-flags record_structure = arc_buffer-rname record_ref = gf_record_ref exceptions end_of_object = 01.
ARCHIVE_RELOAD_OBJECT_DATA call function 'ARCHIVE_RELOAD_OBJECT_DATA' exporting archive_handle = handle_read.
ARCHIVE_GIVE_STATISTICS call function 'ARCHIVE_GIVE_STATISTICS' exporting archive_handle = handle_read tables table = gt_statistics exceptions internal_error = 1 wrong_access_to_archive = 2 others = 3.
ARCHIVE_SAVE_OBJECT call function 'ARCHIVE_SAVE_OBJECT' exporting archive_handle = handle_write.
ARCHIVE_WRITE_STATISTICS call function 'ARCHIVE_WRITE_STATISTICS' "n_v_531019 exporting archive_handle = handle_read statistics_only_per_run = ' ' statistics_only_per_file = ' ' exceptions internal_error = 1 wrong_access_to_archive = 2 others = 3.
ARCHIVE_CLOSE_FILE call function 'ARCHIVE_CLOSE_FILE' exporting archive_handle = handle_read.
RV_DELIVERY_INDEX_SAVE call function 'RV_DELIVERY_INDEX_SAVE' "470 * Lines deleted n_553703 tables fxlikp_t = xlikp fxlips = xlips fxvbfa = xvbfa fxvbpa = xvbpa fxvbuk = xvbuk fxvbup = xvbup.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.