GetActionName
Description
Returns
the name of the current action associated with the current entity.
Used in base action hooks.
Note: Do not use this method with a Record
script. Because a Record_script_alias is not a true entity action,
the behavior of this function is undefined when used in a Record_script_alias
action.
Syntax
VBScript
entity.GetActionName
Perl
$entity->GetActionName
();
- Identifier
- Description
- entity
- An Entity object corresponding to a record in a schema.
- Return value
- A String containing the name of the current action associated with the current entity.
Examples
VBScript
actionName = entityObj.GetActionName
Perl
$actionName = $entityObj->GetActionName();