Returns the name of the company in the current locale (IBM, in English).
Perl
$prodinfo->GetCompanyName();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "CompanyName = '".$prodinfo->GetCompanyName()."'\n";
CQSession::Unbuild($cqobject);