Initial addition for Test Wafer Tracking Phase 2
Includes services and functions to create new test wafer lot. Tables included outside of git push New Tables: 1. LOT 2. LOT_EVENT 3. LOT_OPERATION 4. PRODUCT_OPERATION 5. OPERATION 6. Added PRODUCT_OPERATIONS field in TEST_WAFER_PROD table. All relational indexes and btree indexes.
This commit is contained in:
committed by
Ouellette Jonathan (CSC FI SPS MESLEO)
parent
f2a8ce4116
commit
9651c48539
23
LSL2/STPROC/PRODUCT_SERVICES.txt
Normal file
23
LSL2/STPROC/PRODUCT_SERVICES.txt
Normal file
@ -0,0 +1,23 @@
|
||||
Compile function Product_Services(@Service, @Params)
|
||||
#pragma precomp SRP_PreCompiler
|
||||
$insert LOGICAL
|
||||
|
||||
GoToService
|
||||
|
||||
Return Response or ""
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// SERVICES
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
Service DoSomething()
|
||||
|
||||
Response = "Hello, World!"
|
||||
|
||||
End Service
|
||||
|
||||
Service DoSomethingWithParameters(Input, Ref Output)
|
||||
|
||||
Output = Input:", World!"
|
||||
|
||||
End Service
|
Reference in New Issue
Block a user