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.
phone calls and script deployment inconsistence
i'm trying to create a phone call, but i can't seem to find a way to specify participants, or set the start/end times. there's a "Block out time" option in the UI, but there's none through suitescript, nor is there a "Participants" field. has anyone set these values successfully?
here's my code:
var record = nlapiCreateRecord('phonecall');
record.setFieldValue('title','Follow Up');
record.setFieldValue('owner',189);
record.setFieldValue('assigned',189);
record.setFieldValue('startdate','06/08/06');
record.setFieldValue('contact',5236)
record.setFieldValue('starttime','9:00 am')
record.setFieldValue('endtime','9:30 am')
record.setFieldValue('message','message')
record.setFieldValue('phone','(555) 555-5555')
id = nlapiSubmitRecord(record, false);