Uninstall a Gen5 Riva Singlephase/Polyphase electricity meter

This section explains how to create an MDI file to uninstall an electric meter in an Itron Gen5 Riva solution. The example and details that follow are for uninstalling a Gen5 Riva Singlephase meter. To create an MDI file for the Gen5 Riva Polyphase meter, you only have to change the DeviceType value.

In this scenario, an existing meter is removed from a service point and is not replaced with a new meter.

In the XML file, the relationship between the meter and the service point is ended at the time set in the MeterLinkRange element's End attribute.

In the field, the meter is uninstalled from the service point location.

The following table shows the DeviceType values to use for each type of electric meter. This device type information can also be found in Device types.

Device

DeviceType

Example ESN

Gen5 Riva Singlephase Electricity Meter

315

2.16.840.1.114416.34.0155209919

Gen5 Riva Polyphase Electricity Meterd

318

2.16.840.1.114416.34.0155209919

Source of the MDI file

  • Customer work order system

  • Customer information system

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.

Element

Attribute/child element

App Platform

SetServicePoint

 

 

 

 

 

 

 

Required

ServicePointId

Required

EquipmentType

Required

CommodityType

Required

TimeZone

Required

UtilityId

Required

ServicePointStatus

Required

PrimaryCollectionSystem

Optional

Address

 

 

 

 

 

 

 

 

Required

StreetAddress

Optional

City

Optional

State

Optional

Zip

Optional

Country

Optional

Latitude

Required

Longitude

Required

SetMeter

 

 

 

 

 

Required

MeterId

Required

MeterSerialNumber

Optional

MeterNumber

Required

MeterInstallationDate

Optional

IsDistrictMeter

Required

PhaseCount

Required

SetChannel

 

 

 

 

 

Required

ChannelNumber

Required. At least one channel must be configured for auto-channel creation. Set the ChannelNumber value to 1 when creating a dummy channel. For more information, see Auto-channel creation.

PowerFlowDirection

Required

Unit

Required

HasIntervalData on page 1

Required

SetDevice

 

 

 

Required

DeviceId

Required

DeviceType

Required

Active

Required

DeviceLinkRange

 

 

 

Required

Start

Required

End

Required

MeterLinkRange

 

 

Required

Start

Required

End

Required

XML sample

<?xml version="1.0" encoding="utf-8"?>
<MasterDataImport
	xmlns:xsd = "http://www.w3.org/2001/XMLSchema"
	xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
	xmlns = "http://www.itron.com/masterdata/2013/03">
	<SetServicePoint
		ServicePointId="Gen5HW42SP1"
		EquipmentType = "Endpoint"
		CommodityType = "Electric"
		TimeZone = "CentralUSNoDst"
		ServicePointStatus = "Active"
		UtilityId = "ABC"
		PrimaryCollectionSystem = "GenX">		
		<Address
			StreetAddress="3040 Excelsior Blvd"
			City ="Minneapolis"
			State="MN"
			Zip="55416"
			Country="US"
			Latitude="44.9476"
			Longitude="-93.321" />
		<SetMeter
			MeterId = "EI0155209919"
			IsDistrictMeter = "False"
			PhaseCount = "1"
			MeterNumber="0155209919"
			MeterSerialNumber = "0155209919">			
			<SetChannel
				ChannelNumber = "1"
				HasIntervalData = "True"
				PowerFlowDirection = "Delivered"
				Unit = "WH">
				<SetDevice
					DeviceId="2.16.840.1.114416.34.0155209919"
					DeviceType="315"
					Active = "True">
				</SetDevice>
				<DeviceLinkRange
					Start = "BOT"
					End = "EOT"/>
			</SetChannel>
			<MeterLinkRange
				Start = "BOT"
				End="2017-02-15T12:00:00Z"/>
		</SetMeter>
	</SetServicePoint>
</MasterDataImport>