Tag Variables

Tag Variable Access

OAS client and OAS Engine interfaces can access all live data and configuration properties of a tag.  Client applications would include WPF HMI, WinForm HMI, Cross-Platform HMI, and Web HMI user interfaces, OAS Excel Connector, and programmatic access through .NET Data Connector and REST API.

OAS Engine features that utilize tag variable access include Data Logging, Recipes, Calculation Tags, and Data Route Target Tags.

Tag Licensing

All variables can be accessed to each tag count as just one tag towards the OAS license.  The exception would be access to bits of an integer tag and elements of an array tag which are counted as additional tags for licensing.

Tag Syntax

Value is the most commonly used variable of a Tag.  Following is a list of all accessible variables from a tag.  When browsing an OAS Tag from a client interface you will see all of the possible variable for selection.

The OAS Excel browse application is a simple client to browse any tag for any available variable for a local or remote tag.

 

The following would be the full path for a local tag within a group.

myGroup.myTag.Value

 

Refer to Basic Networking or Live Data Cloud Networking for complete syntax for remote tag access.

Basic Networking

\\192.168.0.1\myGroup.myTag.Value

Live Data Cloud Networking from local OAS Engine

RemoteSCADAHosting.myLiveDataCloudNode.myGroup.myTag.Value

Live Data Cloud Networking though remote OAS Engine

\\192.168.0.1\RemoteSCADAHosting.myLiveDataCloudNode.myGroup.myTag.Value

 

The following is an example of accessing an element of an array as a read only variable.

myGroup.myTag.Value[0]

 

Variables

 Variable Description
