Establece o devuelve el nombre del grupo.
Los caracteres siguientes no se pueden utilizar en un nombre: !, {el carácter espacio}, ", #, $, %, &, ', , (, ), *, +, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.
VBScript
group.Name
group.Name group_name
Perl
$group->GetName();
$group->SetName(group_name);
VBScript
set adminSession = CreateObject("ClearQuest.AdminSession")
adminSession.Logon "admin", "", ""
set groupList = adminSession.Groups
for each groupObj in groupList
groupName = groupObj.Name
msgbox groupName
Next