Définit ou renvoie le nom du groupe.
Les caractères suivants ne peuvent pas être utilisés dans un nom : !, {caractère espace}, ", #, $, %, &, ', , (, ), *, +, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.
VBScript
group.Name
group.Name nom_groupe
Perl
$group->GetName();
$group->SetName(nom_groupe);
VBScript
set adminSession = CreateObject("ClearQuest.AdminSession")
adminSession.Logon "admin", "", ""
set groupList = adminSession.Groups
for each groupObj in groupList
groupName = groupObj.Name
msgbox groupName
Next