Value The current value of the Tag.
Bit00-Bit15 Individual bit of Value when Data Type is 16 bit, 32 bit, or 64 bit integer.
Bit16-Bit31 Individual bit of Value when Data Type is 32 bit or 64 bit integer.
Bit32-Bit63 Individual bit of Value when Data Type is 64 bit integer.
ABAddress Configuration property: The Allen Bradley variable address.
AcknowledgeAlarmsEnable Configuration property: Enable this feature to automatically acknowledge all alarms defined to the alarm groups defined in the property Alarm Groups to Acknowledge. The alarms are acknowledged when the Tag Value transitions from False to True. If the Tag Value remains True no further acknowledge will occur until the value goes to False and then True again. If you desire to acknowledge all alarms in the local service leave the Alarm Groups to Acknowledge field blank.
AcknowledgeAlarmsGroups Configuration property: When the Acknowledge Alarm Groups property is enabled this is the list of Alarm Groups that will determine which alarms will be acknowledged automatically when the Tag Value transitions from False to True. If you desire to acknowledge all alarms in the local service leave this field blank.
AlarmsDailyTimeRangeDisable Configuration property: Disable the alarms for the tag daily between the Start Hour and Minute and the End Hour and Minute.
AlarmsDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarms daily.
AlarmsDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarms daily.
AlarmsDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarms daily.
AlarmsDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarms daily.
AlarmsDateRangeDisable Configuration property: Disable the alarms for the tag between a Start date and End date.
AlarmsDateRangeDisableEnd Configuration property: The date to end disabling the alarms between a Start and End date.
AlarmsDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarms between a Start and End date.
AlarmsDateRangeDisableStart Configuration property: The date to start disabling the alarms between a Start and End date.
AlarmsDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarms between a Start and End date.
Calculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
DataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
GPIO: Raspberry Pi General Purpose Input and Output pins.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
DataType Configuration property: The data type of a Parameter can be set to one of the following types.
DoubleFloat (64 bits)
SingleFloat (32 bits)
SByteInteger (8 bits)
ByteInteger (8 bits)
ShortInteger (16 bits)
UShortInteger (16 bits)
IntegerNumber (32 bits)
UIntegerNumber (32 bits)
LongInteger (64 bits)
ULongInteger (64 bits)
LogicalDiscrete
TextString
JSON
ArrayDouble (64 bits)
ArraySingle (32 bits)
ArrayInteger (32 bits)
ArrayByte (8 bits)
ArrayBoolean
ArrayString
ObjectType (Any value, custom Object, array, Or Structure)
DefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
DefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
Description Configuration property: Description of the Tag used as the default Trend Pen Description.
Document Configuration property: The document path that is included in an alarm message.
Gain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
HighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
IsReadOnly Configuration property: When enabled the value of the parameter cannot be written to.
IsWriteOnly Configuration property: When enabled the value of the parameter will not be read from the source but will allow writes.
JSON-KeyName To access any individual element of a OAS tag with a Data Source of JSON use .JSON- as the tag variable. An example OAS_Tag.JSON-motors[0].current would provide read and write access of the current value of the first motor element of the array of motors.
LimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
LowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
Offset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
OneOrMoreAlarmsDisabled Read only: One or more alarm limits within the tag are disabled being inside of the daily time or data range to disable the limit.
OneOrMoreAlarmsPotentiallyDisabled Read only: One or more of the alarm limits can be potentially disabled with daily or time range disable sepcified.
OPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
OPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
OPCEnumerate Configuration property: When enabled it will convert the integer value to the text from the item within the enumeration.
OPCEnumerateStrings Configuration property: The list of enumerations to return based on integer value for the index. The string arrays are separated by a pipe character |
OPCItem Configuration property: The OPC Item from a classic OPC DA Server.
OPCItemKeepOnScan Configuration property: With this Option selected the communications To the OPC Item will always be enabled unless the Device Read Option is selected.
When this Option is disabled communications To the OPC Item will be enabled only When one Or more clients are requesting the value from the Tag. If the point is trended, enabled For alarm monitoring With any one Of the alarm limits enabled, Or Set As a Target output To another OPC Item this OPC Item will always be On scan regardless If there is a requesting client.
Note: Not recommended for OPC Items from RS-Linx OPC Server as it does not handle dynamic adding and removing items well.
OPCQuality Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
OPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
OverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
PreviousTimestamp Read only: The timestamp of the previous value returned as a Date.
PreviousTimestampString Read only: The timestamp of the previous value returned as a String.
PreviousTimestampTicks Read only: The timestamp of the previous value returned as a Long Integer in Ticks.
PreviousValue Read only: The previous value.
Quality Quality of value, true when good quality, false when bad quality.
QualityActual Read only: Quality of value, true when good quality, false when bad quality.
Quality_BadCount Read only: The number of times the quality of the tag has transitioned from good to bad. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_BadReadCount Read only: The number of communication reads from the device has failed for the tag. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_BadTime Read only: The time in seconds the quality of the tags has been bad. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_BadWriteCount Read only: The number of write failures to the device from the tag. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_GoodCount Read only: The number of times the quality of the tag has transitioned from bad to good. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_GoodReadCount Read only: The number of communication reads from the device has succeeded for the tag. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_GoodTime Read only: The time in seconds the quality of the tags has been good. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_GoodWriteCount Read only: The number of successful writes to the device from the tag. Can be reset to 0 when .ResetCountsAndTime is set to true.
Quality_ResetCountsAndTime Write a value of true to reset Quality_BadCount, Quality_BadReadCount, Quality_BadTime, Quality_BadWriteCount, Quality_GoodCount, Quality_GoodReadCount, Quality_GoodTime, and Quality_GoodWriteCount.
ReadOnlyValue Configuration property: When enabled the value of the parameter cannot be written to.
ResetTimeDelay Configuration property: The amount Of time To delay the Reset a Boolean value When Reset Value To False Is enabled.
ResetValue Configuration property: When enabled For a Boolean Tag a write Of False will be sent immediately When the value transitions from False To True.
SiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
SimulationRate Configuration property: The rate of value changing for Simulation data.
SimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
SourceWhenBad Configuration property: Allows the value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
TagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
TagName Configuration property: The Tag Name Is used To identify the specific point And all Of its parameters. The Tag can be included within a Group.
For example the following would be the full path For a Tag within a Group:
– myGroup.myTag
– The client applications will reference the tag name and parameter by name.
– myGroup.myTag.Value or myGroup.myTag.ValueTimeOn.
TagNameWithoutGroups Read only: The Tag Name without the parent group names included.
TargetEnable Configuration property: Enables the Data Route feature to send the Tag Value to another Tag, OPC Item, or Azure IoT.
This feature Is Not required To just write To a Data Source Of the Tag Value from a client application. If the Data Source Of a Tag Is Set To something other than Value, Calculation, Tag, or Time and write occurs to the Tag the Data Source will be written to.
The Target feature is mainly used to transfer values from controller to controller, OPC Servers to other OPC Servers, Calculation results to controllers, OPC Servers, or Azure IoT. Often used for remote data transfer over the Internet from Data Source to Data Destination.
TargetFloatDeadband Configuration property: For floating point values this is the amount to compare with current value from target value and if within range it does not write a new value. If the source Value is different than the current Target value by more than the Float Deadband a write will occur. The deadband is not used if Write Continuously is enabled.
TargetOPCItem Configuration property: The OPC Item from a classic OPC DA Server for sending the Value to.
TargetOPCUpdateRate Configuration property: OPC Update Rate for classic OPC DA Item.
TargetWriteContinuously Configuration property: When this property is disabled writes will only occur when the source Value is different than the target value.
When this property is enabled writes will continuously be performed at the rate of Target Write Continuously Frequency even if the source Value is the same as the target value.
Note: When this feature is changed either the source Value must change or restart the service for the parameter to take effect.
TargetWriteContinuouslyFrequency Configuration property: The rate at which the value is written to the destination if the continuous writing is enabled.
When this property is enabled writes will continuously be performed at the rate of Target Write Continuously Frequency.
Note: When this feature is changed either the source Value must change or restart the service for the parameter to take effect.
TimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long a Boolean value is true and how many times it transitions to True.
The Time On And Counts feature will keep track of the following
How Long the point is on for the current instance.
How Long the point is on for the current day.
How Long the point is on for Period 1.
How Long the point is on for Period 2.
How Long the point has been on for all of time.
How many times the point has transitioned for the current day.
How many times the point has transitioned for Period 1.
How many times the point has transitioned for Period 2.
How many times the point has transitioned For all of time.
TimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
TimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
TimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
TimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
TimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
TimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
TimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
Timestamp Read only: The timestamp of the current value returned as a Date data type.
TimestampString Read only: The timestamp of the current value returned as a string.
TimestampTicks Read only: The timestamp of the current value returned in Ticks.
TimestampUNIX Read only: The timestamp of the current value returned in UNIX Epoch.
TimestampPolled Read only: The time when the Modbus Tag was last polled to obtain the current value returned as a Date data type.
TimestampPolledString Read only: The time when the Modbus Tag was last polled to obtain the current value returned as a string.
TimestampPolledTicks Read only: The time when the Modbus Tag was last polled to obtain the current value returned in Ticks.
TimestampPolledUNIX Read only: The time when the Modbus Tag was last polled to obtain the current value returned in UNIX Epoch.
TrendPoint Configuration property: Enable Trend Point To have the Parameter available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
UDPClientTag Configuration property: The Tag in the broadcasting service to receive the value when using one way UDP Broadcast feature.
Units Configuration property: Engineering Units of the Tag used as the default Trend Pen Units.
WriteOnlyValue Configuration property: When enabled the value of the parameter will not be read from the source but will allow writes.
ValueTimeOn Read only: How Long the point is on for the current instance
ValueTimeOnCurrentDay Read only: How Long the point is on for the current day.
ValueTimeOnPeriod1 Read only: How Long the point is on for Period 1.
ValueTimeOnPeriod2 Read only: How Long the point is on for Period 2.
ValueTimeOnTotal Read only: How Long the point has been on for all of time.
ValueCountCurrentDay Read only: How many times the point has transitioned for the current day.
ValueCountPeriod1 Read only: How many times the point has transitioned for Period 1.
ValueCountPeriod2 Read only: How many times the point has transitioned for Period 2.
ValueCountTotal Read only: How many times the point has transitioned For all of time.
AlarmStatusHighHigh Read only: The alarm state is active.
HighHighAlarmABAddress Configuration property: The Allen Bradley variable address.
HighHighAlarmAcknowledge Write only: Set to true to acknowledge alarm.
HighHighAlarmAcknowledged Read only: True if alarm is currently acknowledged.
HighHighAlarmActive Read only: The alarm state is active.
HighHighAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
HighHighAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
HighHighAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
HighHighAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
HighHighAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
HighHighAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
HighHighAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
HighHighAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
HighHighAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
HighHighAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
HighHighAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
HighHighAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
HighHighAlarmDeadband Configuration property: The amount that the value must be within the limit before the alarm condition is cleared.
HighHighAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
HighHighAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
HighHighAlarmDocument Configuration property: The document path that is included in an alarm message.
HighHighAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
HighHighAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
HighHighAlarmEnable Configuration property: Enable alarm limit.
HighHighAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
HighHighAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
HighHighAlarmGain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
HighHighAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
HighHighAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
HighHighAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
HighHighAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
HighHighAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
HighHighAlarmLimit Configuration property: The value of the alarm limit.
HighHighAlarmLimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
HighHighAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
HighHighAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
HighHighAlarmOffset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
HighHighAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
HighHighAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
HighHighAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
HighHighAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
HighHighAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
HighHighAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
HighHighAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
HighHighAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
HighHighAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
HighHighAlarmPreviousValue Read only: The previoius alarm limit value.
HighHighAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
HighHighAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
HighHighAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
HighHighAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
HighHighAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
HighHighAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
HighHighAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
HighHighAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
HighHighAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
HighHighAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
HighHighAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
HighHighAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
HighHighAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
HighHighAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
HighHighAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
HighHighAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
HighHighAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
HighHighAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
HighHighAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
HighHighAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
HighHighAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
HighHighAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
HighHighAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
HighHighAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
HighHighAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
HighHighAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
HighHighAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
HighHighAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
HighHighAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
HighHighAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
HighHighAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
HighHighAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
HighHighAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
HighHighAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmHighHighTimeOn Read only: How Long the alarm is active for the current instance.
AlarmHighHighTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmHighHighTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmHighHighTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmHighHighTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmHighHighCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmHighHighCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmHighHighCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmHighHighCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.
AlarmStatusHigh Read only: The alarm state is active.
HighAlarmABAddress Configuration property: The Allen Bradley variable address.
HighAlarmAcknowledge Write only: Set to true to acknowledge alarm.
HighAlarmAcknowledged Read only: True if alarm is currently acknowledged.
HighAlarmActive Read only: The alarm state is active.
HighAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
HighAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
HighAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
HighAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
HighAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
HighAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
HighAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
HighAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
HighAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
HighAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
HighAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
HighAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
HighAlarmDeadband Configuration property: The amount that the value must be within the limit before the alarm condition is cleared.
HighAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
HighAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
HighAlarmDocument Configuration property: The document path that is included in an alarm message.
HighAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
HighAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
HighAlarmEnable Configuration property: Enable alarm limit.
HighAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
HighAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
HighAlarmGain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
HighAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
HighAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
HighAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
HighAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
HighAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
HighAlarmLimit Configuration property: The value of the alarm limit.
HighAlarmLimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
HighAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
HighAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
HighAlarmOffset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
HighAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
HighAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
HighAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
HighAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
HighAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
HighAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
HighAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
HighAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
HighAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
HighAlarmPreviousValue Read only: The previoius alarm limit value.
HighAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
HighAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
HighAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
HighAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
HighAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
HighAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
HighAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
HighAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
HighAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
HighAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
HighAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
HighAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
HighAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
HighAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
HighAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
HighAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
HighAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
HighAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
HighAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
HighAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
HighAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
HighAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
HighAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
HighAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
HighAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
HighAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
HighAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
HighAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
HighAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
HighAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
HighAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
HighAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
HighAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
HighAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmHighTimeOn Read only: How Long the alarm is active for the current instance.
AlarmHighTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmHighTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmHighTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmHighTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmHighCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmHighCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmHighCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmHighCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.
AlarmStatusLow Read only: The alarm state is active.
LowAlarmABAddress Configuration property: The Allen Bradley variable address.
LowAlarmAcknowledge Write only: Set to true to acknowledge alarm.
LowAlarmAcknowledged Read only: True if alarm is currently acknowledged.
LowAlarmActive Read only: The alarm state is active.
LowAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
LowAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
LowAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
LowAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
LowAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
LowAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
LowAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
LowAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
LowAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
LowAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
LowAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
LowAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
LowAlarmDeadband Configuration property: The amount that the value must be within the limit before the alarm condition is cleared.
LowAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
LowAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
LowAlarmDocument Configuration property: The document path that is included in an alarm message.
LowAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
LowAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
LowAlarmEnable Configuration property: Enable alarm limit.
LowAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
LowAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
LowAlarmGain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
LowAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
LowAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
LowAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
LowAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
LowAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
LowAlarmLimit Configuration property: The value of the alarm limit.
LowAlarmLimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
LowAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
LowAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
LowAlarmOffset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
LowAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
LowAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
LowAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
LowAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
LowAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
LowAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
LowAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
LowAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
LowAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
LowAlarmPreviousValue Read only: The previoius alarm limit value.
LowAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
LowAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
LowAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
LowAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
LowAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
LowAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
LowAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
LowAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
LowAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
LowAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
LowAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
LowAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
LowAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
LowAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
LowAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
LowAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
LowAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
LowAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
LowAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
LowAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
LowAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
LowAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
LowAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
LowAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
LowAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
LowAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
LowAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
LowAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
LowAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
LowAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
LowAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
LowAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
LowAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
LowAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmLowTimeOn Read only: How Long the alarm is active for the current instance.
AlarmLowTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmLowTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmLowTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmLowTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmLowCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmLowCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmLowCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmLowCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.
AlarmStatusLowLow Read only: The alarm state is active.
LowLowAlarmABAddress Configuration property: The Allen Bradley variable address.
LowLowAlarmAcknowledge Write only: Set to true to acknowledge alarm.
LowLowAlarmAcknowledged Read only: True if alarm is currently acknowledged.
LowLowAlarmActive Read only: The alarm state is active.
LowLowAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
LowLowAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
LowLowAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
LowLowAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
LowLowAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
LowLowAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
LowLowAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
LowLowAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
LowLowAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
LowLowAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
LowLowAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
LowLowAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
LowLowAlarmDeadband Configuration property: The amount that the value must be within the limit before the alarm condition is cleared.
LowLowAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
LowLowAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
LowLowAlarmDocument Configuration property: The document path that is included in an alarm message.
LowLowAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
LowLowAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
LowLowAlarmEnable Configuration property: Enable alarm limit.
LowLowAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
LowLowAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
LowLowAlarmGain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
LowLowAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
LowLowAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
LowLowAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
LowLowAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
LowLowAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
LowLowAlarmLimit Configuration property: The value of the alarm limit.
LowLowAlarmLimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
LowLowAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
LowLowAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
LowLowAlarmOffset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
LowLowAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
LowLowAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
LowLowAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
LowLowAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
LowLowAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
LowLowAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
LowLowAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
LowLowAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
LowLowAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
LowLowAlarmPreviousValue Read only: The previoius alarm limit value.
LowLowAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
LowLowAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
LowLowAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
LowLowAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
LowLowAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
LowLowAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
LowLowAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
LowLowAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
LowLowAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
LowLowAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
LowLowAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
LowLowAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
LowLowAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
LowLowAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
LowLowAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
LowLowAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
LowLowAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
LowLowAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
LowLowAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
LowLowAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
LowLowAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
LowLowAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
LowLowAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
LowLowAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
LowLowAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
LowLowAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
LowLowAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
LowLowAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
LowLowAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
LowLowAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
LowLowAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
LowLowAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
LowLowAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
LowLowAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmLowLowTimeOn Read only: How Long the alarm is active for the current instance.
AlarmLowLowTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmLowLowTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmLowLowTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmLowLowTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmLowLowCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmLowLowCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmLowLowCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmLowLowCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.
AlarmStatusDigital Read only: The alarm state is active.
DigitalAlarmABAddress Configuration property: The Allen Bradley variable address.
DigitalAlarmAcknowledge Write only: Set to true to acknowledge alarm.
DigitalAlarmAcknowledged Read only: True if alarm is currently acknowledged.
DigitalAlarmActive Read only: The alarm state is active.
DigitalAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
DigitalAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
DigitalAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
DigitalAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
DigitalAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
DigitalAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
DigitalAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
DigitalAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
DigitalAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
DigitalAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
DigitalAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
DigitalAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
DigitalAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
DigitalAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
DigitalAlarmDocument Configuration property: The document path that is included in an alarm message.
DigitalAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
DigitalAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
DigitalAlarmEnable Configuration property: Enable alarm limit.
DigitalAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
DigitalAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
DigitalAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
DigitalAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen.
DigitalAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
DigitalAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
DigitalAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
DigitalAlarmLimit Configuration property: The value of the alarm limit, for digital alarms this will be true or false.
DigitalAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
DigitalAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen.
DigitalAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
DigitalAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
DigitalAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
DigitalAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
DigitalAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
DigitalAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
DigitalAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
DigitalAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
DigitalAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
DigitalAlarmPreviousValue Read only: The previoius alarm limit value.
DigitalAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
DigitalAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
DigitalAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
DigitalAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
DigitalAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
DigitalAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
DigitalAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
DigitalAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
DigitalAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
DigitalAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
DigitalAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
DigitalAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
DigitalAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
DigitalAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
DigitalAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
DigitalAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
DigitalAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
DigitalAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
DigitalAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
DigitalAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
DigitalAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
DigitalAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
DigitalAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
DigitalAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
DigitalAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
DigitalAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
DigitalAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
DigitalAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
DigitalAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
DigitalAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
DigitalAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
DigitalAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
DigitalAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
DigitalAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmDigitalTimeOn Read only: How Long the alarm is active for the current instance.
AlarmDigitalTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmDigitalTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmDigitalTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmDigitalTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmDigitalCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmDigitalCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmDigitalCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmDigitalCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.
AlarmStatusROC Read only: The alarm state is active.
ROCAlarmABAddress Configuration property: The Allen Bradley variable address.
ROCAlarmAcknowledge Write only: Set to true to acknowledge alarm.
ROCAlarmAcknowledged Read only: True if alarm is currently acknowledged.
ROCAlarmActive Read only: The alarm state is active.
ROCAlarmCalculation Configuration property: The equation when the Data Source is set to Calculation. See Getting Started with Calculations for descriptions of all functions.
ROCAlarmDailyTimeRangeDisable Configuration property: Disable the alarm daily between the Start Hour and Minute and the End Hour and Minute.
ROCAlarmDailyTimeRangeDisableEndHour Configuration property: The hour to end disabling the alarm daily.
ROCAlarmDailyTimeRangeDisableEndMinute Configuration property: The minute to end disabling the alarm daily.
ROCAlarmDailyTimeRangeDisableStartHour Configuration property: The hour to start disabling the alarm daily.
ROCAlarmDailyTimeRangeDisableStartMinute Configuration property: The minute to start disabling the alarm daily.
ROCAlarmDataSource Configuration property: The source Of where the value will come from. The Data Source can be Set To one Of the following types:
Value: Fixed value that can be set in configuration or from any client.
AB Classic: Communications to Allen Bradley MicroLogix, SLC 500, and PLC-5.
AB Logix: Communications to Allen Bradley ControlLogix, CompactLogix, GuardLogix, and Micro800.
AWS IoT Gateway: Amazon Web Services IoT Gateway.
Azure IoT: Azure IoT Data Hub.
Calculation: Math equation with multiple tag parameters as a data source. The result is read only and cannot be written to. View the following video to see how to define a Calculation.
CANBus: CanBus interface
FileBinary: Reads value from binary file with the file name of the full tag path And parameter name And extension .bin located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileText: Reads value from text file with the file name of the full tag path And parameter name And extension .txt located in the directory specified in the File Data Source Path parameter under Configure-Options. When value is written to Tag the file will be updated with New value.
FileXML: Reads value from xml file With the file name Of the full tag path And parameter name And extension .xml located In the directory specified In the File Data Source Path parameter under Configure-Options. When value is written To Tag the file will be updated With New value.
Modbus: Modbus master communications for Modbus TCP, Modbus RTU, and Modbus ASCII all supported on both Ethernet and Serial interfaces.
MQTT: Communications to MQTT brokers to send and receive data to MQTT devices and software.
MTConnect: Automated tag creation and live value update from MTConnect.
OPC: Value from Classic DA 2.XX or 3.0 OPC Server.
OPC UA: OPC UA Server.
Siemens: Communications to Siemens S7-200, S7-300, S7-400, S7-1200, and S7-1500.
Simulation: Dynamic simulation of data.
Tag: Value is from another tag parameter from the same service or remote service. The result is read only and cannot be written to.
Year: The current year as an Integer. Value is read only.
Month: The current month as an Integer. Value is read only.
Day: The current day as an Integer. Value is read only.
Hour: The current hour as an Integer. Value is read only.
Minute: The current minute as an Integer. Value is read only.
Second: The current second as an Integer. Value is read only.
Seconds Today: The total number of seconds elapsed in the current day as an Integer. Value is read only.
Weekday: The current weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
Weekday Name: The current weekday as a String. Value is read only.
Date Time String: The current date And time as a String. Value is read only.
UTC Year: The current Universal Time Code year as an Integer. Value is read only.
UTC Month: The current Universal Time Code month as an Integer. Value is read only.
UTC Day: The current Universal Time Code day as an Integer. Value is read only.
UTC Hour: The current Universal Time Code hour as an Integer. Value is read only.
UTC Minute: The current Universal Time Code minute as an Integer. Value is read only.
UTC Second: The current Universal Time Code second as an Integer. Value is read only.
UTC Seconds Today: The total number of seconds elapsed in the current Universal Time Code day as an Integer. Value is read only.
UTC Weekday: The current Universal Time Code weekday As an Integer. Value is read only. 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
UTC Weekday Name: The current Universal Time Code weekday as a String. Value is read only.
UTC Date Time String: The current Universal Time Code Date And time As a String. Value is read only.
UDP Client Tag: Tag from a remote service with the UDP Broadcast feature enabled.
Univeral Driver Interfaces will also appear here in the Data Source property
ROCAlarmDateRangeDisable Configuration property: Disable the alarm between a Start date and End date.
ROCAlarmDateRangeDisableEnd Configuration property: The date to end disabling the alarm between a Start and End date.
ROCAlarmDateRangeDisableEndString Configuration property: The date as a string to end disabling the alarm between a Start and End date.
ROCAlarmDateRangeDisableStart Configuration property: The date to start disabling the alarm between a Start and End date.
ROCAlarmDateRangeDisableStartString Configuration property: The date as a string to start disabling the alarm between a Start and End date.
ROCAlarmDeadband Configuration property: The amount that the value must be within the limit before the alarm condition is cleared.
ROCAlarmDefaultValueDataTypeWhenBad Configuration property: The data type to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
ROCAlarmDefaultValueWhenBad Configuration property: The value to use when the Source When Bad is set to Set Sources to Default Value. See Source When Bad for full description.
ROCAlarmDocument Configuration property: The document path that is included in an alarm message.
ROCAlarmDynamicAlarmText Configuration property: The Alarm Text of an alarm message can be dynamic based on other Tag values.
The following options can be used for changing the Alarm Text
Static Alarm Text: No change to the alarm text is performed, the default Alarm Text is used.
Prepend Alarm Text: Adds the value of the dynamic alarm text tag ahead of the base Alarm Text.
Overwrite Alarm Text: Replaces the alarm text entirely with the value of the dynamic alarm text tag.
Append Alarm Text: Appends the value of the dynamic alarm text after the base Alarm Text.
Calculation: The alarm text is replaced with the result of a Calculation.
When the alarm occurs the current value of the alarm message is locked for that instance of the alarm so when it is acknowledged or it clears the message is the same for all states.
ROCAlarmDynamicAlarmTextTag Configuration property: The Tag that will contain the string value to update the alarm text.
ROCAlarmEnable Configuration property: Enable alarm limit.
ROCAlarmEnableTag Configuration property: Tag that will control when the alarm limit is enabled.
ROCAlarmEnableWithTag Configuration property: When enabled a Boolean Tag defined controls if the alarm limit is enabled.
ROCAlarmGain Configuration property: The Gain is a multiplier to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
ROCAlarmGroup Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. Simply enter the new alarm group or select from the existing list of groups. OPC, System, and Tag Client are default alarm groups used to identify system and communication alarms.
ROCAlarmHighRange Configuration property: The Default Y Axis Range High For a trend pen and the high limit when Limit Writes is enabled.
ROCAlarmIsReadOnly Configuration property: When enabled the AlarmLimit cannot be written to.
ROCAlarmLatchEnable Configuration property: When set to true each alarm instance will latch in the active state and will only return to normal when LatchReset is set to true after the alarm has returned to normal.
ROCAlarmLatchReset Write only: Resets a latched alarm when LatchEnable is used.
ROCAlarmLimit Configuration property: The value of the alarm limit.
ROCAlarmLimitWrites Configuration property: Limit writes from users and clients within the High Range and Low Range.
ROCAlarmLogAsEvent Configuration property: When the Value reaches the alarm limit the event will not be indicated and recorded as an alarm with acknowledge state, but instead as an event that just records the one instance of when it reaches the alarm limit.
ROCAlarmLowRange Configuration property: The Default Y Axis Range Low For a trend pen and the low limit when Limit Writes is enabled.
ROCAlarmOffset Configuration property: The Offset is an addition to the raw incoming value except when the Data Source is Value:
Value = RawValue * Gain + Offset
When writing to an item the calculation is reversed:
OutputValue = (Value – Offset) / Gain
ROCAlarmOPCDeviceRead Configuration property: When enabled the Tag defined For the Device Read will control communications To only read the OPC Item With a SyncRead When the tag transitions from False To True. Normal asynchronous communications is disabled If this Property is enabled.
ROCAlarmOPCDeviceReadTag Configuration property: The Tag that will cause a syncread To the OPC Item When the value transitions from False To True.
ROCAlarmOPCItem Configuration property: The OPC Item from a classic OPC DA Server.
ROCAlarmOPCQuality Configuration property: Read only: The integer quality of the value when the Data Source is set to a Classic OPC Server. Typical value is 192 when the data quality is good.
ROCAlarmOPCUpdateRate Configuration property: OPC Update Rate for classic OPC Server item. Each unique rate creates an individual Group In the Server For subscription
ROCAlarmOverrideOPCQualityWhenBad Configuration property: Forces the OPC Quality that is passed onto the OPC Systems.NET OPC Server to good quality when the Data Source When Bad Quality is set to something other than the default of Normal Bad Quality and the Data Source is set to an OPC Item.
ROCAlarmPreviousTimestamp Read only: The timestamp of the previous alarm limit returned as a Date.
ROCAlarmPreviousTimestampString Read only: The timestamp of the previous alarm limit returned as a String.
ROCAlarmPreviousTimestampTicks Read only: The timestamp of the previous alarm limit returned as a Long Integer in Ticks.
ROCAlarmPreviousValue Read only: The previoius alarm limit value.
ROCAlarmPriority Configuration property: Used in Alarm Logging, Alarm Notification, and .Net and Web Alarm interfaces for filtering alarms based on group. The valid range is from 0 to 2,147,483,647.
HighHighAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
ROCAlarmQuality Quality of alarm limit value, true when good quality, false when bad quality.
ROCAlarmQualityActual Read only: Quality of alarm limit value, true when good quality, false when bad quality.
ROCAlarmReadOnlyValue Configuration property: When enabled the AlarmLimit cannot be written to.
ROCAlarmSampleRate The rate at which successive samples of a DataItem are recorded. SampleRate is expressed in terms of samples per second. If the sample rate is smaller than one, the number can be represented as a floating point number. For example, a rate 1 per 10 seconds would be 0.1
ROCAlarmSiemensAddress Configuration property: The Siemens variable address. See Siemens Address Syntax for address syntax.
ROCAlarmSimulationRate Configuration property: The rate of alarm limit value changing for Simulation data.
ROCAlarmSimulationType Configuration property: Ramp will incrment in value from 0 to 99.
Sine will change value from -1 to 1 based on the time each 60 seconds.
Random will result in a random number with a range of 0 to 99
Toggle will transition between true and false
ROCAlarmSourceWhenBad Configuration property: Allows the alarm limit value and data quality to be overridden when the value quality is bad.
The following are the four (4) available options for Source When Bad:
NormalBadQuality: When the data source is bad quality the result is bad quality. With Calculations any one of the source tags in the calculation being bad quality will cause the result to be bad quality.
SetSourcesToDefaultValue: When the data source quality is bad the source value is overridden to be what is set as Default Value with the data type of Default Value Type. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set to the Default Value when its individual data quality is bad. This will result in the calculation performing the equation with the remaining actual values with tags with good quality and overriding the values for the tags that are bad quality.
HoldSourcesToLastGoodValue: When the data sources quality changes to bad quality the last good value will be used as the data source. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be held with its last good value when its individual data quality is bad. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with each individual tags last good quality.
SetSourcesToTagValue: When the data sources quality is bad the value from another Tag will be used. With Calculations that have multiple tag parameters as a source each individual tag value in the calculation will be set from the other Tag value. This will result in the calculation performing the equation with remaining actual values with tags with good quality and overriding the values for the tags that are bad quality with the assigned tag’s value.
Tag Configuration property: Specify a local Or remote Tag To receive the value from when the Data Source is set to Tag.
ROCAlarmTag Configuration property: Specify a local or remote Tag to receive the value from when the Data Source is set to Tag.
ROCAlarmTagID Configuration property: Internal variable used for programmatic access to identify tag. Can be set to any string value for custom identifier.
ROCAlarmText Configuration property: Alarm text to use for Alarm Logging, Alarm Notfication, and .NET and Web Alarm interface.
The Alarm Text can be fixed or dynamic with the Dynamic Alarm Text attribute.
ROCAlarmTextValue Read only: The current alarm text that would be used when the alarm transistions into the active state.
ROCAlarmTimeDelay Configuration property: The time delay in seconds that the alarm condition must remain active before the alarm is posted as an active alarm. The date and time when the alarm first became active is used as the alarm date and time, not the date and time it was posted as an active alarm.
If you would Like the AlarmStatus parameter To be Set immediate And Not wait For the Time Delay use Configure-Options To Set Update Alarm Status Immediately without Alarm Time Delay.
ROCAlarmTimeDelayRemaining Read only: The time remaining in seconds if the tag value exceeds the alarm limit and is waiting the time delay to set the alarm as active.
ROCAlarmTimeOnAndCountsEnable Configuration property: When enabled it will keep track of how long the alarm is active and how many times it transitions from inactive to active state.
The Time On And Counts feature will keep track of the following
How Long the alarm is active for the current instance.
How Long the alarm is active for the current day.
How Long the alarm is active for Period 1.
How Long the alarm is active for Period 2.
How Long the alarm is active for all of time.
How many times the alarm state has transitioned from inactive to active for the current day.
How many times the alarm state has transitioned from inactive to active for Period 1.
How many times the alarm state has transitioned from inactive to active for Period 2.
How many times the alarm state has transitioned from inactive to active For all of time.
ROCAlarmTimeOnAndCountsDailyResetHour Configuration property: The hour the Time On and Counts daily totals will be reset each day.
ROCAlarmTimeOnAndCountsDailyResetMinute Configuration property: The minute the Time On and Counts daily totals will be reset each day.
ROCAlarmTimeOnAndCountsPeriod1 Configuration property: The total time in minutes to track for Period 1 of Time On and Counts.
ROCAlarmTimeOnAndCountsPeriod2 Configuration property: The total time in minutes to track for Period 2 of Time On and Counts.
ROCAlarmTimeOnAndCountsResetEnable Configuration property: When enabled the Time On and Counts totals are reset when the Boolean Tag defined transistions from False to True.
ROCAlarmTimeOnAndCountsResetTag Configuration property: The Boolean Tag that will reset the Time On and Counts totals when its value transitions from False to True.
ROCAlarmTimeOnUnits Configuration property: The Time On values can be returned as Hours, Minutes, or Seconds.
ROCAlarmTimestamp Read only: The timestamp of the current alarm limit value returned as a Date data type.
ROCAlarmTimeStampOffset Configuration property: The amount of time to offset the alarm timestamp to match a particular time zone. If you prefer to use Universal Time Code enable the property Use UTC Timestamp under Configure-Options-Time.
ROCAlarmTimestampString Read only: The timestamp of the current alarm limit value returned as a string.
ROCAlarmTimestampTicks Read only: The timestamp of the current alarm limit value returned in Ticks.
ROCAlarmTimestampUNIX Read only: The timestamp of the current alarm limit value returned in UNIX Epoch.
ROCAlarmTimestampPolled Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a Date data type.
ROCAlarmTimestampPolledString Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned as a string.
ROCAlarmTimestampPolledTicks Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in Ticks.
ROCAlarmTimestampPolledUNIX Read only: The time when the Modbus value for the alarm limit was last polled to obtain the current value returned in UNIX Epoch.
ROCAlarmTrendPoint Configuration property: Enable Trend Point To have the alarm limit, time on and counts, and alarm status available for trending from Trend .NET and Web Trend. You can data log a Parameter value without trending the point If desired.
ROCAlarmUDPClientTag Configuration property: The Tag in the broadcasting service to receive the value into the alarm limit when using one way UDP Broadcast feature.
ROCAlarmUnits Configuration property: Engineering Units that is included in the alarm message.
AlarmROCTimeOn Read only: How Long the alarm is active for the current instance.
AlarmROCTimeOnCurrentDay Read only: How Long the alarm is active for the current day.
AlarmROCTimeOnPeriod1 Read only: How Long the alarm is active for Period 1.
AlarmROCTimeOnPeriod2 Read only: How Long the alarm is active for Period 2.
AlarmROCTimeOnTotal Read only: How Long the alarm is active for all of time.
AlarmROCCountCurrentDay Read only: How many times the alarm state has transitioned from inactive to active for the current day.
AlarmROCCountPeriod1 Read only: How many times the alarm state has transitioned from inactive to active for Period 1.
AlarmROCCountPeriod2 Read only: How many times the alarm state has transitioned from inactive to active for Period 2.
AlarmROCCountTotal Read only: How many times the alarm state has transitioned from inactive to active For all of time.

 

 

