Returns the Rational ClearCase label used to uniquely identify each build.
Perl
$prodinfo->GetStageLabel();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "StageLabel = '".$prodinfo->GetStageLabel()."'\n";
CQSession::Unbuild($cqobject);