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.
System sending emails for tasks created by script, regardless of if 'sendemail' is F
I have opened up a case with NS support for this last Thursday, but have yet to hear back from them (case # 1388121).
Please provide detailed steps to reproduce the problem:
var newRecord = nlapiCreateRecord('task');
newRecord.setFieldValue('assigned', 'user_id_here');
newRecord.setFieldValue('company', 'company_id_here');
newRecord.setFieldValue('title', 'test- delete me');
newRecord.setFieldValue('sendemail', 'F');
var id = nlapiSubmitRecord(newRecord);
Result:
The assignee is still receiving and autogenerated email from NetSuite informing them that the task has been assigned to them. This did not happen prior to the new release. This only happens when the task is created by script. Creating a task through the UI obeys the checkbox.