CreateUserSession
Description
Create a Session object. After the object is created, you must login to the Session.
Syntax
Perl
$ClearQuestObj->CreateUserSession();
- Identifier
- Description
- ClearQuestObj
- A CQClearQuest object.
- Return value
- Returns a Session object.
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest ::Build();
my $SessionObj = $cqobject->CreateUserSession();
# login to the Session object
# do something with the Session object...
CQClearQuest ::Unbuild($cqobject);