Created methods to get all record found in the hierarchy of WO's Related work items: #313450
20 lines
671 B
Plaintext
20 lines
671 B
Plaintext
compile insert ARCHIVE_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 28/08/2025
|
|
Description : Insert for Table ARCHIVE
|
|
----------------------------------------*/
|
|
#ifndef __ARCHIVE_EQUATES__
|
|
#define __ARCHIVE_EQUATES__
|
|
|
|
equ ARCHIVE_ARCHIVE_DTM$ to 1
|
|
equ ARCHIVE_COMPLETE$ to 2
|
|
equ ARCHIVE_CHILD_RECORD$ to 3
|
|
equ ARCHIVE_CHILD_TABLE$ to 4
|
|
equ ARCHIVE_CHILD_RECORD_ARCHIVED$ to 5
|
|
equ ARCHIVE_CHILD_RECORD_DELETED$ to 6
|
|
equ ARCHIVE_CHILD_RECORD_ARCHIVE_DTM$ to 7
|
|
equ ARCHIVE_CHILD_RECORD_DELETE_DTM$ to 8
|
|
|
|
#endif
|