Description
Create
a Session object. After the object is created, you must login to the Session.
Syntaxe
Perl
$ClearQuestObj->CreateUserSession();
- Identificateur
- Description
- ClearQuestObj
- A CQClearQuest object.
- Valeur renvoyée
- Returns a Session object.
Exemple
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);