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 a contact record
Hi,
We are trying to create a C# app to create a new lead, and the corresponding contact record. We have the customer record being created successfully, but are running into some "typing" issues with the contact record relative to their documentation (we were referencing their online documentation for a while, then found the PDF, and realized the HTML docs were a bit out of date).
Anyway, we are creating a contact record like this:
// create a contact record
Contact contact = new Contact();
contact.comments = "comments";
contact.email = "jasen@hotmail.com";
contact.firstName = "test";
contact.lastName = "contact";
contact.phone = "4 44 444444";
contact.unsubscribe = false;