Description
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.
- Return value
- A String containing the stage label of the build
(for example, CQ.OM.200110291206).
Exemple
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "StageLabel = '".$prodinfo->GetStageLabel()."'\n";
CQSession::Unbuild($cqobject);