RWARCH03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report program restores all the deleted data contained in the archive file to the database...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 RWARCH03 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WSR3 - Reset assortment and listing
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: PA_TEST = Reload run in test mode
Title: Reload assortment objects
Text Symbol: 071 = Reset Program
Text Symbol: 064 = Result
Text Symbol: 063 = Error
Text Symbol: 062 = Information
Text Symbol: 061 = Archiving of Listing Conditions and Modules
Text Symbol: 026 = Option
Text Symbol: 025 = Program RWARCH03 starts at:
Text Symbol: 024 = AG
Text Symbol: 023 = IG
Text Symbol: 022 = Generic Material
Text Symbol: 021 = MT
Text Symbol: 020 = Promotion
Text Symbol: 018 = Sales Unit
Text Symbol: 017 = Material Group
Text Symbol: 016 = Created
Text Symbol: 015 = A
Text Symbol: 014 = Module name
Text Symbol: 013 = Assortment
Text Symbol: 012 = To
Text Symbol: 011 = From
Text Symbol: 010 = Material
Text Symbol: 009 = Module
Text Symbol: 008 = Module names reset:
Text Symbol: 007 = Module item records reset:
Text Symbol: 006 = Module header records reset:
Text Symbol: 005 = Listing conditions reset:
Text Symbol: 004 = Reset Assignments: Module to Assortment:
Text Symbol: 001 = Archiving of listing conditions and modules: reset program
INCLUDE RWARCHTP.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_MOVE CALL FUNCTION 'ARCHIVE_OPEN_FOR_MOVE' EXPORTING OBJECT = CON_WLK_ARCH TEST_MODE = PA_TEST IMPORTING ARCHIVE_READ_HANDLE = READ_HANDLE_LK ARCHIVE_WRITE_HANDLE = WRITE_HANDLE_LK.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING ARCHIVE_HANDLE = WRITE_HANDLE_LK.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.