Search This Blog

Thursday 4 December 2014

X++ code to get the Phone Number of the Delivery Address in the Purchase Order in AX 2012

Hi,
 
Today I would like to share you , how to get the phone number of the Delivery Address in the Purchase Order.
 
static void getphoneNumber(Args _args)
{
 
PurchTable purchTable;
 
LogisticsLocation logisticslocation;
 
LogisticsPostalAddress logisticsPostalAddress;
 
select purchTable where purchTable.PurchId=="000059";
 
select logisticslocation where logisticslocation.ParentLocation ==
LogisticsPostalAddress::findRecId(purchTable.DeliveryPostalAddress).Location;
 
info(LogisticsElectronicAddress::findByLocation(logisticslocation.RecId).Description);
 
info(LogisticsElectronicAddress::findByLocation(logisticslocation.RecId).Locator);
 
}
 
Happy Daxing.........
 

No comments:

Post a Comment