그룹의 이름을 설정하거나 리턴합니다.
다음 문자는 이름에 사용할 수 없습니다: !, {공백 문자}, ", #, $, %, &, ', , (, ), *, +, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.
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