KB-16661: Displaying only acknowledged alarms in E3Browser.

Question:

How can I display only acknowledged alarms in E3Browser?

Solution:

One way to achieve it is to change the SQL query so as to to filter only the acknowledged alarms. To do so, you must add a Where condition to test whether Acked and ConditionActive fields are equal to 1.

For example (SQL query filtering alarms acknowledged from Alarms table):

SELECT *
FROM Alarms
Where Alarms.Acked=1 And Alarms.ConditionActive=1
ORDER BY Alarms.E3TimeStamp ASC

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *