Restituisce il nome della società nell'impostazione internazionale corrente (IBM, in lingua inglese).
Perl
$prodinfo->GetCompanyName();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "CompanyName = '".$prodinfo->GetCompanyName()."'\n";
CQSession::Unbuild($cqobject);