Functionality This function module allows the control information in a data record tobe changed at a later point in time. DATA: HANDLE LIKE SY-TABIX, CURSOR LIKE SY-TABIX. ... CALL FUNCTION 'ARCHIVE_MODIFY_RECORD_FLAGS' EXPORTING ARCHIVE_HANDLE = HANDLE RECORD_CURSOR = CURSOR RECORD_FLAGS = 'DELETE' EXCEPTIONS INTERNAL_ERROR = 01 WRONG_ACCESS_TO_ARCHIVE = 02 WRONG_CURSOR = 03. Notes You can use this function module if you discover later that a datarecord should have particular control information. INCLUDE 'ARCHIVE_PARAM_CURSOR' OBJECT DOKU ID TX Here you use the record cursor to determine which data record is to bechanged. |