Devuelve el nombre del tipo de registro correspondiente del objeto EntityDef.
Como los demás componentes de un objeto EntityDef, el tipo de registro correspondiente determina el nombre de un objeto EntityDef, y el administrador establece el nombre utilizando Rational ClearQuest Designer. El nombre no se puede establecer directamente desde la API.
VBScript
set sessionObj = GetSession set entityDefObj = sessionObj.GetEntityDef(GetEntityDefName()) sessionObj.OutputDebugString "Name of record type: " & _ entityDefObj.GetName()
Perl
$sessionobj = $entity->GetSession(); $entitydefobj = $sessionobj->GetEntityDef($entity->GetEntityDefName()); $sessionobj->OutputDebugString("Name of record type: ".$entitydefobj->GetName());