S3LIKPAU 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: Sequential Read Program Program for sequential reading of archived delivery documents At least one archive file must be available to execute the read program...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 S3LIKPAU 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
Title: Archiving deliveries: Read program
Text Symbol: 105 = Description
Text Symbol: 104 = Unit of meas.
Text Symbol: 103 = Dlv. qty
Text Symbol: 102 = Material
Text Symbol: 101 = Item
Text Symbol: 091 = Vendor master is not available
Text Symbol: 090 = Customer master not available
Text Symbol: 007 = Delivery date
Text Symbol: 006 = Vendor
Text Symbol: 005 = Total weight
Text Symbol: 004 = Delivery
Text Symbol: 003 = No.of Packages
Text Symbol: 002 = Goods issue date
Text Symbol: 001 = Ship-to party
INCLUDE ARCHCOMO.
INCLUDE S3LIKPTB.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_READ call function 'ARCHIVE_OPEN_FOR_READ' exporting object = 'RV_LIKP' importing archive_handle = archive_handle.
ARCHIVE_GET_INFORMATION call function 'ARCHIVE_GET_INFORMATION' exporting archive_handle = archive_handle importing adk_version = adk_version exceptions internal_error = 1 wrong_access_to_archive = 2 others = 3.
ARCHIVE_GET_NEXT_OBJECT call function 'ARCHIVE_GET_NEXT_OBJECT' exporting archive_handle = archive_handle importing object_id = obj_id object_offset = obj_offset archive_name = arc_name exceptions end_of_file = 01.
ARCHIVE_GET_NEXT_RECORD call function 'ARCHIVE_GET_NEXT_RECORD' exporting archive_handle = archive_handle importing record_ref = gf_record_ref record_flags = arc_buffer-flags record_structure = arc_buffer-rname exceptions end_of_object = 01 wrong_access_to_archive = 02.
ARCHIVE_CLOSE_FILE call function 'ARCHIVE_CLOSE_FILE' exporting archive_handle = archive_handle.
VIEW_KUWEV call function 'VIEW_KUWEV' exporting comwa = vtcomag importing wewa = kuwev exceptions no_kna1 = 1 others = 20.
VIEW_KUPAV call function 'VIEW_KUPAV' exporting comwa = vtcomag importing pawa = kupav exceptions no_lfa1 = 1 others = 20.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.