From 9dcead4eff0eacafbda590e356243660e34f3fc5 Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Wed, 17 Sep 2025 09:09:35 -0700 Subject: [PATCH] Modfified IQS_HGCV_ALARM Nica order trigger to not also check for active CHANGEOVER orders before triggering --- LSL2/STPROC/REACTOR_ACTIONS.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/LSL2/STPROC/REACTOR_ACTIONS.txt b/LSL2/STPROC/REACTOR_ACTIONS.txt index 7a2f302..0f57fd7 100644 --- a/LSL2/STPROC/REACTOR_ACTIONS.txt +++ b/LSL2/STPROC/REACTOR_ACTIONS.txt @@ -148,9 +148,8 @@ WRITE_RECORD: end else ModeUser = @User4 end - CurrActiveHgCVOrders = Nica_Orders_Services('GetActiveOrders', 'REACTOR', Name, 'IQS_HGCV_ALARM') - CurrActiveProveInOrders = Nica_Orders_Services('GetActiveOrders', 'REACTOR', Name, 'CHANGEOVER') - OrderTypeAlreadyActive = ( (CurrActiveHgCVOrders NE '') or (CurrActiveProveInOrders NE '') ) + CurrActiveHgCVOrders = Nica_Orders_Services('GetActiveOrders', 'REACTOR', Name, 'IQS_HGCV_ALARM') + OrderTypeAlreadyActive = (CurrActiveHgCVOrders NE '') If Not(OrderTypeAlreadyActive) then // Only create an order and change the mode if there is not already an active IQS_HGCV_ALARM order OrderResponse = Nica_Orders_Services('CreateNewOrder', 'REACTOR', Name, 'IQS_HGCV_ALARM') @@ -228,5 +227,3 @@ Restore_System_Variables: return - -