GetActionName

Description

Returns the name of the current action associated with the current entity. Used in base action hooks.
Note: You cannot use this method in a Record Script.

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(); 

Feedback