Creates a new group and associates it with the schema repository.
The new group is subscribed to all databases by default. When you use the methods of the Group object to add users and subscribe the group to one or more databases, the groups or users are subscribed only to those you specify.
VBScript
adminSession.CreateGroup(groupName)
Perl
$adminSession->CreateGroup(groupName);
VBScript
set adminSession = CreateObject("ClearQuest.AdminSession") adminSession.Logon "admin", "admin", "" set newGroupObj = adminSession.CreateGroup ("Engineers")
Perl
use CQPerlExt; #Create a Rational ClearQuest admin session $adminSession= CQAdminSession::Build(); #Logon as admin $adminSession->Logon( "admin", "admin", "" ); #Create the group "Engineers" object $newGroupObj = $adminSession->CreateGroup( "Engineers" ); #... CQAdminSession::Unbuild($adminSession);