MQTT Broker

OAS is both a MQTT Client and MQTT Broker.

To interface with another MQTT Broker please see the Getting Started MQTT guide.

To send and receive data to a Sparkplug B Edge of Network Nodes see the Getting Started Sparkplug B Host App guide.

To enable OAS as a Sparkplug B EoN Node to interface with Host and Client Applications see the Getting Started Sparkplug B EoN Node guide.

The Open Automation Software MQTT Broker is built into the OAS Engine which can be deployed on both Windows and Linux operating systems.  MQTT Broker support was added to OAS version 15.00.0001 and does require a license of the MQTT driver to enable read and write functionality.

The OAS MQTT Broker supports reading, and writing to all local and remote OAS Tags, including Live Data Cloud.

You can view the MQTT Broker Video to familiarize yourself with the following steps to interface with local and remote OAS Tags.

  • 0:00 – Introduction – OAS as MQTT Broker
  • 0:15 – OAS as MQTT Client and MQTT Broker
  • 0:20 – MQTT Client
  • 0:40 – MQTT Protocol
  • 0:44 – What’s MQTT Broker
  • 0:58 – Where is built MQTT Broker
  • 1:07 – What MQTT Broker support and requires
  • 1:29 – How to Interface MQTT Client with OAS as an MQTT Broker
  • 1:41 – How to verify if you have a valid license for MQTT
  • 2:07 – Set up OAS as a MQTT Broker
  • 3:23 – Set up to Subscribe to OAS MQTT Broker
  • 5:54 – Sending a JSON message to the OAS MQTT Broker from MQTT Client
  • 7:08 – More information

