Adding an element
Elements are added using the
Alea:Elements
tag sent after
the Alea:DimensionTemplate
tag or after the
Alea:HierarchyTemplate
tag.Request
This request adds an element to the default hierarchy. Replace \t with an actual horizontal tabulator before executing the request.
<Alea:Document xmlns:Alea="http://www.misag.com">
<Alea:Request RequestID="8" Class="Dimension" Method="Write">
<Alea:Dimension Name="Org" FirstBatch="true" LastBatch="true">
<Alea:DimensionTemplate Name="Org" />
<Alea:Elements>!\tAll\tWater Department</Alea:Elements>
</Alea:Dimension>
</Alea:Request>
</Alea:Document>
Request
This request adds an element to a non-default hierarchy. Replace \t with an actual horizontal tabulator.
<Alea:Document xmlns:Alea="http://www.misag.com">
<Alea:Request RequestID="9" Class="Dimension" Method="Write">
<Alea:Dimension Name="Org" FirstBatch="true" LastBatch="true">
<Alea:DimensionTemplate Name="Org" />
<Alea:Hierarchy Name="Org as of 2014">
<Alea:HierarchyTemplate Name="Org as of 2014" IgnoreSourceNotExist="false" />
<Alea:Elements>!\tEmergency\tFire Department</Alea:Elements>
</Alea:Hierarchy>
</Alea:Dimension>
</Alea:Request>
</Alea:Document>