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.
Creating New Employee address via web services
Hello everyone,
I am trying to create a new address via webservices for an employee. When I compile it and it tells me that address.addressbookAddress.addressee = "John Doe"; is null .
if (intAddressBookCount > 0)
{
lblAddr1.Text = employee.defaultAddress.ToString();
EmployeeAddressbookList addressList = new EmployeeAddressbookList();
//addressList.replaceAll = true;
EmployeeAddressbook[] addresses = new EmployeeAddressbook[intAddressBookCount];
com.netsuite.sandbox.system.EmployeeAddressbook address = new EmployeeAddressbook();
address.defaultShipping = true;
address.defaultShippingSpecified = true;
address.defaultBilling = true;
address.defaultBillingSpecified = true;
address.label = "Test Address";
address.addressbookAddress.addressee = "John Doe";
address.addressbookAddress.addr1 = "4765 Sunset Blvd Test";
address.addressbookAddress.city = "San Francisco";
address.addressbookAddress.state = "CA";
address.addressbookAddress.zip = "94131";
address.addressbookAddress.country = Country._unitedStates;