Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

How to retrieve Alarm Comment, Cause, Action & Checklist data

SmartConnector Forum

Schneider Electric support forum about SmartConnector applications for integration of other building management systems (BMS) into EcoStruxure Building Operation.

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure Building
  • SmartConnector
  • SmartConnector Forum
  • How to retrieve Alarm Comment, Cause, Action & Checklist data
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
JeffBowman
Sisko JeffBowman Sisko
164
ardak
ardak Schneider Alumni (Retired)
34
sesa180908_brid
Commander sesa180908_brid Commander
34
mike_meirovitz
Commander mike_meirovitz
21
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to SmartConnector Forum
sesa116095_brid
Ensign sesa116095_brid Ensign
Ensign

Posted: ‎2018-03-22 07:39 AM

0 Likes
1
636
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2018-03-22 07:39 AM

How to retrieve Alarm Comment, Cause, Action & Checklist data

Hello!

We're looking for a advice how to retrieve the alarm comment, cause note, action note & checklist data for alarms.

Thanks,

Ellis

Reply
  • All forum topics
  • Previous Topic
  • Next Topic
Reply 1
JeffBowman
Sisko JeffBowman Sisko
Sisko

Posted: ‎2018-03-22 08:10 AM

0 Likes
0
595
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2018-03-22 08:10 AM

Hi Ellis,

I am assuming you want to get this data from an alarm object, and not the alarm event itself.

It is possible to get the Alarm comment(s) via EWS. Below is a method I wrote that does this give a list of EWS Alarm Item IDs.

public List<AugmentedAlarmItem> AugmentAlarmItems(List<AlarmItemType> alarmItems)

{

    Logger.LogDebug(LogCategory.Processor, this.Name, $"Getting alarm messages for {alarmItems.Count} alarms..");

    var returnList = new List<AugmentedAlarmItem>();

    var alarmItemsTracker = alarmItems.ToList();

    while (alarmItemsTracker.Count > 0)

    {

        var thisRequest = alarmItemsTracker.Take(250).ToList();

        List<string> propertyIds = new List<string>();

        foreach (var alarm in thisRequest)

        {

            propertyIds.Add($"1{alarm.Id.Remove(0, 1)}/AlarmMessage");

            propertyIds.Add($"1{alarm.Id.Remove(0, 1)}/ResetMessage");

            propertyIds.Add($"1{alarm.Id.Remove(0, 1)}/LowLimitMessage");

            propertyIds.Add($"1{alarm.Id.Remove(0, 1)}/HighLimitMessage");

        }

        var values = _ewsClient.GetValues(propertyIds.ToArray());

        foreach (var alarm in thisRequest)

        {

            var alarmMessage = values.GetValuesItems.ToList().FirstOrDefault(a => a.Id == $"1{alarm.Id.Remove(0, 1)}/AlarmMessage")?.Value;

            var resetMessage = values.GetValuesItems.ToList().FirstOrDefault(a => a.Id == $"1{alarm.Id.Remove(0, 1)}/ResetMessage")?.Value;

            var highLimitMessage = values.GetValuesItems.ToList().FirstOrDefault(a => a.Id == $"1{alarm.Id.Remove(0, 1)}/HighLimitMessage")?.Value;

            var lowLimitMessage = values.GetValuesItems.ToList().FirstOrDefault(a => a.Id == $"1{alarm.Id.Remove(0, 1)}/LowLimitMessage")?.Value;

            returnList.Add(new AugmentedAlarmItem

            {

                Id = alarm.Id,

                Description = alarm.Description,

                MonitoredValueId = alarm.ValueItemId,

                AlarmMessage = !string.IsNullOrEmpty(alarmMessage) ? alarmMessage : $"{highLimitMessage}{(!string.IsNullOrEmpty(highLimitMessage) && !string.IsNullOrEmpty(lowLimitMessage) ? " ; " : string.Empty)}{lowLimitMessage}",

                ResetMessage = resetMessage,

            });

        }

        alarmItemsTracker.RemoveRange(0, thisRequest.Count());

    }

    return returnList;

}

As far as the cause note, action note and checklist. This is a whole other question, one of which I have never done before. Your best bet might be either to try and find a way to use the WorkStation SDK to get this information, or the new Mongoose.Csp Nuget Package directly (NOT the new SboEwsRestProvider which uses this behind the scenes). Both of these ways will require a much more in-depth understanding about how EBO works behind the scenes, but it should be possible.

Regards,

-Jeff

Reply
Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of