Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Multiple problems adding addresses
I'm trying to add an address to a current customer. My .NET code does the following:
1. Gets the customer record.
2. Increases the size of customer.addressbookList.addressbook array by 1.
3. Adds the new address to the addressbook array.
4. Calls the update operation on the customer record.
I have 2 problems:
1. The new address has a state set to a state enumeration (e.g. "_vermont"). I know I can't just use "VT". However, the existing addresses already have "VT" set, so the update is failing on the existing addresses. It seems crazy that I have to translate the state text to enumeration values on existing addresses.
0