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.
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?