Hi,
How do I get the project shipping address?
and here is my structure
No matter what I seem to do it the address parts are blank in the debugger.
Thanks
Hi,
How do I get the project shipping address?
and here is my structure
No matter what I seem to do it the address parts are blank in the debugger.
Thanks
Hi, MarkJoyce.
Please see the code below for fetching Address information.
TradingPartner partner = TradingPartner.GetTradingPartner("Name");
StockingLocation location = StockingLocation.GetStockingLocation(partner.StockingLocationID, false);
var address = location.Addresses.GetAddressByType(AddressTypes.Shipping).FullAddress;
Thanks for posting.
Awesome, thanks that works great!
Thank you.
Thanks for replying