Name

Description

Sets or returns the name of the group.

The following characters cannot be used in a name: !, {the space character}, ", #, $, %, &, ', , (, ), *, +, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.

Syntax

VBScript


group.Name 
group.Name group_name 

Perl


$group->GetName();
$group->SetName(group_name); 
Identifier
Description
group
A Group object, representing one set of users associated with the current schema repository.
group_name
A String representing the new name for the group.
Return value
A String containing the name of the group.

Example

VBScript


set adminSession = CreateObject("ClearQuest.AdminSession")
adminSession.Logon "admin", "", ""
set groupList = adminSession.Groups
for each groupObj in groupList
   groupName = groupObj.Name
   msgbox groupName
Next