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