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