GetProductName

Description

Returns the product name to let you know your script or code is running under Rational® ClearQuest®. The returned value is "Rational ClearQuest".

Syntax

Perl

$prodinfo->GetProductName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product name.

Example

Perl

use CQPerlExt;

my $cqobject = CQSession::Build();

my $prodinfo = $cqobject->GetProductInfo();

print "ProductName = '".$prodinfo->GerProductName()."'\n";

CQSession::Unbuild($cqobject);