Restituisce il nome del tipo di record corrispondente all'oggetto EntityDef.
Come per le altre parti di un oggetto EntityDef, il nome di un oggetto EntityDef viene determinato dal tipo di record corrispondente, il cui nome viene impostato dall'amministratore tramite l'utilizzo di Rational ClearQuest Designer. Il nome non può essere impostato direttamente dall'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());