Home > Contents > Index >
ASSET.GETASSETTYPEPROPERTIES
Reports values for various asset type properties.
Syntax
<ASSET.GETASSETTYPEPROPERTIES
TYPE="
assetType
"/>
Parameters
TYPE (required)
- Input. Asset type for which to report prperties.
Description
This tag will set the following ICS variables to "true" or "false":
- IsCoreAssetType - if true, asset type is a system asset type and cannot be deleted.
- NameMustBeUnique - if true, the name field of each asset of this type must be unique.
- CanAddSubtypes - if true, configurable subtypes for this asset type can be added by users via the Admin interface.
- IsAssetMakerAsset - if true, asset type was created using AssetMaker.
- IsFlexAsset - if true, asset type was created using Flex Asset Maker, i.e., the asset type is a flex family member.
- CanPreview - if true, assets of this type can be viewed using the Preview function.
- RenderUsingTemplate - if true, template assets are used to render assets of this type.
- UsesSitePlanTree - if true, assets of this type have a corresponding node in the SitePlanTree (true only for Page asset type).
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing.Example
The following reports if there are no templates for an asset type that support rendering with templates.
<ASSET.GETASSETTYPEPROPERTIES TYPE="Variables.AssetType" /> <IF COND="Variables.RenderUsingTemplate=true"> <THEN> <ASSET.LIST TYPE="Template" FIELD1="subtype" VALUE1="Variables.AssetType" LIST="templates"/> <IF COND="IsError.Variables.errno=true"> <THEN> No Templates exist for <ICS.GETVAR NAME="AssetType" ENCODING="default"/> </THEN> </IF> </THEN> </IF>See Also
ASSET.GETASSETTYPE
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.