20.09.2017, 15:11 | #1 |
Участник
|
dynamicsaxinsight: AX7/D365/Operations: Create customer postal address through data entity from .NET console application
Источник: https://dynamicsaxinsight.wordpress....e-application/
============== Purpose: The purpose of this document is to demonstrate how we can create customer postal addresses in Dynamics 365 for Finance and Operations using an external .NET console application. Code: public void testCustomerAddressCreate(Resources _context){ DataServiceCollection dataServiceCollection = new DataServiceCollection(_context); CustomerPostalAddress customerPostalAddress = new CustomerPostalAddress(); dataServiceCollection.Add(customerPostalAddress); customerPostalAddress.CustomerLegalEntityId = "CPL"; customerPostalAddress.CustomerAccountNumber = "C0000010"; customerPostalAddress.AddressDescription = "Test address from OData 44."; customerPostalAddress.IsRoleBusiness = NoYes.Yes; customerPostalAddress.IsPostalAddress = NoYes.Yes; customerPostalAddress.AddressLocationRoles = "Address role"; customerPostalAddress.AddressCountryRegionId = "AUS"; customerPostalAddress.AddressZipCode = "2151"; customerPostalAddress.AddressCity = "NORTH ROCKS"; customerPostalAddress.AddressState = "NSW"; DataServiceResponse response = null; try { response = _context.SaveChanges(SaveChangesOptions.PostOnlySetProperties); } catch (Exception ex) { Console.WriteLine(ex.Message + ex.InnerException); } Console.ReadLine();} Источник: https://dynamicsaxinsight.wordpress....e-application/
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
|
|