Install a single meter ERT

This sample shows a single meter ERT installation. This scenario occurs when an endpoint device is installed on an existing meter at an existing service point.

The sample XML does the following:

  • Links ERT Device1 to existing meter Meter1 at existing service point SP1 on 3/10/2015 at 5:00 PM (local time for SP1). From 3/10/2015 5:00 PM on, any data reported by Device1 will be associated with Meter1 and, consequently, SP1.

Note: To avoid a gap in the hourly interval data, always start and end link ranges at the top of the hour. For example, if the ERT changed at 3:15 PM and the value was 2016-06-10T15:15:00 (3:15 PM), meter data between 3:00 and 4:00 PM may be incomplete.

  • To display a value in user interface endpoint install date fields, sets Device1's installation date as 03/10/2015 at 5:00 PM (local time for SP1) using the EndpointInstallationDate="2015-03-10T17:00:00" attribute.
  • Configures Device1 to report interval data in cubic feet on channel 1.

Elements and attributes

For information about the use of special characters, see Special characters.

The following table shows the elements and attributes included in the XML sample.

  • Required = This element/attribute is required for this specific scenario. It may not be required in other scenarios.
  • Recommended = Itron recommends that you use this element/attribute in this particular scenario.
  • Optional = This element/attribute is optional for this scenario and is only required if you want a specific outcome described in the element/attribute definition. To see the element/attribute description, click on the element/attribute in the table or in the XML sample.
  • Blank = Ignored. This element or attribute is ignored by the application.

Element

Attribute/child element

Itron Analytics

Operations Optimizer

ChoiceConnect Fixed Network

SetServicePoint

ServicePointId

Required

Required

Required

SetMeter

MeterId

Required

Required

Required

EndpointInstallationDate

Optional

Optional

Optional

SetChannel

ChannelNumber

Required: if meter has multiple channels

Required: if meter has multiple channels

Required: if meter has multiple channels

Unit

Required

Required

Required

HasIntervalData

Required

Required

Required

SetDevice

 

 

DeviceId

Required

Required

Required

DeviceType

Required

Required

Required

Active

Required

Required

Required

DeviceLinkRange

 

Required

Required

Required

XML sample

<?xml version="1.0" encoding="utf-8"?>
<MasterDataImport xmlns="http://www.itron.com/masterdata/2013/03" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SetServicePoint
	ServicePointId="SP1">
	<SetMeter
		MeterId="Meter1"
		EndpointInstallationDate="2015-03-10T17:00:00">
		<SetChannel
			ChannelNumber="1"
			Unit="CF"
			HasIntervalData="true">
			<SetDevice
				DeviceId="Device1"
				DeviceType="171"
				Active="true">
				<DeviceLinkRange
					Start="2015-03-10T17:00:00"
					End="EOT"/>
			</SetDevice>
		</SetChannel>
	</SetMeter>
</SetServicePoint>
</MasterDataImport>