static void getCompanyAddress(Args _args)
{
CompanyInfo companyInfo;
DirPartyPostalAddressView postalAddressView;
;
companyInfo = companyInfo::find();
select firstFast postalAddressView
where postalAddressView.Location == companyInfo.PrimaryAddressLocation;
info(companyInfo.Name+ "," +postalAddressView.Address);
}
{
CompanyInfo companyInfo;
DirPartyPostalAddressView postalAddressView;
;
companyInfo = companyInfo::find();
select firstFast postalAddressView
where postalAddressView.Location == companyInfo.PrimaryAddressLocation;
info(companyInfo.Name+ "," +postalAddressView.Address);
}