GetCompanyName

Descrizione

Restituisce il nome della società nell'impostazione internazionale corrente (IBM, in lingua inglese).

Sintassi

Perl

$prodinfo->GetCompanyName(); 
Identificativo
Descrizione
prodinfo
Un oggetto CQProductInfo.
Valore di ritorno
Una stringa che contiene il nome della società (ad esempio, IBM).

Esempio

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

my $prodinfo = $cqobject->CreateProductInfo();

print "CompanyName         = '".$prodinfo->GetCompanyName()."'\n";

CQClearQuest::Unbuild($cqobject); 

Feedback