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 Contact with Primary contact role in a customer
Hi Terry,
We are trying to create a contact with role as primary contact in a customer.
we are trying with the following code. But it is giving error as
"Missing or Invalid RecordType for AttachTo"
RecordRef contactRole = new RecordRef();
contactRole.internalId = "-10";
contactRole.type =RecordType.contactRole;
RecordRef contact = new RecordRef();
contact.internalId ="1195";
contact.type = RecordType.contact;
RecordRef attachTo = new RecordRef();
attachTo.internalId ="1194";
attachTo.type = RecordType.customer;
AttachContactReference attachReference = new AttachContactReference();
attachReference.attachTo = attachTo;
attachReference.contact =contact;
attachReference.contactRole =contactRole;
WriteResponse res = cnw.attach(attachReference);
Can you pls help me out ...we are importing customers with contacts to our production .so we need to resolve this issue assp.