import Alarm tags on RSView Studio ME

Join Date
Oct 2007
Location
orlando
Posts
3
I am manually (by hand) converting an application from RSViEW 32 to RSView studio Me. I have 700 alarm tags to covert. Does anyone know of a format I can import these tags into studio instead of typing each one directly by hand.
 
I've found it is much easier to have the alarm bits in the PLC to be contained in a DINT or INT tag/array. Then in ME you can setup the alarm trigger for that single tag, depending on the alarm bit(s) within that tag are active you just have to type in the appropriate alarm message. Easy as copy->paste.

So in the PLC you have a DINT tag called Alarm_Array with length of 20. Which would result in 640 alarm bits.

Alarm_Array[0]
Alarm_Array[1]
Alarm_Array[2]
.
.
.
Alarm_Array[19]

Each array would contain 32 alarm bits.
Alarm_Array[0].0
Alarm_Array[0].1
Alarm_Array[0].2
.
.
.
Alarm_Array[0].31

And so on.

In ME you can setup a single Alarm Trigger:Alarm_Array[0],L20 (L20 designates the number of arrays to look at).

Set the "Trigger Type" to bit.

In the Messages tab, the trigger for all alarms would be Alarm_Array[0],L20 The value would be 1 - 640 to correlate to the order of the alarm bits in the above array.

Set the messages up to match.

It's an easy way to get your alarm messages in ME, however you may have to re-write some PLC code.
 
The idea sounds great but i do not have access to the PLC code, i only have an application from RS View 32. Thanks for your reply and help
 

Similar Topics

Hi everyone, I'm new to the forum and new to automation too. I am currently using FT View Studio to create the HMI of a project and I have come...
Replies
1
Views
2,013
I’m finishing up a PAC project and one of the the last things I need to take care of is setting up all of my alarm points in PAC Display...
Replies
0
Views
1,177
I know how to use excel to copy+paste alarm triggers is the "Messages" tab of the alarm editor, but how the heck do you import the alarm triggers...
Replies
6
Views
3,705
Hello everyone. I was working on a test application in Wonderware InTouch using both AlarmDBViewCtrl and Distributed Alarm Displays. Once I got...
Replies
1
Views
2,024
Hello All, This is my first post, so bare with me. I am working on setting up a new alarm server on FT SE. I have already added a few alarms...
Replies
2
Views
2,803
Back
Top Bottom