Devuelve los nombres de vía de acceso de campos locales.
Cada serie del valor Variant devuelto contiene el nombre de vía de acceso de un único campo. Puede ser un "nombre con puntos", si se encuentra en una referencia (por ejemplo, nombre.InicioSesión_propietario).
VBScript
entitydef.GetLocalFieldPathNames sólo_visibles
Perl
$entitydef->GetLocalFieldPathNames(sólo_visibles);
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);
}