Home > Contents > Index >
ASSET.GETREFERENCESTOTYPES
Gets a list of assets that reference assets of the asset types provided.
Syntax
<ASSET.GETREFERENCESTOTYPES
LISTVARNAME="
name of list
"
ASSETTYPES="
comma separated asset types
"
[EXCLUDETYPES="
comma separated asset types
"]/>
Parameters
LISTVARNAME (required)
- Output. Name of list in which to put the list of assets which refer to assets of the types in the
ASSETTYPES
. The list has the columnsassetid
andassettype
.
ASSETTYPES (required)
- Input. Comma separated list of asset types whose references we are looking for.
EXCLUDETYPES (optional)
- Input. Comma separated list of asset types whose references to assets we do not care about and therefore can be excluded from the list.
Description
This tag is used prior to deleting an asset type to ensure that assets do not refer to assets of the type to be deleted.
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing.Example
This example returns a list of all non-Collection assets that refer to Article or Image assets.
<ASSET.GETREFERENCESTOTYPES LISTVARNAME="referers" ASSETTYPES="Article,Image" EXCLUDETYPES="Collection"/> <LOOP LIST="referers"> id: <STRING.STREAM LIST="referers" COLUMN="assetid"/>, type: <STRING.STREAM LIST="referers" COLUMN="assetid"/> <br/> </LOOP>See Also
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.