open-insight/LSL2/STPROC/PRODUCT_SERVICES.txt
Infineon\Ouellette 9651c48539 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.
2024-10-24 20:23:15 +02:00

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