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

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

In the 7.4 Schema can you confirm which table the measured load is for creating my own report.

EcoStruxure IT forum

Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz

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 IT
  • EcoStruxure IT forum
  • In the 7.4 Schema can you confirm which table the measured load is for creating my own report.
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
Cory_McDonald
Admiral Cory_McDonald Admiral
124
Jef
Admiral Jef Admiral
110
gsterling
Captain gsterling Captain
71
APC_Steve
Captain APC_Steve Captain
65
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure IT forum
Solved
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
5
685
  • 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.

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

In the 7.4 Schema can you confirm which table the measured load is for creating my own report.

i am creating a new report in Insight i have measured load in DC down to the rack level and this is also being shown at the cage level. In the 7.4 schema which table is this held as i have tried  configuration_item.ci_power_draw as utilized_power, but no luck.

any help appreciated.

(CID:93194099)

Labels
  • Labels:
  • Data Center Operation
Reply

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

Contact Support
  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
0
685
  • 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.

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

Hi Malcolm,

If you are looking for measurements that have been manually entered into DCO, then you will find this in the table "configuration_item_power_path". The column is named "pp_peak_power" and you will use the corresponding power receptacle ci_id to retrieve the line.

This field is in the following format: #L1:290.98 #L2:301.3768 #L3:NaN (unit=kW). I have written the following script to transform that text field into a sum of the 3 phases, you can just reuse it in your report by changing ["peak_power"] with your column binding name:

var result=0;

if(dataSetRow["peak_power"] != null){

 var javaString = (new Packages.java.lang.String(dataSetRow["peak_power"]));

 var cleaned = javaString.replace('","', "").replace("{", "").replace("}", "").replace("NULL", "0").replace('"#L1:', "").replace("#L1:", "").replace(" #L2:", ",").replace(" #L3:", ",").replace('";', "").replace("NaN", "0").replace(',"', "");

 var splitted=cleaned.split(",");

 for (var i=0; i

 result += (Math.round(splitted[i])/1000);

 }

 result=Math.round(result*100)/100;

 }


Regards,

Guillaume

(CID:93194183)

See Answer In Context

Reply

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

Contact Support
Replies 5
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
0
685
  • 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.

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

Hi Malcolm, we will look into it, thanks for sharing.

(CID:93194157)

Reply

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

Contact Support
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
0
686
  • 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.

Posted: ‎2020-07-02 09:48 AM . Last Modified: ‎2024-04-10 01:06 AM

Hi Malcolm,

If you are looking for measurements that have been manually entered into DCO, then you will find this in the table "configuration_item_power_path". The column is named "pp_peak_power" and you will use the corresponding power receptacle ci_id to retrieve the line.

This field is in the following format: #L1:290.98 #L2:301.3768 #L3:NaN (unit=kW). I have written the following script to transform that text field into a sum of the 3 phases, you can just reuse it in your report by changing ["peak_power"] with your column binding name:

var result=0;

if(dataSetRow["peak_power"] != null){

 var javaString = (new Packages.java.lang.String(dataSetRow["peak_power"]));

 var cleaned = javaString.replace('","', "").replace("{", "").replace("}", "").replace("NULL", "0").replace('"#L1:', "").replace("#L1:", "").replace(" #L2:", ",").replace(" #L3:", ",").replace('";', "").replace("NaN", "0").replace(',"', "");

 var splitted=cleaned.split(",");

 for (var i=0; i

 result += (Math.round(splitted[i])/1000);

 }

 result=Math.round(result*100)/100;

 }


Regards,

Guillaume

(CID:93194183)

Reply

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

Contact Support
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
0
685
  • 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.

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2024-04-10 01:06 AM

Hi Guillaume,

 

Thanks you for your help i will give it a go.

 

Malc

(CID:93194185)

Reply

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

Contact Support
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2024-04-10 01:06 AM

0 Likes
0
685
  • 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.

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2024-04-10 01:06 AM

Hi Guillaume,

when i update my query with the following line (configuration_item_power_path.pp_peak_power as utilized_power,)

I recieve the following error.

ERROR:  missing FROM-clause entry for table "configuration_item_power_path"
LINE 10:  configuration_item_power_path.pp_peak_power as utilized_pow...
          ^
********** Error **********

ERROR: missing FROM-clause entry for table "configuration_item_power_path"
SQL state: 42P01
Character: 411)

 

Any suggestions.

 

(CID:93194187)

Reply

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

Contact Support
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2023-10-31 11:10 PM

0 Likes
0
685
  • 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.

Posted: ‎2020-07-02 09:49 AM . Last Modified: ‎2023-10-31 11:10 PM

superhero.png

This question is closed for comments. You're welcome to start a new topic if you have further comments on this issue.

Reply

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

Contact Support
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