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