The following guide demonstrates how to interface an MQTT Client with OAS as a MQTT Broker.

Step 1

After installing Open Automation Software the verify you have a license of MQTT on OAS Engine that the MQTT Client will connect with.

Use the Configure OAS application and go to Configure-License and use Select to check the OAS Engine that MQTT appears in the Enabled Drivers list.

Drivers

Step 2

To setup the OAS MQTT Broker go to Configure-Options and select the MQTT Broker tab.

MQTT Broker Options

  • Enter the ID you want to use for the OAS Broker in the OAS MQTT Broker field.
  • Choose either the default broker port (1883) or enter a new port into the OAS MQTT Broker Port field.
  • For SSL/TLS, choose either the default broker SSL port (8883) or enter a new port into the OAS MQTT Broker SSL Port field.
  • If you want to use SSL/TLS, Check the box for OAS MQTT Broker Enable SSL.
    • In the MQTT Private Key File field select Browse and select your private key file.
    • If you have a password assigned to the private key enter it into the MQTT Private Key Password field.
  • Enter the username in the MQTT Client Username field to require MQTT Clients to connect using a specific username.
  • Enter the password in the MQTT Client Password field to require MQTT Clients to connect using a specific password.
  • Optionally enter Topic Aliases to map topic names to OAS tag names.  This is only required if the MQTT client cannot define the topics to interface with.

