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!
Why task.checkStatus throws error INVALID_TASK_TYPE?
I have created/submitted a task for CSV Import in SuiteScript 1.0.
When I am trying to get a status of the task(from another script developed in SuiteScript 2.1) using the task ID(got from above script), I am getting "INVALID_TASK_TYPE" error.
Below is the code I am using:
let csvTaskStatus = task.checkStatus({
taskId: csvImportTaskId
});
log.debug("csvTaskStatus", JSON.stringify(csvTaskStatus));
log.debug("csvTaskStatus.status", csvTaskStatus.status );
This code was working fine till Thursday. But Suddenly since Friday, Its showing the error "INVALID_TASK_TYPE".
Am I missing something?