Skip to content

Action – GetMainTreeItems

Eric Domke edited this page May 6, 2019 · 1 revision

Used to generate the table of contents (TOC) tree in the user interface.

AML Query

<!-- SOAP_ACTION = GetMainTreeItems -->
<Item/>

Example (Result):

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Body>
    <Result>
      <Item type="Tree">
        <root>
          <Item type="Tree Node">
            <itemtype_id></itemtype_id>
            <name>Administration</name>
            <label>Administration</label>
            <classification>Tree Node/TocCategory</classification>
            <Relationships>
              <Item type="Tree Node Child">
                <related_id>
                  <Item type="Tree Node">
                    <itemtype_id></itemtype_id>
                    <name>Administration/Access Control</name>
                    <label>Access Control</label>
                    <classification>Tree Node/TocCategory</classification>
                    <Relationships>
                      <Item type="Tree Node Child">
                        <related_id>
                          <Item type="Tree Node">
                            <itemtype_id>4DDF9A4566C24F8E9E22632FD7F08A75</itemtype_id>
                            <open_icon>../Images/EnvironmentAttribute.svg</open_icon>
                            <close_icon>../Images/EnvironmentAttribute.svg</close_icon>
                            <name>Administration/Access Control/mp_PolicyAccessEnvAttribute</name>
                            <label>Environment Attributes</label>
                            <classification>Tree Node/ItemTypeInToc</classification>
                          </Item>
                        </related_id>
                      </Item>
...
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Note

This data is also returned as part of the result from the GetArasMainWindowInfo method.

Clone this wiki locally