Step 3

If security is left to the Default to Enable All Features in all OAS Engines you can proceed to Step 4.

If Security has been setup on any of the OAS Engines to restrict Reading Tags or Writing Tags go to Configure-Options and select the Remote Services tab.

OAS Service User

Set the Security User Name and Security Password to user to gain access to the remote OAS Engine for read and write access to the tags to be monitored and set by the MQTT Broker.

Step 4

The OAS MQTT Broker is now ready for use.

Naming Conventions

To access OAS tags set your topic to the OAS standard naming convention. A few examples below.

  • Read the value from the Ramp tag on the local OAS service. Topic = Ramp.Value
  • Read the Description from the Ramp tag on the local OAS Service. Topic = Ramp.Description
  • Read the value of Alarms Not Acked tag in the subgroup Alarms on the local OAS service. Topic = Alarms.Active Not Acked.Value
  • Read the value of the Ramp tag from a remote OAS service. Topic = \\Domain or IP address\Ramp.Value

Basic Networking:

\\192.168.0.1\TagName.Value

Live Data Cloud Networking from local OAS Engine:

RemoteSCADAHosting.myLiveDataCloudNode.TagName.Value

Live Data Cloud Networking through remote OAS Engine:

\\192.168.0.1\RemoteSCADAHosting.myLiveDataCloudNode.TagName.Value

Payload

The payload is in standard JSON format and includes the Value, Timestamp, and Quality.

Example Payload for Ramp.Value: {“Value”:84.0,”TimeStamp”:”2020-07-22T12:59:44-04:00″,”Quality”:true}

To return the tag value only not in JSON format subscribe to TagName.ValueOnly.  Supported with OAS version 20.00.0133 or greater.

To Write to an OAS Tag use the same topic format as described above.

You can publish to any existing Tag.

You can create tags with the Data Type set to JSON in OAS to be able to publish extended meta data on OAS Tags. Using the JSON Handling in OAS you can parse the JSON message for extended functionality.

Wildcards

The following wildcards are supported with OAS version 18.00.0041 or greater.

  • # – Subscribe to all tags from the OAS Engine for the .Value variable of each tag.
  • +/<tag variable> – Subscribe to all tags from the OAS Engine for the tag variable specified.  Example: +/DigitalAlarmActive

Deployment

You can deploy the OAS Engine to multiple servers on Windows or Linux using standard deployment or Docker containerized deployment, each OAS MQTT Broker supports communications to any OAS Engine.

OAS in Docker Containers

The OAS Platform is capable of running in Docker containers on both Windows and Linux, with only a slight variation in configuration. In this article we will walk through the necessary steps for basic containerization, but using these principles you can build your own images and configure them for your particular needs.

  • 00:00 – Introduction
  • 00:15 – Container Installation
  • 00:34 – Application Stack
  • 00:48 – Steps for running docker
  • 01:32 – Create a Docker Image
  • 04:04 – Set of Instructions
  • 05:10 – Commands
  • 05:45 – Run your Container
  • 10:26 – Configure the License Host
  • 14:19 – Remaining Steps
  • 18:06 – Configure Licensing
  • 18:55 – More Information

Prerequisites

The OAS Platform was designed to be a high performance IoT Gateway, Data Logging engine, data visualization server, and more. To benefit from these features, whether the server is running as a stand alone or in a container, be sure to consider the following:

  • Docker experience – this document assumes some familiarity with containerization concepts, specifically with Docker, and is not intended to be a tutorial on Docker or containers in general. To learn more about Docker, see the following: Docker-What is a Container?
  • Networking – the server must be able to reach external resources, and if being accessed by any of the OAS SDKs for visualization or programmatic configuration, the server must be accessible from external sources. This is easily accomplished by exposing the necessary ports. Port 58727 is the default port used for TCP communications when using .NET SDKs and the OAS Configuration application. Port 58725 is the default port used for Web Visualization tools as well as the REST API. Running stand alone, you are free to change these ports as needed. However, when running in a container, these default ports should not be changed (more on this later).
  • Memory and CPU – when running multiple instances of the OAS Platform in containers, expect memory and CPU utilization to increase as a result. The amount of each needed entirely depends on your individual configurations, such as how many Tags are being used in each container, data logging, alarming, etc. Be sure to size your deployment platform only after testing with your intended configurations to determine the footprint. You can refer to the following for suggested CPU and RAM hardware requirements based on Tags and features to be implemented: OAS Recommended Hardware

Containerization Options

Docker containers can be configured to run completely independently or they can run utilizing shared resources on the Host server. OAS supports both scenarios, allowing you to utilize self-contained configuration files or shared configuration files on a Host using mapped volumes. This allows for generic containers to be spun up with identical configurations, or simply to allow the management of configurations external to a container.

Comparison of OAS containers running self-contained and with shared configuration files on the host.

Installing an OAS Image

All Docker versions of the OAS Platform are available on Docker Hub and can be pulled into your local machine with a single command. This makes installation and upgrading extremely convenient. You can browse all OAS images at hub.docker.com/u/oasiot. Once you have chosen the image you would like to use, matching the OS/architecture (e.g. Linux/x64 or Windows/AMD64) execute the pull command, which is provided on the page for each image. For example, the pull command for Linux/x64 is:

docker pull oasiot/oas-linux

This will download the latest version of the image. So, if OAS releases a new version, simply re-run the pull command and you can always be up-to-date. If you would like to pull a specific version, you can use the version tag in the pull command. For example, pulling version 15.00.042 would use:

docker pull oasiot/oas-linux:15.00.042

Using a version tag in your workflow will allow you to keep your installations uniform and predictable.

Running your new container

To run an instance of this image in a container, execute the following command. This will spin up an instance and display the console output in the terminal window. The container can be stopped by hitting CTRL-C. By default, the docker runtime will provide a randomized unique name for the container.

docker run -it oasiot/oas-linux

The container will now be running, and will be assigned an IP address only accessible from the host machine. If you want to map the container’s ports to ports on the host, allowing the container to be reached from external systems, you can use the -p or -P flags in the docker run command. For example this will map the host’s port 58727 to the container’s port 58727, so you can then reach the container from the host’s IP address on port 58727, allowing you use the OAS Configuration application remotely to connect into the container:

docker run -it -p 58727:58727 oasiot/oas-linux

To allow the Docker engine to assign random port mapping, you can use the following command. After doing this, just inspect the running container to see which ports have been assigned:

docker run -itP oasiot/oas-linux

Optional: Creating your own Image

Before any application can be run as a Docker container, it has to be bundled in an image. The process of creating an image involves the creation of a Dockerfile with configuration options, and calling docker build against the file. Whether the target platform for running the container is Linux or Windows, the process is the same, with some slight variations on the contents of the Dockerfile. For more information on Dockerfiles and their syntax, see the online documentation.

To containerize the OAS Platform we will take the following steps:

  • Ensure that Docker is installed properly on the target platform
  • Download and extract the OAS Platform distribution for Linux or Windows .NET Core depending on the chosen platform
  • Copy the contents to the target server in a directory, e.g. /oas-docker/oas-linux, /oas-docker/oas-win
  • Within the /oas-docker directory, create a text file called Dockerfile with the following contents. If you are familiar with crafting Dockerfiles, you can modify these settings to your preferences, as long as the default ports in the EXPOSE commands are not changed.

Linux Dockerfile

FROM mcr.microsoft.com/dotnet/runtime:6.0
EXPOSE 58725
EXPOSE 58727
EXPOSE 58728
EXPOSE 1338
EXPOSE 8338
EXPOSE 502
COPY /oas-linux/ /oas/
RUN chmod +x /oas/OASEngine
ENTRYPOINT ["./oas/OASEngine"]

Windows .NET Core Dockerfile

FROM mcr.microsoft.com/windows/nanoserver:1803
EXPOSE 58725
EXPOSE 58727
EXPOSE 58728
EXPOSE 1338
EXPOSE 8338
EXPOSE 502
COPY ./oas-win/ ./oas/
USER "NT Authority\System"
ENTRYPOINT ["/oas/OASEngine.exe"]

