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.
24 lines
515 B
Plaintext
24 lines
515 B
Plaintext
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
|