Home > Contents > Index >
asset:getassettypedependents
Provides a list of asset types which depend an asset type's existence
Syntax
<asset:getassettypedependents
type="
assetType
"
varname="
variable name
"/>
Parameters
type (required)
- Input. Asset type for which to list dependents.
varname (required)
- Input. Name of a variable in which to put a comma separated list of dependents asset types. If the asset type has no dependent asset types, this variable will be empty.
Description
When an asset type has dependent asset types, the asset type cannot be deleted without also deleting the dependent asest types.
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing.Example
The following gets the list of dependent asset types and if there are any, displays it.
<asset:getassettypedependents type='<%=ics.GetVar("AssetType")%>' varname="dependentAssetTypes"/> <ics:if cond='<%=ics.GetVar("dependentAssetTypes").length()>0 %>'> <ics:then> Asset Type has <%=ics.GetVar("dependentAssetTypes")%> as dependent asset types. </ics:then> </ics:if>See Also
asset:getassettypesonwhichidepend
asset:getassettype
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.