Description
Returns
the full name of the company in the current locale. IBM
Corporation, in English.
Syntaxe
Perl
$prodinfo->GetCompanyFullName();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- A String containing the company fullname.
Exemple
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "CompanyFullName = '".$prodinfo->GetCompanyFullName()."'\n";
CQClearQuest::Unbuild($cqobject);