Added field to lot table to store most recent event id. Maintained column by writing to it upon successful creation of a lot event. Added the most recent event dtm to the json object for lot records. Added related text view in NDW_VIEW_LOT form and method to read that data and populate the field. Related work items: #249625
28 lines
974 B
Plaintext
28 lines
974 B
Plaintext
compile insert LOT_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 01/04/2025
|
|
Description : Insert for Table LOT
|
|
----------------------------------------*/
|
|
#ifndef __LOT_EQUATES__
|
|
#define __LOT_EQUATES__
|
|
|
|
equ LOT_TYPE$ to 1
|
|
equ LOT_PROD_ID$ to 2
|
|
equ LOT_ORIG_WAFER_QTY$ to 3
|
|
equ LOT_WAFER_QTY$ to 4
|
|
equ LOT_VENDOR_PART_NO$ to 5
|
|
equ LOT_VENDOR_LOT_NO$ to 6
|
|
equ LOT_VENDOR_CODE$ to 7
|
|
equ LOT_LOT_EVENTS$ to 8
|
|
equ LOT_LOT_OPERATIONS$ to 9
|
|
equ LOT_TEST_RUN_WAFER_IDS$ to 10
|
|
equ LOT_OPEN$ to 11
|
|
equ LOT_HOLD$ to 12
|
|
equ LOT_HOT$ to 13
|
|
equ LOT_LEGACY_LOT_ID$ to 14
|
|
equ LOT_VOIDED_LOT_RECORDS$ to 15
|
|
equ LOT_MOST_RECENT_LOT_EVENT_ID$ to 16
|
|
|
|
#endif
|