As you see, the Windows Dockerfile differs from the Linux version. The FROM entry references the nanoserver tag which is a bare bones Windows runtime host. The same ports are mapped in the EXPOSE lines. The COPY command copies the contents of the oas-win directory to the container’s oas directory. You’ll note the addition of the USER command, which specifies that the context the OAS Platform should run on is the System account with elevated privileges. This is required. Lastly, the ENTRYPOINT is modified to call the OASEngine.exe executable. Also, see the section below titled Windows Containers as you may run wither Linux or Windows applications in containers on the Windows platform.

  • Build the OAS container image with the following command. This creates and registers a reusable image that can be spun up as multiple side-by-side containers:
docker build --tag oas .
  • The OAS Platform allows you to customize which ports are used for configuration communications as well as for access with SDKs, the REST API, and WebHMI products. When using OAS within a container, it is important to use the defaults of 58727 for TCP communications and 58725 for HTTP calls. These can be mapped to fixed host ports within the Dockerfile, or mapped dynamically during the execution of “docker run”. The OAS LicenseHost relies on the default underlying ports to allow for license activation, but you may still map these to customized ports if you want to access the containers via localhost.

Options for running a container

Providing a custom name

If you run a Docker container with the previous command, the Docker runtime will assign a random name for that instance. You can provide a custom name for the container to more easily identify the container. This must be a unique name on the server since no two containers can have the same name. This example runs the container, giving it the name “oas_production”:

docker run -it --name oas_production oas

Mapping a host volume

In some cases, you may want several running OAS container instances to share the same configuration files so that when they spin up, they pick up the same settings. To do this, we’ll follow these steps:

  • Move the ConfigFiles directory to a location on the host machine
  • Build the docker image
  • Run the image using the -v host_dir:container_dir option to create a virtual directory in the container mapped to the host
docker run -v /OASConfigs:/oas/ConfigFiles --name oas1 oas
  • Mapping host directories can also be useful if you are logging data to a SQLite database, as they are file-system based and you would not want data lost when you spin down a container.
  • You can map multiple volumes for such a configuration, combined with the command above:
docker run -v /OASConfigs:/oas/ConfigFiles -v /SQLiteData:/oas/SQLiteData --name oas1 oas

Then, in your SQLite logging configuration, you would use /oas/SQLiteData as the path for the database.

Licensing

A stand-alone installation of the OAS Platform is licensed directly my using the OAS Configuration application. You select Configure > License, select the machine (typically localhost if working on the current machine) and are presented with a unique License Code for the machine. This is sent to OAS and you will then be provided an encoded License Key that will activate the features you have purchased.

Running the OAS Platform in containers, licensing is handled slightly differently. On the container host machine, you install and run the License Host application, which communicates with all running containers to activate product features, and recognizes new containers as they spin up. When purchasing a license from OAS, you will select product features to enable along with a number of tags, and if deploying OAS within containers, you also select the maximum number of containers you will be running on the host.

Standalone installations of the OAS Platform are licensed directly.
Containers acquire their license from the LicenseHost installed on the host

Installing the License Host

Linux

On a Linux system, the installation and execution of the License Host is similar to installing the OAS Platform itself. From the product downloads page, locate the License Host for Linux and download the ZIP archive. Unzip this file and move the contents to your preferred location, then execute the following command on the Linux server to make the application executable:

sudo chmod +x LicenseHost

You can now run the LicenseHost application directly with the ./LicenseHost command, or configure it to be started with the system when it boots up. You can follow the directions for setting up an application as a daemon on Linux from Step 3 of our online documentation, replacing the name and path of the OASEngine with that of the LicenseHost, where applicable.

Windows

On Windows, the LicenseHost installer registers it as a Windows Service. Download and install the License Host and start the service either manually in the Windows Services control panel, or using the OAS License Host application from the Start menu, which acts as a service control for just the License Host. The service is named “OAS License Host” if you choose to start it manually

Managing Licenses with the License Host

After starting the License Host on the container host server, you can connect to it from the OAS Configuration Application to apply or modify a license for that server. Select Configure > Container License from the main dropdown menu and enter the IPAddress of the host server.

Note that the LicenseHost will communicate on port 58729 so the host machine must allow TCP communications on that port so adjust your firewall rules accordingly. If you choose to change this port, locate the appsettings.json file in the distribution of the LicenseHost application and change the port number within it. You can also use this file to secure the License Host by adding a username/password combination.

Configuring the license on the container host is identical to configuring a license on a stand alone installation of the OAS Platform. Your License Code is used to acquire a License Key from OAS Support, and the key contains information about the product features to enable along with the maximum number of containers it will support.

For more information on licensing an OAS server, see the following Knowledge Base article: OAS License Activation

Testing your installation

Once your containerized OAS installation is running, you can connect to the individual containers with the OAS Configuration application and inspect Tags or any other feature. You will need to connect using the container’s assigned IP address, found by inspecting the Host Docker service. If you have not mapped the custom ports to the defaults of 58725 and 58727, you can use these directly with the containers’ IPAddress. If you have mapped ports, you can use the host’s IP address (or localhost on the host itself) with the custom ports.

Considerations for Windows Containers

Assuming you are running Docker Desktop on Windows, you first need to make sure to switch to “Windows Containers”. By default, Docker Desktop assumes you will be using Linux containers with Hyper-V. To make the switch, you can go to the Docker Desktop tool and select “Switch to Windows containers…”

Alternatively, you can use the following Windows PowerShell script to switch:

& $Env:ProgramFiles\Docker\Docker\DockerCli.exe -SwitchDaemon .

NOTE: Switching to Windows containers requires a minimum of Windows 10 Pro or Windows Server. Windows Home is not supported.

JSON Handling on the OAS Platform

The OAS Platform offers support for handling and manipulating JSON formatted data, which is crucial when integrating with many external systems such as cloud-based analytics platforms, and for working within common Industrial IoT scenarios. Specifically, data passed between systems using the MQTT protocol, data sent and received from REST APIs, and even records stored in many database engines all use JSON formatting for hierarchical data. For more information on JSON, see our article “What is JSON?” on how it is structured and compares to other similar data formats like XML.

JSON Data Type

Along with other standard Data Types such as Integer, String, Double Float, etc., OAS Tags can be assigned the JSON Data Type. This functions very much like a String Data Type except that internal JSON validation is performed whenever the value changes. This validation ensures that the value set on the Tag is properly formatted JSON. If the validation fails, the Tag will be marked as having Bad Quality. Your applications and other tags can be configured to respond to this state as needed, preventing invalid JSON from reaching other endpoints.

To set a Tag as a JSON Data Type, simply select JSON from the Data Type dropdown and click Apply Changes. Validation will immediately take effect. For all other operations such as Tag Calculations, you can reference a Tag of JSON Data Type just as you would with a String Tag. Values from JSON Tags can also be used in Text Calculations just as you would with String data.

Select JSON as a Data Type for Tag Configurations

JSON Data Source

In addition to setting the Data Type to JSON for automatic data validation, you can also set the Data Source as JSON for highly customizable generation of JSON data packets. This is especially useful for storing structured data or for crafting JSON data packets to be sent to external systems such as MQTT clients, or other 3rd party cloud applications. Using the JSON Data Source gives you the ability to define a base JSON structure, then use JSONPath syntax to locate nodes in the structure for replacement with OAS Tag data.

Learn more about the JSON Data Source, including some advanced usage and examples.

Setting the Data Source as JSON reveals additional properties

A Tag with a JSON Data Source can have a base Structure set directly as a valid JSON string, or it can be set using another Tag. This will allow you to dynamically modify the base structure, or use the same base structure for multiple tags. Below is an example of editing the JSON structure directly.

The JSON structure can be edited directly on the Tag

Assigning key/tag pairs are done in the by selecting Add in the table below the Structure property. This will open a Tag browser which allows you to pick a Tag from the local OAS instance or any reachable remote OAS instance. The key is a search parameter defining where to find the JSON node to fill with the Tag value. This key uses JSONPath syntax and can be either a direct path to the node or a dynamic query to find one or more nodes matching the criteria. For more information on JSONPath syntax, see this article.

This example illustrates injecting 3 Tag values using different JSONPath keys

JSON Data Visualization

You can access individual elements of JSON data for read and write access from any of the OAS client applications including WPF HMI, WinForm HMI, Web HMI, Excel, Calculations, Data Logging, Recipe, OPC UA client, OPC DA client, Data Route, and programmatic interface via .NET or REST API.

To access any individual element of an OAS tag with a Data Source of JSON use .JSON-<key name> as the tag variable. An example OAS_Tag.JSON-motors[0].current would provide read and write access of the current value of the first motor element of the array of motors.

The OAS Configuration Application also has the ability to recognize JSON data and will assist with visualization. For Tags of both String and JSON Data Type, clicking on the current value will display the value in text form. If the value can be parsed as valid JSON, it will be displayed using a hierarchical JSON visualizer allowing you to expand or collapse nodes and arrays, as well as see the data with syntax highlighting.

OPC UA Structures

OAS can read and write OPC UA values that are from flat or multi-level hierarchical structures. The element names and values will be parsed into JSON data as it is received from the OPC UA server. Values can also be written to the OPC UA server that represent structures.

JSON Calculations

The OAS Platform Calculation Engine provides powerful features for real time data transformations and logic. Additionally, the Calculation Engine supports a set of functions for generating, querying, and manipulating JSON data. For example, if you create a tag containing a JSON structure, you can use the JSON Calculations to locate data points within the structure, add other structures to the JSON, and even set values on a particular node. See our documentation on JSON Calculations for more information.

JSON and MQTT

The OAS Platform can act as an MQTT client as well as an MQTT broker. When used as an MQTT client with the MQTT Connector can publish and subscribe to any MQTT broker. This allows you to send OAS Tag data whenever values have changed. By default, OAS creates a simple JSON message that includes the current Tag value, and timestamp when it was updated in the OAS platform. If you prefer to craft your own custom message format, including more data and even data from multiple Tags, you can set the source Tag to the JSON data type or String data type containing valid JSON and the message published will be used instead of the default format. This includes using JSON Calculations to dynamically generate the Tag value as data changes. With this powerful feature you can guarantee the messages sent to remote systems comply with your requirements.

