Home > Contents > Index >
ASSET.REFERENCEDBY
Builds a list of assets that reference this asset.
Syntax
<ASSET.REFERENCEDBY NAME="asset name" LIST="list name" /> [EMBEDDEDREFLIST="list name]" />Parameters
NAME (required)
- Name of previously loaded asset
LIST (required)
- Name of the list of assets that reference the asset. The returned list contains a column called OTYPE, which contains the asset type and the OID for the ID of the referencing asset.
EMBEDDEDREFLIST (optional)
- Name of the list of assets that reference the asset using embedded links. The returned list contains a column called OTYPE, which contains the asset type and the OID for the ID of the referencing asset.
Description
Note
This tag may be computationally expensive and should not be used in templates used for live site rendering.
The list will contain assets which have references to this asset. This will include asset associated through the AssetRelationTree, assets relations due to flex family membership. If the EMBEDREFLIST paramenter is used, that will contain a list of assets that reference the asset in embedded links within their text fields. The lists have the columns OTYPE, for asset type and OID for asset id.
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded into memory).Example
This example loads assets referencing myArticle and displays the name, description, and asset type of each.
<ASSET.LOAD NAME="myArticle" TYPE="Content_C" OBJECTID="123456789012"/> <ASSET.REFERENCEDBY NAME="myArticle" LIST="referers" EMBEDDEDREFLIST="refersintext"/> <LOOP LIST="referers"> <ASSET.LOAD NAME="referer" TYPE="referers.otype" OBJECTID="referers.oid"/> <ASSET.GETASSETTYPE NAME="referer" OUTNAME="at"/> <ASSETTYPE.GET NAME="at" FIELD="description" OUTPUT="assettype"/> <ASSET.GET NAME="referer" FIELD="name"/> <ASSET.GET NAME="referer" FIELD="description"/> <CSVAR NAME="Asset Type: Variables.assettype Name: Variables.name Description: Variables.description"/><br/> </LOOP> <LOOP LIST="refersintext"> <ASSET.LOAD NAME="referer" TYPE="refersintext.otype" OBJECTID="refersintext.oid"/> <ASSET.GETASSETTYPE NAME="referer" OUTNAME="at"/> <ASSETTYPE.GET NAME="at" FIELD="description" OUTPUT="assettype"/> <ASSET.GET NAME="referer" FIELD="name"/> <ASSET.GET NAME="referer" FIELD="description"/> <CSVAR NAME="Asset Type: Variables.assettype Name: Variables.name Description: Variables.description"/><br/> </LOOP>See Also
ASSET.CHILDREN
ASSET.LIST
ASSET.LOAD
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.