Home > Contents > Index >
Template Tag TOC  |   Alpha TOC  |   Tag Family TOC  |   Purpose TOC  |   Annotated TOC  |   Index 

 

asset.getdimparents

Get an IList of the dimensionable asset parents for particular asset.

Syntax

<asset.getdimparents
        list="name of output list"
        name="name of loaded asset whose parents will be returned"
     />

Attributes

list (required)
The name of the IList in the ICS object pool that will contain the dimension parents. The IList has 3 columns: TYPE, OBJECTID, GROUP, corresponding to the asset type, the asset id, and the group of the dimension parent.
name (required)
The name of the loaded asset whose dimension parent data will be returned.

Description

Get an IList of the dimensionable asset parents.

The IList has 3 columns: TYPE, OBJECTID, GROUP, corresponding to the asset type, the asset id, and the group of the dimension parent relationship.

Error Numbers

There are no possible errno for this tag.

Example

The following demonstrates how it is possible to loop through the dimensions belonging to an asset.

<asset.getdimparents name="a3" list="list"/>
<LOOP LIST="list">
    <CSVAR NAME="list.TYPE" />
    <CSVAR NAME="list.OBJECTID" />
    <CSVAR NAME="list.GROUP" />
</LOOP>

See Also

asset.setdimparents

  Home > Contents > Index >

Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.