Hello there,
I'm facing a problem when creating records in Navision. I create a contact like this:
Contacts Contact = new Contacts();
Contact.Name = String.Format("{0} {1}", FirstName, FamilyName);
Contact.Address_Floor = 2;
ContactsService.Create(ref Contact);
so far so good, but when I check the created contact, every integer field is left 0. Has anyone faced the problem (or am I doing it wrong :oops: )
Answers
You need to put below code in your code.
Example
Best Regards,
Yukon