Adding an element

Elements are added using the Alea:Elements tag sent inside the Alea:DimensionTemplate element.

Request

This request adds an element to the default hierarchy. Replace \t with a horizontal tabulator before executing the request.

<Alea:Document xmlns:Alea="http://www.misag.com"> 
  <Alea:Request RequestID="4" 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 a horizontal tabulator.

<Alea:Document xmlns:Alea="http://www.misag.com"> 
  <Alea:Request RequestID="4" 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>