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

Contact Support

Close

Ask our Experts

Have a question related to our products, solutions or services? Get quick support on community Forums

Email Us

For Community platform-related support, please email us

New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).

How to inject historical/timestamped data from SmartConnector into a single Trend Log in EBO?

SmartConnector Forum

Schneider Electric support forum for SmartConnector Framework - enabling custom integrations with EcoStruxure Building Operation, Power Monitoring Expert, and Power Operation.

Search in

Improve your search experience:

  • Exact phrase → Use quotes " " (e.g., "error 404")
  • Wildcard → Use * for partial words (e.g., build*, *tion)
  • AND / OR → Combine keywords (e.g., login AND error, login OR sign‑in)
  • Keep it short → Use 2–3 relevant words , not full sentences
  • Filters → Narrow results by section (Knowledge Base, Users, Products)
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: 

Select a Country

Please select a country to continue with beta search.

  • Home
  • Schneider Electric Community
  • EcoStruxure Building
  • SmartConnector
  • SmartConnector Forum
  • Re: How to inject historical/timestamped data from SmartConnector into a single Trend Log in EBO?
Options
  • 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
JeffBowman Champion
171
KarimHussain
KarimHussain Champion
60
ardak
ardak Leader
57
View All

Recommended Forums

  • Intelligent Devices Forum

  • Metering & Power Quality

  • EcoStruxure IT Forum

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to SmartConnector Forum
Start a Topic
Solved
Luffybzh
Luffybzh
Explorer

Posted: ‎2026-06-25 06:05 AM

0 Likes
2
188
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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

‎2026-06-25 06:05 AM

How to inject historical/timestamped data from SmartConnector into a single Trend Log in EBO?

Hello everyone,

I am currently working on integrating historical energy data (previous day's index/consumption) into EcoStruxure Building Operation (EBO), and I would really appreciate some guidance or insights on the best way to achieve this (via SmartConnector, SEAL, etc.).

Current Architecture:

  • I have developed a Custom Processor in SmartConnector that runs automatically every morning.

  • This processor retrieves the previous day's data from an external API, parses/translates it, and sends it to my MSSQL database (which is already connected to EBO).

  • In parallel, SmartConnector pushes these values to EBO via an EWS connection.

The Problem: Currently, the data comes through as unique "real-time points" inside EBO's Hardware folder (1 point created for each value). While yesterday's values are successfully added every morning, they act as instantaneous variables rather than source-historical data, making them unusable for proper chronological analysis. Furthermore, I would like to centralize all these timestamped values from the previous day into a single Trend Log.

My Goal: I am looking for the best way to have my morning automation retroactively populate a Manual Trend Log (or any other suitable Trend Log type) with the corresponding [Timestamp + Value] pairs, so that the history builds up properly inside EBO (and becomes visible within my MSSQL database as a result).

My Questions:

  1. Is there a specific feature or Provider within the SmartConnector SDK (such as the EBO Provider with a historical write method) capable of pushing timestamped values directly into a Trend Log, without going through standard EWS variables?

  2. Would it be wiser to use SmartConnector to generate an EBO-formatted XML file on the server, and then use a SEAL script or an EBO Scheduled Task to import that file into a Manual Trend Log?

  3. In your experience, what is the best practice or most robust approach for this specific use case?

    Thank you in advance for your help and suggestions!

Tags (1)
  • Tags:
  • english
Reply
  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
KarimHussain
KarimHussain Champion
Champion

Posted: ‎2026-06-29 11:24 PM

1 Like
0
105
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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

‎2026-06-29 11:24 PM

Hi @Luffybzh,

 

We just published our developer documentation which has this exact pattern implemented. You can see a working example in this project:
SmartConnector/examples/SmartConnector.GridStatusExtension at main · SchneiderElectricBuildings/Smar...

 

If you want to just zoom in to the Trend Log population and backfill, have a look at these two classes:

  • SmartConnector/examples/SmartConnector.GridStatusExtension/BackfillPlanner.cs at main · SchneiderEle...
  • SmartConnector/examples/SmartConnector.GridStatusExtension/GridStatusProcessor.cs at main · Schneide...

 

Let me know if you need any further guidance.

 

Best regards,

Karim

See Answer In Context

Reply
Replies 2
CraigEl
CraigEl Champion
Champion

Posted: ‎2026-06-25 06:06 PM

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

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

‎2026-06-25 06:06 PM

@Luffybzh I might be missing some of the broader context here, particularly around the need to preserve historical timestamps in a single Trend Log.

 

If the primary goal is to get external data into EBO and have it trended, would it be simpler to pull the data directly from the source API using Web Services (Script Program / Function Block)? That approach typically aligns better with how EBO expects data to be ingested and trended natively.

Reply
KarimHussain
KarimHussain Champion
Champion

Posted: ‎2026-06-29 11:24 PM

1 Like
0
106
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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

‎2026-06-29 11:24 PM

Hi @Luffybzh,

 

We just published our developer documentation which has this exact pattern implemented. You can see a working example in this project:
SmartConnector/examples/SmartConnector.GridStatusExtension at main · SchneiderElectricBuildings/Smar...

 

If you want to just zoom in to the Trend Log population and backfill, have a look at these two classes:

  • SmartConnector/examples/SmartConnector.GridStatusExtension/BackfillPlanner.cs at main · SchneiderEle...
  • SmartConnector/examples/SmartConnector.GridStatusExtension/GridStatusProcessor.cs at main · Schneide...

 

Let me know if you need any further guidance.

 

Best regards,

Karim

Reply
Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 

You’ve reached the end of your document

WHAT’S NEXT?

Ask our Experts

Didn't find what you are looking for? Ask our experts!

My Dashboard

Check out the new Feeds and activities that are relevant to you.

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

    Ask our Experts

    Have a question related to our products, solutions or services? Get quick support on community Forums

    Email Us

    For Community platform-related support, please email us

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 © 2026 Schneider Electric

Welcome!

Welcome to your new personalized space.

of

Explore