Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Updating Addressbook details
Hi All,
We have a requirement to update the phone numbers in our customer master. Presently, we have extension to each number e.g., 123-456-7890 E 1234. Now we want to remove the extension as it is creating issues during shipping. But, when we try to update just the number using Webservices, it is updating all the other data (Address1, Address2, Zip etc.,) to NULL
We are using the following code
CustomerAddressbookList custaddbooklist = new CustomerAddressbookList();
CustomerAddressbook[] custaddbook = new CustomerAddressbook[Addrec];
for ( int kk = 0; kk<Addrec ; kk++)
{
custaddbook[kk] = new CustomerAddressbook();
custaddbook[kk].phone = "004-920-3281";
custaddbooklist.addressbook = custaddbook;
}
customer.addressbookList = custaddbooklist;