81 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| compile insert rdkview_equates
 | |
| /*
 | |
|    ** Copyright (c) 1992-2016 Revelation Software. All rights reserved.**
 | |
|    
 | |
|    Author    ??
 | |
|    Date      Pre-history 
 | |
|    Purpose   SYSREPOSVIEWS table column equates
 | |
|    
 | |
|    
 | |
|    Comments
 | |
|    ========
 | |
|      
 | |
|    
 | |
|    Amended  Date       Reason
 | |
|    =======  ====       ======
 | |
|    Mr C     16 Mar 16  Added Header Guards and versioning.
 | |
|                        Added filter fields
 | |
|    mtr      04 Nov 15  Added to v10
 | |
| */
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #ifndef _RDKVIEW_EQUATES_
 | |
| #define _RDKVIEW_EQUATES_
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
|    equ VIEW_MINVERSION$        to "1000"  ; * // (10.00)
 | |
|    equ VIEW_CURVERSION$        to "1000"  ; * // (10.00)  Current version
 | |
| 
 | |
|    // SYSREPOSVIEWS column position equates// 
 | |
|    equ VIEW_APPID$             to 1   // Key part
 | |
|    equ VIEW_VIEWID$            to 2   // Key part
 | |
| 
 | |
|    equ VIEW_TITLE$             to 1
 | |
|    equ VIEW_DESC$              to 2
 | |
|    equ VIEW_CREATED$           to 3
 | |
|    equ VIEW_AUTHOR$            to 4
 | |
|    equ VIEW_ENTCOUNT$          to 5
 | |
|    equ VIEW_HISTDATE$          to 6
 | |
|    equ VIEW_HISTBY$            to 7
 | |
|    equ VIEW_HISTNOTE$          to 8
 | |
|    equ VIEW_RES1$              to 9
 | |
|    equ VIEW_RES2$              to 10
 | |
|    equ VIEW_ENTLIST$           to 11
 | |
|    equ VIEW_ENTIDS$            to 15 ; // * mtr Added 4 Nov 2015
 | |
|    Equ view_QUICKDEPLOY_ENTIDS$ to 16 ; // * mtr Added 7 Apr 2023
 | |
|    equ VIEW_VERSION$           to 20
 | |
|    
 | |
|    equ VIEW_HEADERSIZE$        to 10
 | |
|    
 | |
|    equ VIEW_FILTER_FLAG$       to 31 ; // TRUE$ if this is a filter view
 | |
|    equ VIEW_FILTER_VIEWID$     to 32 ; // VIEW ID to use as the base for the filter 
 | |
|    equ VIEW_FILTER_TYPECLASS$  to 33 ; // @vm'd list of TYPE/CLASS IDS of entities to include
 | |
|    equ VIEW_FILTER_NOINHERIT$  to 34 ; // TRUE$ to only include entities from the current Application 
 | |
|    equ VIEW_FILTER_PUBONLY$    to 35 ; // TRUE$ to only include publishable entities
 | |
|    equ VIEW_FILTER_LOCKEDONLY$ to 36 ; // TRUE$ to only include locked (checked out entities)
 | |
|    equ VIEW_FILTER_EVALONLY$   to 37 ; // TRUE$ to only include entities marked with the eval flag
 | |
|    equ VIEW_FILTER_RECMPONLY$  to 38 ; // TRUE$ to only include entities marked for recompilation
 | |
|    equ VIEW_FILTER_UPDATEDBY$  to 39 ; // Last user to update the entities (@vm for multiple)
 | |
|    equ VIEW_FILTER_NAME$       to 40 ; // Comparison for the ENTITYID, supports "[","]" and "[]" ops
 | |
|    equ VIEW_FILTER_FROM$       to 41 ; // Updated since - DT format or "nD" format for "days since"
 | |
|    equ VIEW_FILTER_TO$         to 42 ; // Updated to - DT format
 | |
|    equ VIEW_FILTER_SELECTSTMT$ to 43 ; // SELECT statement to execute
 | |
|    equ VIEW_FILTER_RESERVED$   to 44 ; // Reserved for system use.
 | |
|    
 | |
|    equ VIEW_FILTER_ID_PREFIX$  to "@"
 | |
|    
 | |
|    /* Menu equate values (branches for RepViewEdit_Menu) */
 | |
|    equ VMENU_FILE_NEW$         to 1
 | |
|    equ VMENU_FILE_OPEN$        to 2
 | |
|    equ VMENU_FILE_SAVE$        to 3
 | |
|    equ VMENU_FILE_SAVEAS$      to 4
 | |
|    equ VMENU_GETWORKLIST$      to 5
 | |
| 
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #endif
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 |