Returns the requested EntityDef object.
You can use this method to get an EntityDef object for either state-based or stateless record types. To get a list of all EntityDef names in the schema, call the GetEntityDefNames method. You can call other methods of Session to return the names of specific EntityDef subsets. To get an EntityDef that belongs to a family, use the methods specifically for families (given in See also below).
VBScript
set sessionObj = GetSession ' Get the list of names of the state-based record types. entityDefNames = sessionObj.GetEntityDefNames ' Iterate over the state-based record types for each name in entityDefNames set entityDefObj = sessionObj.GetEntityDef(name) ' Do something with the EntityDef object Next
Perl
my($session, $nameList, $field, $entityDefObj, $actionName); $session=$entity->GetSession(); $entityDefObj = $session->GetEntityDef( $entity->GetEntityDefName()); $session->OutputDebugString("##> Action names for " . $entityDefObj->GetName() . "\n"); $nameList = $entityDefObj->GetActionDefNames(); foreach $actionName(@$nameList) { $session->OutputDebugString("\t##> $actionName\n"); }