Home > Contents > Index >
ASSET.SAVE
Saves an asset to the database.
Syntax
<ASSET.SAVE NAME="asset instance object" [FLUSH="true|false"] />Parameters
NAME (required)
- Name of the asset instance object.
FLUSH (optional)
- If set to
true
, flushes the asset from the object pool.
Description
This tag saves an asset to its storage and updates the AssetPublication table. Associations defined by using the ASSET.ADDCHILD, ASSET.REMOVECHILDREN, ASSET.childgather, ASSET.ADDMEMBERS tags are also saved there.
The following fields in the asset are updated by default:
status
- If no value is supplied, the status is m_sStatusCreated (PL).
createdby
- If no value is supplied and this is a new asset. Set to the current user's displayable name.
createddate
- If no value is supplied and this is a new asset, set to the current date.
updatedby
- Set to the current user's displayable name.
createddate
- Set to the current date.If it is a new asset being saved or an asset loaded with editable="true" set, the AssetPublication table may be updated. It is updated to reflect the site affinity set in the loaded asset through using the ASSET.ADDSITE, ASSET.REMOVESITE or ASSET.GATHER tags. If site affinity is set in no other way the save code will look in either of these variables:
primarypubid
(variable) - An entry is made based on the variableprimarypubid
.
pubid
(session variable) - Ifprimarypubid
does not exist, the session variablepubid
defines the publication in which to put the asset.Error Numbers
The possible values of
errno
include:
Value Description -105 Database error. -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded into memory). -12018 Missing site. -12034 Publish in progress. -12065 Error updating AssetPublication. -12070 Asset not fully loaded. Must used "editable" option when loading the asset.Example
This code loads an article and adds to its existing sites a site specified in the variable pubid and saves the article to the database :
<ASSET.LOAD NAME="anArticle" TYPE="Article" OBJECTID="Variables.id" EDITABLE="true" > <ASSET.ADDSITE NAME="anArticle" PUBID="Variables.pubid"/> <ASSET.SAVE NAME="anArticle" />See Also
ASSET.ADDCHILD
ASSET.ADDMEMBERS
ASSET.ADDSITE
ASSET.CANEDIT
ASSET.CHILDGATHER
ASSET.CREATE
ASSET.GATHER
ASSET.LOAD
ASSET.REMOVECHILDREN
ASSET.REMOVESITE
ASSET.SAVEALL
ASSET.SET
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.