Description
Returns
the company email address of the company for the current locale.
Syntax
Perl
$prodinfo->GetCompanyEmailAddress();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the company email address (for example,
us.ibm.com.)
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "CompanyEmailAddress = '".$prodinfo->GetCompanyEmailAddress()."'\n";
CQClearQuest::Unbuild($cqobject);