Save method: Content Reference Link class
Syntax
Save()
Description
The Save method saves any changes you made to the content reference link, for example, a changed description or ValidFrom date.
After you create a link using either the CreateLink or CreateContentRefLink methods you must use the Save method to save the link to the database.
Using this method also saves any changes you made to PermissionValue or AttributeValue objects associated with this content reference link.
Parameters
None.
Returns
A Boolean value: True if the content reference link and its associated objects saved successfully, False otherwise. If False is returned, a message is also written to the PSMessage collection.
Example
If NOT(&MyCRefLink.Save()) Then
/* save failed, do error processing */
End-If;