Joe NetSuite
12/17/2025, 1:43 AMCeligo AI
12/17/2025, 1:43 AMAI generated answer (using internal Slack threads):To disable task creation email notifications to the assignee when creating tasks via CSV import, you would need to adjust the email preferences in NetSuite. However, based on the conversations provided, it seems that there is no direct way to disable these notifications during the CSV import process. The CSV import process in NetSuite does not provide an option to disable email notifications to the assignee. The system automatically sends an email notification to the user who initiated the import task. This is a built-in feature of NetSuite and cannot be disabled or modified during the CSV import process. However, you can potentially work around this by creating a custom script that processes the CSV file, creates the tasks, and assigns them without sending an email notification. This would require a good understanding of SuiteScript and the NetSuite API. Here is a basic example of how you might create a task without sending an email notification:
javascript
var taskRecord = record.create({
type: record.Type.TASK,
isDynamic: true
});
taskRecord.setValue({
fieldId: 'title',
value: 'My Task'
});
taskRecord.setValue({
fieldId: 'assigned',
value: assigneeId
});
var taskId = taskRecord.save({
enableSourcing: false,
ignoreMandatoryFields: true
});
In this example, the enableSourcing option is set to false when saving the record, which should prevent the system from sending an email notification to the assignee. However, this might not work in all cases, as the behavior of the system can depend on various factors, such as the user's email preferences and the specific configuration of your NetSuite account.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
12/17/2025, 1:44 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.824768066
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.819885135
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.811645508
Celigo AI
12/17/2025, 1:44 AM