Returns
the Rational ClearCase label used to uniquely identify each build.
Remarque : The return value for this method does not appear
in the same format for Windows, UNIX systems and Linux.
Syntaxe
Perl
$prodinfo->GetStageLabel();
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the stage label of the build (for example,
CQ.OM.200110291206).
Exemple
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "StageLabel = '".$prodinfo->GetStageLabel()."'\n";
CQClearQuest::Unbuild($cqobject);