Since there is no way to export the visible dataset of the Alarm Journal component, I am using the system.alarm.queryJournal function but the called dataset is not showing the columns we need. (i.e. acked by, ack notes, alarm name, etc…) Any way to include these columns in the dataset?
Is there a way to configure the Alarm Status Table component to reference a dataset of selectable acknowledgement choices rather than using the text area?
ackUserData = []
for row in table:
ackUserData.append(str(row.get(CommonAlarmProperties.AckUserName)))
ackNotes = []
for row in table:
ackNotes.append(str(row.get(CommonAlarmProperties.AckNotes)))
nameData = []
for row in table:
nameData.append(str(row.get(CommonAlarmProperties.Name)))