task.QueryTaskStatus

Object Description

Status of a query task (task.QueryTask) in the NetSuite task queue.

You create a task.QueryTaskStatus object using task.checkStatus(options). To check the status of a query task, you must provide the task ID of the query task. To submit a query task and obtain the task ID, use QueryTask.submit().

Supported Script Types

Server scripts

For more information, see SuiteScript 2.x Script Types.

Module

N/task Module

Methods and Properties

QueryTaskStatus Object Members

Since

2020.2

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/task Module Script Samples.

            // Add additional code
...
// myQueryTask is an existing task.QueryTask object
var myTaskId = myQueryTask.submit();
var myTaskStatus = task.checkStatus({
    taskId: myTaskId
});
...
// Add additional code 

          

Related Topics

General Notices