Functionality The Archive key ARCHIVEKEY> from the Index tableARCH_IDX> for the Archiving object OBJECT> and for aparticular data object OBJECT_ID> is read with thisfunction module. This function module is used, e.g. by the function moduleARCHIVE_READ_OBJECT> to access individual selecteddata objects from an Archive file.
- Example 1>
DATA: OBJECT LIKE ARCH_IDX-OBJECT, OBJECT_ID LIKE ARCH_IDX-OBJECT_ID, ARCHIVEKEY LIKE ARCH_IDX-ARCHIVEKEY. ... CALL FUNCTION 'ARCHIVE_ADMIN_READ_INDEX' EXPORTING OBJECT = OBJECT OBJECT_ID = OBJECT_ID IMPORTING ARCHIVEKEY = ARCHIVEKEY EXCEPTIONS NO_RECORD_FOUND = 1.
|