solution tested and ready for deployment updated SRP_Git_Services to handle creating local copies of inherited entities updated HgCV OCAP order trigger to also look for active prove-in orders moved error services common into sysprog to avoid compilation issues
16 lines
475 B
Plaintext
16 lines
475 B
Plaintext
compile insert PROC_QUEUE_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 09/12/2024
|
|
Description : Insert for Table PROC_QUEUE
|
|
----------------------------------------*/
|
|
#ifndef __PROC_QUEUE_EQUATES__
|
|
#define __PROC_QUEUE_EQUATES__
|
|
|
|
equ PROC_QUEUE.PROC_NAME$ to 1
|
|
equ PROC_QUEUE.PARAMS$ to 2
|
|
equ PROC_QUEUE.LAST_ATTEMPT_DTM$ to 3
|
|
equ PROC_QUEUE.ERROR$ to 4
|
|
|
|
#endif
|