open-insight/SYSPROG/STPROCINS/SYSREPOS_COL_EQUATES.txt
2024-03-25 15:17:34 -07:00

117 lines
4.5 KiB
Plaintext

compile insert sysrepos_col_equates
/*
** Copyright (c) 1992-2015 Revelation Software. All rights reserved.**
Author ??
Date Pre-history
Purpose SYSREPOS table column equates
Comments
========
Amended Date Reason
======= ==== ======
Mr C 07 Apr 20 Added SYSREP_APPROW_OWNER$
Mr C 13 Sep 17 Renamed SYSREP_SYSENTITY$ -> SYSREP_SYSBUILD$
Mr C 11 Sep 17 Added SYSREP_SYSENTITY$
Mr C 30 Jan 16 Readded SCMFORMAT column
Mr C 21 Jan 16 Removed SCMFORMAT column, updated SCMINCLUDE values
Mr C 11 Sep 14 Moved USERn fields (collision with GIT)
Added GIT fields
Added COLORKEY/IMAGECOUNT fields
Mr C 10 Oct 12 Added USERn fields
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _SYSREPOS_COL_EQUATES_
#define _SYSREPOS_COL_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
* // key columns
equ SYSREP_APPID$ to 1
equ SYSREP_TYPEID$ to 2
equ SYSREP_CLASSID$ to 3
equ SYSREP_ENTITYID$ to 4
equ SYSREP_APPID_NAME$ to 'APPID'
equ SYSREP_TYPEID_NAME$ to 'TYPEID'
equ SYSREP_CLASSID_NAME$ to 'CLASSID'
equ SYSREP_ENTITYID_NAME$ to 'ENTITYID'
equ APP_TYPE_SYM$ to 'APP_TYPE'
equ APP_TYPE_CLASS_SYM$ to 'APP_TYPE_CLASS'
* // SCMINCLUDE for SYSREPOS
equ SCMINCLUDE_DEFAULT$ to 0 ; * // Use TYPE/CLASS setting
equ SCMINCLUDE_EXCLUDE$ to 1 ; * // Exclude
equ SCMINCLUDE_INCLUDE$ to 2 ; * // Include
* // Field columns
equ SYSREP_AUTHOR$ to 1
equ SYSREP_ACCESS_PERMIT$ to 2
equ SYSREP_UPDATE_PERMIT$ to 3
equ SYSREP_SUB_KEY$ to 4
equ SYSREP_SUPER$ to 5
equ SYSREP_SUB$ to 6
equ SYSREP_RESERVED1$ to 7
equ SYSREP_COLORKEY$ to 7 ; * // For IMAGE and IMAGELIST entities
equ SYSREP_RESERVED2$ to 8
equ SYSREP_MODULE$ to 8
equ SYSREP_RESERVED3$ to 9
equ SYSREP_IMAGECOUNT$ to 9 ; * // For IMAGE and IMAGELIST entities
equ SYSREP_RESERVED4$ to 10
equ SYSREP_POINTER_APPID$ to 11
equ SYSREP_POINTER_ENTITYID$ to 12
equ SYSREP_POINTED_APPID$ to 13
equ SYSREP_POINTED_ENTITYID$ to 14
equ SYSREP_DOC$ to 15
equ SYSREP_RESERVED5$ to 16
equ SYSREP_KEYWORD$ to 17
equ SYSREP_EVALUATE$ to 18
equ SYSREP_EVAL_NOTES$ to 19
equ SYSREP_SHAREABLE$ to 20
equ SYSREP_PUBLISHABLE$ to 21
equ SYSREP_CHECKOUT$ to 22
equ SYSREP_STATE$ to 23
equ SYSREP_LOGPOINTER$ to 24
equ SYSREP_UPDATED$ to 25
equ SYSREP_UPDATED_BY$ to 26
equ SYSREP_TITLE$ to 27
equ SYSREP_DESCRIPTION$ to 28
equ SYSREP_RECOMPILE$ to 29
equ SYSREP_SCMFORMAT$ to 30
equ SYSREP_SCMINCLUDE$ to 31
equ SYSREP_SCMPURGE$ to 32 ;* // Flag items for destruction by a purge program.
equ SYSREP_SCMAUTHOR$ to 33 ;* // GIT committer as of most recent import into OI
equ SYSREP_SCMCOMMIT$ to 34
equ SYSREP_SYSBUILD$ to 35
equ SYSREP_SYSPUBLISH$ to 36
equ SYSREP_APPROW_OWNER$ to 37
equ SYSREP_SCMPULL_DT$ to 41 ; * // GIT Pull date
equ SYSREP_SCMPUSH_DT$ to 42 ; * // GIT Push date
* // User defined fields - RTI won't touch these columns
equ SYSREP_USER1$ to 51
equ SYSREP_USER2$ to 52
equ SYSREP_USER3$ to 53
equ SYSREP_USER4$ to 54
equ SYSREP_USER5$ to 55
equ SYSREP_USER6$ to 56
equ SYSREP_USER7$ to 57
equ SYSREP_USER8$ to 58
equ SYSREP_USER9$ to 59
equ SYSREP_TABLE_ASSOC_NAME$ to 'TABLE_ASSOC'
equ SYSREP_COLUMN_ASSOC_NAME$ to 'COLUMN_ASSOC'
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////