Fonction SAP ARCHIVE_RELOAD_OBJECT_DATA - Reload the Archived Data of an Archiving Class

Paramètre Reférence Type Long. Valeur par déf. Facultatif Description
ARCHIVE_HANDLE SYST-TABIX I 4 Open Archive Handle

Exception Description
INTERNAL_ERROR Internal Error
WRONG_ACCESS_TO_ARCHIVE Incorrect Archive Access

Functionality
This function module calls the reload methods for all registeredarchiving classes of the archiving object. The archived data of allclasses is then reloaded automatically in the database.
DATA: HANDLE LIKE SY-TABIX.
...
CALL FUNCTION 'ARCHIVE_RELOAD_OBJECT_DATA'
EXPORTING
ARCHIVE_HANDLE = HANDLE
EXCEPTIONS
INTERNAL_ERROR = 01
WRONG_ACCESS_TO_ARCHIVE = 02.

Notes
The Archive Development Kit (ADK) of the archiving objects does notitself have a reload method. You need to program and call thisfunctionality yourself.
This means that all data which was written to data objects in thearchiving program with ARCHIVE_PUT_RECORD needs to be reloaded in thedatabase with your reload program.
INCLUDE 'ARCHIVE_PARAM_HANDLE' OBJECT DOCU ID TX