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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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