EditEntity

Description

Performs the specified action on a record and makes the record available for editing.

To obtain a list of legal values for the edit_action_name parameter, call the GetActionDefNames method of the appropriate EntityDef object.

After calling this method, you can modify the fields of the corresponding record. When you are done editing the record, validate it and commit your changes to the database by calling the Validate and Commit methods, respectively.

Note: This method became available in version 2002.05.00.

Syntax

VBScript


entity.EditEntity edit_action_name 

Perl


$entity->EditEntity(edit_action_name); 
Identifier
Description
entity
The Entity Object corresponding to the record that is to be edited.
edit_action_name
A String containing the name of the action to initiate for editing (for example, modify or resolve).
Return value
None.