RAARCH03 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 RAARCH03 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: PA_TEST = Test run
Title: Asset Accounting Archiving - Reload Program
Text Symbol: 001 = Archive key
Text Symbol: 002 = FI-AA - Archiving - Reload Session
Text Symbol: 004 = <
Text Symbol: 005 = <<
Text Symbol: 011 = CoCode Company code
Text Symbol: 040 = Statistics
Text Symbol: 041 = Reload. asset Reloaded assets
Text Symbol: 042 = Assets not rel. Assets not reloaded
Text Symbol: 043 = Annual Values
Text Symbol: 044 = Transactions
Text Symbol: 045 = Pstd.values
Text Symbol: 600 = Program started by user:
Text Symbol: 601 = Start date
Text Symbol: 602 = Start time
Text Symbol: 603 = Stop date
Text Symbol: 604 = Stop time
Text Symbol: 610 = No assets were reloaded
Text Symbol: 700 = Errors occurred while reloading.
INCLUDE RAARCHTP.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_MOVE CALL FUNCTION 'ARCHIVE_OPEN_FOR_MOVE' EXPORTING object = con_anla_arch test_mode = pa_test IMPORTING archive_read_handle = archive_read_handle archive_write_handle = archive_write_handle.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = archive_write_handle.
ARCHIVE_RELOAD_OBJECT_DATA CALL FUNCTION 'ARCHIVE_RELOAD_OBJECT_DATA' EXPORTING archive_handle = v_handle.
TEXT_RELOAD_ARCHIVE_OBJ CALL FUNCTION 'TEXT_RELOAD_ARCHIVE_OBJ' EXPORTING archive_handle = v_handle.
CHANGEDOCU_RELOAD_ARCHIVE_OBJ CALL FUNCTION 'CHANGEDOCU_RELOAD_ARCHIVE_OBJ' EXPORTING archive_handle = v_handle.
ARCHIVE_GIVE_STATISTICS CALL FUNCTION 'ARCHIVE_GIVE_STATISTICS' EXPORTING archive_handle = archive_read_handle TABLES table = gt_stat.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = v_write_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RAARCH03 - Asset Accounting Archiving - Reload Program RAARCH03 - Asset Accounting Archiving - Reload Program RAARCH02 - Asset Accounting Archiving - Deletion Program RAARCH02 - Asset Accounting Archiving - Deletion Program RAARCH01 - Asset Accounting Archiving - Archiving Program RAARCH01 - Asset Accounting Archiving - Archiving Program