The OAS Platform built-in message payload for MQTT is simple and concise. The Tag’s current value, timestamp when the value changed, and the data quality of the tag are published as bare values in separate topics. For example, if your Tag name is MyTag, the topic of MyTag will contain the current value of the tag. In the configuration of a Tag with MQTT as the Data Source, you can also configure the topic name. Also, if you check “Include Timestamp” and/or “Include Quality”, an additional topic will be created for each.

While this is simple and easy to configure, there may be cases where you would like to send a custom payload containing the Tag’s value, timestamp, and quality in a single message published to a single topic. Or you may want to send values from multiple tags in a single payload. If you set the Tag Data Type to JSON or String containing a valid JSON structure, the payload will now contain the JSON structure. This means you can use a Calculation tag to construct your JSON, based on string literals or a segment derived from another larger JSON structure, or even combine multiple tags into a single JSON payload and you have the freedom to choose what gets sent to the MQTT Broker. For example, this JSON could be created from a JSON Calculation containing four tags in an array along with additional wrapper values:

{
  "title" : "MyTagData",
  "tags" : [
    {"n" : "Tag1", "v": true, "ts" : 1234567890, "q": "GOOD" },
    {"n" : "Tag2", "v": 99.12, "ts" : 1234567890, "q": "GOOD" },
    {"n" : "Tag3", "v": 14, "ts" : 1234567890, "q": "BAD" },
    {"n" : "Tag4", "v": "data", "ts" : 1234567890, "q": "GOOD" }
  ]
}

IoT Publish

OAS can publish any tag value to MQTT Brokers, AWS IoT Gateway, and Azure IoT Hub in bulk payload as one topic as JSON. View how to publish live data to AWS IoT Gateway, Azure IoT Hub, and MQTT Brokers. With these knowledge base articles you will see the structure created for bulk payload with multiple tags per topic and single topic payload for values from any OAS data source.

The tag IoT publish feature is built into each driver configuration to make setup extremely simple to define selected tags from the local OAS Engine or remote OAS Engine.

Videos – Calculations

Calculations

The following video demonstrates some of the basic functions within the Calculation Engine.  Please refer the the Calculations reference for a complete list of all current functions.

Watch Window

Below is a video tutorial detailing how to use the Watch Window:

NOTE: Adding a group of tags to the Watch Window will now add the tags within the group selected and all tags in all sub-groups.  To add all tags from an OAS Engine select the Tags root object and select Add to Watch.

The Watch Window is a feature of the OAS Configure Application that allows you to view the value of multiple tags at one time.   You can use it to view multiple tags from one Service installation or from multiple Service Installations at the same time.

It is free to use with the demo license or an active license for at least any one product feature.

The Watch Window is accessible from the Configure Tags screen. It can be opened by clicking the Watch Window button on the top menu bar.

Watch Window
To add a tag to the Watch Window,  select any tag and right click on it.  Then choose Add to Watch from the context menu.

Watch Window

The tag you selected will then appear in the Watch Window.

Watch Window

To resize the Watch Window, grab it by the bottom right corner and drag it to the size you would like.

You can also add a Tag Group to the Watch Window.  To do this, select the Tag Group, right click on it and choose Add to Watch.

Note: that it won’t add the tags in nested groups, if you want to do that, you must add the sub groups individually as well.

To delete Tags from the Watch Window, simply select the tags you want to delete and click the delete button.  You can hold the shift key to select multiple non-adjoining tags and the control key to select multiple adjoining tags.

You can save the current configuration in your Watch Window if you’d like.  Choose Save from the top menu and then save the file to a location on your file system.

The configuration files are saved in CSV format so you can open them in Excel and edit them yourself manually.  You can specify the Network Node and then the Tag Name right in Excel.

You can create and save multiple configurations for different purposes.  It is a very useful feature.

The Watch List feature is free to use with OAS with either the demo license or an active license for at least any one product feature.

If you want to run two separate Watch Windows, you can do that by opening a second instance of the OAS configure application and then open the second Watch Window there.  You can see now that I have two separate Watches running independently of each other.

OPC UA Client

OAS is both an OPC UA Client and OPC UA Server.

If you want interface OAS with an OPC UA Server please see the Getting Started OPC UA Server guide.

The Open Automation Software OPC UA Server is built into the OAS Engine which can be deployed on both Windows and Linux operating systems.  OPC UA Server support was added to OAS version 14.00.0042 and does require a license of the OPC Client Connector to enable read and write functionality.

The OPC UA Server supports browsing, reading, and writing to all local and remote OAS Tags, including Live Data Cloud, provided the OAS service hosting the Tags has a license of OPC Client.

View the following video to see how to connect OPC UA clients to the OAS OPC UA server.

The following guide demonstrates how to interface an OPC UA Client with OAS.

Step 1 – Check OPC Client License

OAS

After installing Open Automation Software verify you have a license of OPC Client on all OAS Engines that you want to interface with.

Start Configure OAS application from the program group Open Automation Software.

Use the Configure OAS application and go to Configure-License.

Check all OAS Engines that the OPC Client product appears in the Enabled Products list.

Enabled Products

Step 2 – Define User Security

The OAS Engine by default restricts Tag Browsing so in order for an OPC UA Client to browse tags there are 2 options.

Option 1: Specify User authentication in the OPC UA Client with an OAS user that would have access to Get Tag Group Names and Get Tags Names.

OPC UA Client User

Option 2: Go to Configure-Security and select the Default security group and allow Get Tag Group Names and Get Tag Names in the Tags tab of the Default security group.

Allow Tag Browsing

Step 3 – Connect OPC UA Client

In the OPC UA Client software use the endpoint url opc.tcp://localhost:58728 to connect to the server.  You can change the port number under Configure-Options-Network of the OAS Engine where the server is hosted with the property OAS OPC UA Server Port Number.

OAS OPC UA Server Port
OAS OPC UA Server Endpoint

Connect to the server from an OPC UA Client. We recommend Unified Automation’s UA Expert if you do not have a client to test with. You can also use OAS as an OPC UA client to define tags with data source of OPC UA.

Note: If you are unable to connect to the OAS OPC UA Server due to a certificate security error that is shown in the OAS System Errors go to C:\ProgramData\OpenAutomationSoftware\pki-server\ on Windows or the pki-server sub-directory where the OAS Engine is located on Linux and copy the files in the rejected\certs directory to trusted\certs.

Step 4 – Browse OAS Tags

From the OPC Client browse either the Local service or a remote service under the Network branch.

OPC UA Server Network

To add network nodes or IP Addresses where other OAS Engines are running go to Configure-Options-Networking and add to the NETWORK NODES form.  These will appear under the Network branch. 

Network Node List

We have used 127.0.0.1 in this example to demonstrate the feature, but in actual use it is not needed as it would be the same as browsing Local.

You will be able to browse all Tag Groups and Tags from the local or remote OAS Engine to then see all property values available for a Tag.

Value is the most commonly used Variable.  See Tag Variables for a complete list of all variables possible.

OPC UA Tag Browse

The NodeId returned with be the full tag path and the property selected.  It this case Ramp.Value for the local Tag Ramp.

OPC UA NodeId

Refer to Basic Networking and Live Data Cloud Networking for how remote Tag NodeIds are returned.

Local Tag

myGroup.myTag.Value

Basic Networking

\\192.168.0.1\myGroup.myTag.Value

Live Data Cloud Networking from local OAS Engine

RemoteSCADAHosting.myLiveDataCloudNode.myGroup.myTag.Value

Live Data Cloud Networking though remote OAS Engine

\\192.168.0.1\RemoteSCADAHosting.myLiveDataCloudNode.myGroup.myTag.Value
RemotesSCADAHosting OPC UA Tag

NOTE: Live Data Cloud hosting is only required if the hosting server has a dynamic IP Address without a fixed IP Address or fixed network node name.  Basic Networking is the most common method of networking.

Continue to browse additional Tag values to add to your OPC Client specifying the Publishing Rate for your desired update rate to your Client.

All Data Sources for OAS with a valid license are supported for communications through the OAS OPC UA Server.

You can deploy the OAS Engine to multiple server PCs, each OPC UA Server support communications to any OAS Engine with an OPC Client license that is also version 14.00.0042 or greater.

Web HMI in WordPress

The Web HMI, Web Trend, and Web Alarm products are completely open architecture that can be integrated into any web platform.  WordPress is one of the most popular platforms to create websites. 

NOTE: If you want to visualize your data in a desktop or mobile browser with zero programming, you may be interested in the OAS Open UIEngine .
The UIEngine is a robust no-code web application and HMI builder for developing rich user interfaces in a browser-based development environment.
See the UIEngine Documentation to learn more.

You can view the Web HMI in WordPress Video to familiarize yourself with the following steps to easily add a live user interface to your WordPress site.

What You Will Need to Start

In order to set up Web HMI in WordPress, you will need to have the ability to install a plugin on your WordPress site.  Depending on your plan with WordPress or your user restrictions you may or may not be able to do this.

You will also need to have the OAS Service running and a license for WebHMI.

Adding the Script Files

The first thing you will need to do is add some script files to your site.  If you don’t already have one, create a folder at the root of your site and call it js for JavaScript.  If you already have a scripts folder, you can just use that one.

OAS installs with the script files you need.  On my machine, they have been installed to: C:\Program Files\Open Automation Software\OAS\HTML_HMI.  The files that you need are:

  • opc-lib-min.js
  • lib/jquery-1.8.3.min.js

The opc-lib-min.js file is the OAS Web HMI Script Library. The other file is the jQuery library.  If your site already references a newer version of jQuery you may use that instead.

Copy those files into the js folder you just created.

Referencing the Script Files in the Page Headers

Next you will need to add references to the script files in the page headers of your site.  If you already have the ability to do that, you can skip adding the plugin. 

