-
Canceling a scheduled script
I have worked with NetSuite scripts for 10 years now. How is it that we still can't "kill" a scheduled script in processing that accidentally ends in an infinite loop? Seriously… Is it that difficult to put a button in the Cancel column and terminate it? Please? Now I have to wait an hour, all the while it sucks up…
-
Why CSV Import Task submitted through Scheduled Script is not sending Status Notification Email?
I have a Schedule script that executes task to import csv using below code: let importTask = N_TASK.create({ taskType: N_TASK.TaskType.CSV_IMPORT, mappingId: rmaImportId, //Id for you saved import for example importFile: fileObj, name: "AJR_TG_RMA_Update" + today }); But the problem its neither sending email on CSV Import…
-
Is it possible to receive Status Notification Email for CSV Imports done via Scheduled Scripts?
In our environment, Schedule script execute auto csv import task. And after finishing the import, I would like to let some users receive the e-mail notification, the system obviously doesn't have to receive it, you know. How can we make it?