Hi,
Can we add notes for any alarm record using program object?
Is there any API to add Notes to Alarm Record?
Thanks & Regards,
Hi,
Can we add notes for any alarm record using program object?
Is there any API to add Notes to Alarm Record?
Thanks & Regards,
Alarm console lets you add alarm to each record. Its a standard feature.
Hi,
Yes, We can use it from Alarm Console.
But, I am working on HTML alarm console for better look & feel.
Built a Niagara module to get alarm records. Acknowledge it.
I am not getting API to add alarm data notes using Java code.
Is there API available to add Notes to Alarm record?
Thanks & Regards,
Not super familiar with alarms API so you’ll have to do some research. Look at the documentation for BAlarmRecord Class. It has the field “NOTES”. What class or classes are you currently using to create alarm records?
BAlarmRecord rec;
String notesText = "Chiller high temp alarm - checked by operator.";
rec.addAlarmFacet(BAlarmRecord.NOTES, BString.make(notesText));
Thanks for your response! I was able to get it.