To add the plugin, go to the Dashboard of your WordPress site and from the left menu choose Plugins >> Add New.  In the keyword search box, enter:  Header and Footer Scripts. 

When you see the Header and Footer Scripts plugin in the results, click Install Now. Once it has installed, click Activate.

Next, from the left menu of the Dashboard, choose Pages >> Add New.  Give your new page a title. At the bottom of the new page, you should see a new section that says Insert Script to Head.

Here is what you need to add:

<script  src="/js/lib/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="/js/opc-lib-min.js"></script>
<script type="text/javascript">
      OAS_config = {
        token:'7e61b230-481d-4551-b24b-ba9046e3d8f2',
        serverURL: 'http://localhost:58725'}
</script>

The first is the reference to the jquery library.  Second, is the link to the opc-lib-min.  If you put have yours in a different location, please be sure to change the src to reflect that.

The next line is the OAS_Config script block.

It has a security token in it that keeps session for the OAS WebHMI.  It also has the URL for the OAS Service you want to point to.  After the colon is the port number that you have the OAS Service set up on. Please note: that if your WordPress site is not on your local machine but your OAS Service is, you will need to have your service tied to a publicly accessible IP address or domain name, localhost will not work.

Click Save Draft to save your work.

Add HMI to the Page

Click the Plus Sign to Add a Block. You will need to choose Custom HTML.

To create a div tag, enter:

<div id='myDiv' oas-tag-txt='{"tag":"Sine.Value"}'></div>

You must have an ID for the div, it can be whatever you want.  The OAS demo tags include a Sine Tag. If you don’t have a Sine Tag in your current configuration, enter the name of a tag that you do have followed by .Value. for the oas-tag-txt.

There are two articles in our knowledge base that you can reference to help you write your own:

Click Save Draft to save your work and then Preview to see the results.

You should now be displaying the Sine Value (or the value of whatever tag you used) from your OAS Service in your WordPress site.  If you open your OAS Configuration Application, you should be able to see the values updating together with a slight delay.

Utilizing the Web HMI Wizard

The OAS Web HMI Wizard is a tool to help developers create a Web HMI interface.  Click Here to Open the Web HMI Wizard. There is a video that goes into detail about how to use it in here: Web HMI Wizard.

Open the Wizard and then expand the oas-tag-txt section on the left. Enter Sine.Value into the tag box. In the format string box below that, enter My Sine Value is {0}. In the format float box further down, enter .00. Now on the left you should see some code displayed in the HTML ELEMENT window and the Live Demo window below that should be displaying your Sine Value as a string truncated to two decimal places with the My Sine Value is in front of it.

Cut and paste the code from the HTML ELEMENT box into your WordPress site inside of a Custom HTML block to add it to your page.

Add the Header Scripts to Your Whole Site at Once

If you’d like to add the header scripts to all of the pages in your site instead of just one, you can. First, cut the code out of your first page. Then go to your WordPress Dashboard and from the left menu select Settings >> Header & Footer Scripts. Paste the code into the Header Box there and click Save Settings. You can also add the OAS_Config script block to an external file and then just add a script reference to that file to further contain things.

Getting Started – Cross Platform HMI

If you do not have a copy of Visual Studio you can download a free version of Visual Studio Community (formerly Visual Basic Express or C# Express) from visualstudio.microsoft.com/vs/community.  You can choose whether to use Visual Basic or C#, but if you have no experience with either language, Visual Basic is easier for new developers.  We do recommend Visual Studio 2017 or higher.

There are many Cross Platform GUI tools available.  We have chosen Avalonia because of its popularity.  Here’s a link detailing how to create an Avalonia project: https://avaloniaui.net/docs/quickstart/create-new-project.  We recommend downloading and using the extension: https://marketplace.visualstudio.com/items?itemName=AvaloniaTeam.AvaloniaforVisualStudio

Working Avalonia Solution

You should have a running Avalonia application at this point

Adding OASAvalonia to Existing Avalonia Solution

Step 1 – Add the OASAvalonia library

Right-Click on Dependencies in the Solution Explorer

Click the “Browse” button at the bottom

Navigate to C:\Program Files\Open Automation Software\OAS\

Click “OK” button

Step 2 – Add Namespace

Edit the Mainwindow.xaml file

Add xmlns:b=”clr-namespace:OASAvalonia;assembly=OASAvalonia” to the xml namespaces

Step 2 – Add OAS_Controls

Type “<OAS_” and you will a list of  OAS enhanced controls

Choose one and add an OAS properties – below are the properties for  OAS_TextBox:

<b:OAS_TextBox Grid.Row=”0″ Grid.Column=”2″ Name=”OAS_TextBox” Width=”70″ Height=”26″ Text_TagName=”OASAvalonia.Text_TagName.Value”
IsVisible_TagName=”OASAvalonia.IsVisible_TagName.Value” IsVisible_Inverse=”False” IsVisible_BadQualityTrue=”True” IsVisible_Inverse_Link=”PCB_IsVisible_Inverse” IsVisible_BadQualityTrue_Link=”PCB_IsVisible_BadQualityTrue”
IsEnabled_TagName=”OASAvalonia.IsEnabled_TagName.Value” IsEnabled_Inverse=”False” IsEnabled_BadQualityTrue=”True” IsEnabled_Inverse_Link=”PCB_IsEnabled_Inverse” IsEnabled_BadQualityTrue_Link=”PCB_IsEnabled_BadQualityTrue”
Foreground_TagName=”OASAvalonia.Foreground_TagName.Value” Foreground_True=”Blue” Foreground_False=”RosyBrown” Foreground_BadQualityColor=”White” Foreground_True_Link=”OAS_TextBox_ComboBox_ForegroundTrue” Foreground_False_Link=”OAS_TextBox_ComboBox_ForegroundFalse”
Background_TagName=”OASAvalonia.Background_TagName.Value” Background_True=”White” Background_False=”Green” Background_BadQualityColor=”Red” Background_True_Link=”OAS_TextBox_ComboBox_BackgroundTrue” Background_False_Link=”OAS_TextBox_ComboBox_BackgroundFalse”
/>

OAS Avalonia Visual Studio Solution

We have also provided an example OAS Avalonia solution

Step 1

Load the DemoTags  Tag configuration, the default path is C:\Program Files\Open Automation Software\OAS\DemoFiles\DemoTags.Tags.

Step 2

Start Visual Studio and select File->Open->Project/Solution : OASCrossPlatformHMIDemoApplication

Step 3

Run Application

Getting Started MTConnect

The following guide shows you the easy steps to define the MTConnect schema that can be used to read the possible data items and automatically create OAS Tags to be used with live update.

How to interface MTConnect live data into Open Automation Software.

Use the following steps to become familiar with the easy setup of MTConnect in OAS.

Step 1 – Check MTConnect License

OAS

Start Configure OAS application from the program group Open Automation Software.

 

Select Configure-License. Verify that MTConnect is one of the available Drivers in the lower left of the form.  If you do not see MTConnect available contact support@oasiot.com to update your license.

NOTE: To configure remote OAS Engines enter the IP Address or node name in the Network Node field and click on Select.

Network Node
Enabled Drivers

NOTE: You will need to be running Open Automation Software Version 14.0.0.30 or greater to support MTConnect communications.  You can download the latest version at www.openautomationsoftware.com/downloads/open-automation-software/

Step 2 – Configure MTConnect Driver

Select Configure-Drivers.

Configure Drivers

Enter a meaningful Driver Interface Name that you will refer to this physical connection when defining Tags with a MTConnect Data Source.

Device 01 Driver Interface Name

Set the Driver to MTConnect.

MTConnect Driver

Leave Enable and Add Tags Automatically enabled.

Add Tags Automatically

Specify the Live Data Url for the MTConnect stream.

MTConnect Driver Interface

Optionally define a secondary failover of data stream if the primary data stream fails with the property Enable Failover.


If both the primary and secondary device are offline the Return to Online settings determines the retry frequency.

View Driver Interface Failover for more information and and video demonstrating communications failover.

Select the Add Driver button in the left window to add the Driver Interface as an available selection when defining Tags in the next step.

Add Driver

Note: If you need to define several Driver Interfaces you can use the CSV Export and CSV Import on the toolbar in the upper right together with Microsoft Excel.

CSV Import and Export

Drivers can also be programmatically assigned with the OAS REST API or .NET Server Configuration interface.

Step 3 – Configure MTConnect Tags

Select Configure-Tags.

Menu Configure Tags

With the OAS Engine in Runtime and the Driver Interface property Add Tags Automatically is enabled all of the possible MTConnect data items will be added under a Tag Group with the same name as the Driver Interface specified.

MTConnect Tags

Expand the tag group and sub groups to see all tags added.

MTConnect Tag List

If the Tag MTConnect Data Type is set to DataItem and the data stream has sent a value for the Id the current value will appear with Good Quality.

MTConnect Tag

NOTE: You can optionally enable transaction logging for MTConnect communications to record all value changes to text files.

To record all data values for all Ids received from the data stream select Configure-Options and click the Network Node Select to then view the System Logging tab and enable the property Log MTConnect Communications and set the Transaction Log Path of where the files will be placed.

MTConnect Transaction Logging

You can change the tag names of the OAS Tags if the automated creation does not suite your desired tag name.

Use the CSV Export and CSV Import on the toolbar in the upper right together with Microsoft Excel. to change multiple Tags.

CSV Import and Export

NOTE: Tags can also be programmatically assigned with the OAS REST API or .NET Server Configuration interface.

Step 4 – Save MTConnect Tag and Driver Configuration

Select the Save button on the toolbar at the top.

Load and Save

Enter a file name to be saved in C:\ProgramData\OpenAutomationSoftware\ConfigFiles directory on Windows or ConfigFiles subdirectory on Linux.

When prompted to set the file as the default configuration to load on startup select Yes.

Set Default Tag File

NOTE: The tags and drivers are both saved in to the one .Tags file.

The tags and drivers defined are now ready for use in all OAS features like Data Logging, Data Route, and Open UIEngine.