GetCompanyFullName

Description

Returns the full name of the company in the current locale. IBM Corporation, in English.

Syntax

Perl

$prodinfo->GetCompanyFullName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company fullname.

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "CompanyFullName     = '".$prodinfo->GetCompanyFullName()."'\n";

CQClearQuest::Unbuild($cqobject); 

Feedback