How to hide AUTO-ACK?

Is there a way to hide AUTO-ACK from the Alarm Journal Table?

Thank you.

Implement the filterAlarm extension function

When I implement the below statement, the journal is only displaying AUTO-ACK alarms. I want to hide them.

return alarmEvent.get(“systemAck”)

Thanks.

Maybe this?

return not alarmEvent.get("systemAck")
1 Like

That did the trick. Thank you.