From 8c113004557dc1d44c291cf7b62046d05e7b293b Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Thu, 18 Sep 2025 12:36:28 -0700 Subject: [PATCH] removed makeup wafer qa met check until a new solution is ready --- LSL2/STPROC/WO_MAT_QA_SERVICES.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/LSL2/STPROC/WO_MAT_QA_SERVICES.txt b/LSL2/STPROC/WO_MAT_QA_SERVICES.txt index 8fb274d..16c54d9 100644 --- a/LSL2/STPROC/WO_MAT_QA_SERVICES.txt +++ b/LSL2/STPROC/WO_MAT_QA_SERVICES.txt @@ -421,9 +421,11 @@ end service Service GetQAMetComplete(WOMatKey) + ErrorMsg = '' + Response = True$ + If WOMatKey NE '' then If Rowexists('WO_MAT_QA', WOMatKey) then - Response = '' QAMetRec = Database_Services('ReadDataRow', 'WO_MAT_QA', WOMatKey, '', True$, 0, False$) Stages = QAMetRec Results = QAMetRec @@ -436,16 +438,17 @@ Service GetQAMetComplete(WOMatKey) end Until Response EQ False$ Next I - If Response = '' then - Response = Wo_Mat_Qa_Services('GetMUWaferQAComplete', WOMatKey) - end end else Response = True$ end end else - Error_Services('Add', 'Missing WOMatKey parameter.') + ErrorMsg = 'Missing WOMatKey parameter.' + Response = False$ end + If ErrorMsg NE '' then + Error_Services('Add', ErrorMsg) + end end service @@ -497,4 +500,3 @@ Service GetMUWaferQAComplete(WOMatKey) end service -