그룹의 이름을 설정하거나 리턴합니다.
VBScript
group.Name group.Name group_name
Perl
$group->GetName(); $group->SetName(group_name);
set adminSession = CreateObject("ClearQuest.AdminSession") adminSession.Logon "admin", "", "" set groupList = adminSession.Groups for each groupObj in groupList groupName = groupObj.Name msgbox groupName Next