FTView 13 A&E Server Acknowledge Last Alarm

fseipel2

Member
Join Date
May 2023
Location
Columbus, Ohio
Posts
3
Is there a simple way (VBA or macro language) to acknowledge ONLY the most recent alarm? I upgraded recently all the way from RSVIEW 32 7.60 to FTVIEW 13 with Alarms & Events server, and can't figure out how to duplicate the 'acknowledge last' that the old software could do. I can do acknowledge all, just not acknowledge last.
 
Hi Michoviz. Unfortunately this was converted from an old RSVIEW32 project. So I'm not using ALMD currently. There are hundreds of alarms so it would be time-consuming to convert it. I did convert from the Legacy alarms, though, so it's all on the A&E server. It's kind of frustrating that Rockwell did not include in FTVIEW the same command as RSVIEW32 had, to acknowledge ONLY last alarm.
 
If you sort your alarms according the "In Alarm Time",
you could use this vba code to ack the last alarm.

AlarmEventSummary.SortOrder = "InAlarmTime DESC"
AlarmEventSummary.MoveSelectionFirst
AlarmEventSummary.AckSelected

edit: if you want a button which ack's the selected alarm (then the user would have to select the last alarm), you could do it without vba:
Just a add button with the "Release action":
Invoke Me.AlarmEventSummary.AckSelectedWithComment(0, "my comment")
 

Similar Topics

Hello All, using FactoryTalk View Machine Edition v11. Does anybody know if there's a way to get a status bit to monitor connection to an OPC...
Replies
2
Views
983
I have running FactoryTalk View SE v7.0 on Windows XP normally for a long time Now I have the following error message : Database conversion or...
Replies
2
Views
2,121
Hello Every one, I need a help on vba code for getting data from MSSQL server 2014 to display in FTview SE client version 12 . Thanks. Please...
Replies
4
Views
1,815
I have a VBA on an alarm banner that calls a large number of pop-ups alarms based on changes of digital PLC tag value. Problem is that when the...
Replies
2
Views
2,324
Hello experts! Can you guide me, please, step by step how to log alarm in my scada project to Ms sql server database. In my project there is some...
Replies
2
Views
1,358
Back
Top Bottom