Hi All,
We allow operators to disable transitions. I'm looking for a solution to show "disables transitions" within e.g. the Batch Banner. Is it possible to check for those somehow?
Thanks in advance!
All the best,
Manuel
In reply to István Orbán:
You are correct about the previous responses. For disabled recipe transitions the Batch PFC View graphic will display a list of disabled transitions for the selected batch. These are ActiveX software components of the operator interface (for both Operate and Live). I don't see any obvious way to read the disabled transitions list from the component but it is likely there somewhere. Any solution for a rollup of disabled transitions is going to require some custom code that can loop through the loaded batch unique IDs, connecting to the Batch DVBCtrlStepList object and reading the correct property once you identify that property. At least that's what I'm seeing looking in our system. Matt Stoner may have run into a request like this before.
A simpler solution may be a SQL query to the batch historian. The transition disable and enable events are logged to the Batch Events of the batch.
If you are running DeltaV Live with Premium Performance Pack you can insert that query right into a graphic to populate a table object.
SELECT [batchID] ,[eventdescr] ,[occurtime] ,[msecs] ,[isdst] ,[unit] FROM [DVHisDB].[dbo].[batcheventview] WHERE ([eventType] like 'Transition Control') AND (time frame restriction) order by [occurtime]
In reply to Scott Thompson: