Question:
How can I set up the E3Browser to display historic alarms from just one of the two different areas in the application?
Solution:
To do so, you must set up a filter in Alarms table’s Area property to show only one of the areas.
Another possibility is to edit the SQL query directly. Examples:
E3Browser’s SQL query displaying only the alarms from area 1:
SELECT *
FROM Alarms
WHERE ( Alarms.Area = ‘Area1’ )
E3Browser’s SQL query displaying only the alarms from area 2:
SELECT *
FROM Alarms
WHERE ( Alarms.Area = ‘Area2’ )