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.
Error when creating customer record: An unexpected error occurred. Error ID: j9066vxpxus1u7rc9vsr
Trying to create customer record with using custom form that has some mandatory fields i already passing the values. Getting error don't know what does it mean "An unexpected error occurred. Error ID: j9066vxpxus1u7rc9vsr"
//sample code
Customer customer = new Customer();
customer.companyName = "Body Shop2";
customer.entityId = "custform_39_1043917_298";
customer.email = "bodyshop2@test.com";
// Set email preference
customer.emailPreference = EmailPreference._hTML;
customer.emailPreferenceSpecified = true;
// Set entity status.
// The default status is "Closed Won" which has an internal ID of 13
RecordRef status = new RecordRef();
status.internalId = NSUtility.ReadStringWithDefault(" Entity status internal ID (press enter for default value of Closed Won): ", "13");