i want to display the telephone number and fax in the report, take the details from the logistics electronic address table.
i am writing the below code and test with debuugger but i am unable to get the data.
select Name from dirPartyTable where dirPartyTable.Name == 'CPIL'
&& dirPartyTable.PrimaryContactPhone == logisticsElectronicAddress.RecId;
if(logisticsElectronicAddress.Type == LogisticsElectronicAddressMethodType::Phone)
{
Telephone = logisticsElectronicAddress.Locator;
}
else
{
Fax = logisticsElectronicAddress.Locator;
}
can any one know about this please help me.