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.
Customer Record Not Allowed As Parent
I'm trying to set the parent customer record on new customer, but NetSuite is returning the error "That record does not exist". The customer record I'm trying to set as the parent definitely exists, and is already the parent customer for multple customers we have creating using the GUI.
I originally pulled the internal ID for the parent from the GUI, and after that didn't work, I used the following code to get a list of possible customer_parent values:
GetSelectValueField getSelectValueField = new GetSelectValueField();
getSelectValueField.setFieldType(GetSelectValueType.customer_parent);
GetSelectValueResult getSelectResult = port.getSelectValue( getSelectValueField );
And sure enough, the customer record I'm trying to set as the parent isn't being returned, nor are a number of others; for no reason I can tell. Any ideas as to why some customers can not be set as parent customers, even if they are used as such in the GUI?