Returns the path names of local fields.
Each string in the returned Variant contains the path name of a single field. This might be a "dotted name" if it is from within a reference (for example, owner.login_name).
VBScript
entitydef.GetLocalFieldPathNames visible_only
Perl
$entitydef->GetLocalFieldPathNames(visible_only);
VBScript
set sessionObj = GetSession
set entityDefObj = sessionObj.GetEntityDef(GetEntityDefName())
pathNames = entityDefObj.GetLocalFieldPathNames(False)
For Each name in pathNames
sessionObj.OutputDebugString "Path name: " & name
Next
Perl
$sessionobj = $entity->GetSession();
$entitydefobj = $sessionobj->GetEntityDef($entity->GetEntityDefName());
$pathnames = $entitydefobj->GetLocalFieldPathNames(0);
foreach $name (@$pathnames)
{
$sessionobj->OutputDebugString("Path name: ".$name);
}