One of my customers has a setup where they currently have all alarms assigned to all workstations. Now they are adding a new plant area (call it NEW_UTILITIES) and only want that area assigned to one workstation (called OPST1) and not the others. The trick is that when a certain operator account is signed in to that workstation they only want to see the new plant area's alarms and not any others but when a different user account logs in they can see all alarms including the new area.
I'm looking for an easy way to do this. They are currently on Operate but will be transitioning to Live hopefully later this year.
Thank you
In reply to KeithStThomas:
In reply to TPatterson:
Andre Dicaire
In reply to dave_marshall:
Here is sample code for manipulating area filters with a button click for a starting point.
Private Sub CommandButton1_Click()
On Error GoTo ErrorHandler 'Area 2
frswritevalue "1", "dvsys.THISUSER/AREAFILT[28].F_CV" 'CRUDE
frswritevalue "1", "dvsys.THISUSER/AREAFILT[22].F_CV" 'NHT
frswritevalue "1", "dvsys.THISUSER/AREAFILT[23].F_CV" 'offsites
frswritevalue "1", "dvsys.THISUSER/AREAFILT[21].F_CV" 'Plat
frswritevalue "1", "dvsys.THISUSER/AREAFILT[31].F_CV" 'Plat Regen
frswritevalue "1", "dvsys.THISUSER/AREAFILT[17].F_CV" 'ROSE
frswritevalue "1", "dvsys.THISUSER/AREAFILT[53].F_CV" 'Safety
frswritevalue "1", "dvsys.THISUSER/AREAFILT[29].F_CV" 'Vac
frswritevalue "1", "dvsys.THISUSER/AREAFILT[24].F_CV" 'Wireless
Exit Sub
ErrorHandler:
frsHandleError
End Sub
In reply to MPHymel: