我們的品牌

Impact-Company-Logo-English Black-01-177x54

歡迎造訪施耐德電機全球網站

歡迎訪問我們的網站
		
我们今天能为您提供什么帮助?
Power Monitoring Expert (PME) "Data Integrity Check: 'REAL_ENERGY' (Topic ID: 1601) is not supported" Warning when running Billing Report

Issue
After running a "Billing Report" in PME web applications reports, a warning is outputted on the report: "Data Integrity Check: 'REAL_ENERGY' (Topic ID: 1601)." The values and rates for Real Energy (kWh) will be blank.

Product Line

Power Monitoring Expert 8.x
Power Monitoring Expert 9.x
Power Monitoring Expert 2020
Power Monitoring Expert 2021
Power Monitoring Expert 2022
Power Monitoring Expert 2023
Power Monitoring Expert 2024

Environment
PME Web Applications
SQL Server Management Studio (SSMS)

Cause
A "rates file" is used for the billing report in the PME web application, and can be selected in the report inputs --> "Rates" dropdown combo box. The default rates files contain the topic description "REAL_ENERGY" and an associated TopicID "1601". If you can verify that real energy is logging, but this warning appears, the logged energy measurement is associated with a different topic description and TopicID than the default.

Resolution
Every logged quantity in the PME SQL databases has a QuantityID. Depending on the meter configuration, the value/formula that is used for Real Energy may have varying QuantityIDs. A list is found in this article https://www.se.com/us/en/faqs/FA214149/. The IDs are 135, 198, 129, 130, 134, 144.  If you are aware of the QuantityID, skip to step 4. If not, follow the steps below:

1. In SQL Server Management Studio (SSMS), execute this query to find the a list of sources for your PME system. (If you have greater than 1000 meters connected to PME, change "1000" to the amount of connected meters.) Replace "[yourMeterGroupName.yourMeterName]" with the name of the meter as it appears in the Management Console.

SELECT TOP (1000) [ID]
      ,[Name]
      ,[NamespaceID]
      ,[SourceTypeID]
      ,[TimeZoneID]
      ,[Description]
      ,[Signature]
      ,[DisplayName]
  FROM [ION_Data].[dbo].[Source]
where DisplayName = [yourMeterGroupName.yourMeterName]

In the SQL Results windows, locate the meter name and make note of it's associated ID in the ID column. This is the SourceID.

2. Use the below query to find the QuantityID(s) the meter is logging Real Energy under. Replace "[yourSourceID]" with the source ID found in the previous step. The SQL results will show the most recent data that the meter logged. Locate a value that is closest to the expected Real Energy you would like to use, and keep note of the QuantityID that it is associated with.

SELECT TOP (1000) [ID]
      ,[Value]
      ,[SourceID]
      ,[QuantityID]
      ,[TimestampUTC]
  FROM [ION_Data].[dbo].[DataLog2]
  where SourceID = [yourSourceID] AND QuantityID IN (135, 198, 129, 130, 140, 124, 144)
  order by TimestampUTC desc

2.  Now, use this query to find the TopicDescription and TopicID that is mapped to the QuantityID in the previous step.

SELECT t.TopicID, q.ID AS QuantityID, t.Description as TopicDescription, q.Name as QuantityName, dst.Description as DataSourceTopicDescription
FROM ApplicationModules.CommonDataModel.Topic t
JOIN ApplicationModules.DataSourceBus.DataSourceTopic dst ON t.topicID = dst.TopicID
JOIN ION_Data.dbo.Quantity q ON dst.DataSourceRepresentation = q.name
WHERE q.ID IN (135, 198, 129, 130, 140, 124, 144) 
ORDER BY q.ID;

In the results window, locate the QuantityID that the device's Real Energy is mapped to. Make note of the "TopicDescription", and "TopicID."

4. *Warning: Take backups of any files prior to modifying them. Ensure the backups are in a location that will not be overwritten (i.e. the Desktop)*

  1. In the PME web application Billing Report, select the rates file
  2. File options will appear in location C:\[PME Installation Folder]\config\reports\billing report\ratelibrary. Find the file that is being used in the Billing cost report
  3. Make a copy of the file to edit (see the warning above)
  4. Open the file in a text editor. Use ctrl+F to find the locations in the file where "REAL_ENERGY" is specified
  5. Replace REAL_ENERGY with the correct TopicDescription
  6. Add a new entry into the measurement map section of the file, and ensure the syntax is as appears below. If there is no measurement map, copy and paste the below between the WagesConfiguration. In this example, the new measurement added is "ACTIVE_ENERGY_TOTAL" and the new TopicID is "3400461." The additional measurement CURRENT_MEAN was also specified below -- each newly defined measurement will need its own measurement map section.
    <WAGESConfiguration>

    <MeasurementMap> <!-- The Measurement field represents the Measurement alias. This alias can then be used in any setting that requires a 'Measurement' to represent the corresponding Topic information --> <Measurement>CURRENT_MEAN</Measurement> <!-- The TopicId field represents the PME Topic Id that this corresponding Measurement alias will 'map' too. --> <TopicId>3400461</TopicId>
    </MeasurementMap>


    <MeasurementMap>
    <Measurement>ACTIVE_ENERGY_TOTAL</Measurement> <!-- The TopicId field represents the PME Topic Id that this corresponding Measurement alias will 'map' too. --> <TopicId>3400465</TopicId> </MeasurementMap>

    </WAGESConfiguration> </RateFileConfiguration>

施耐德電機Taiwan

需要協助?

  • 產品選型工具

    快速輕鬆地為您的應用找到合適的產品和附件。

  • 取得報價

    立即線上提交您的銷售需求,專業團隊將主動聯繫您。

  • 購買地點

    輕鬆在您所在地區找到最近的施耐德電機經銷商。

  • 支援中心

    在同一位置找到滿足您所有需求的支援資源。

  • 產品文檔
  • 軟體下載
  • 產品選型工具
  • 產品替代和替換
  • 幫助和聯絡中心
  • 尋找我們的辦公室
  • 取得報價
  • 人才招募
  • 公司簡介
  • 舉報不當行為
  • 無障礙
  • 新聞中心
  • 投資者
  • 專業洞察
  • 台灣施耐德電機學院
  • 綠色影響力落差調查
  • Schneider Go Green 2025
  • 隱私政策
  • Cookie通告
  • 使用條款
  • Change your cookie settings