QueryTaskStatus.taskId

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

ID of the submitted query task.

This property references the same task ID that is returned by QueryTask.submit() when you submit the task for asynchronous processing.

Type

string (read-only)

Supported Script Types

Server scripts

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

Module

N/task Module

Parent Object

task.QueryTaskStatus

Sibling Object Members

QueryTaskStatus Object Members

Since

2020.2

Errors

Error Code

Thrown If

READ_ONLY_PROPERTY

You try to set the value of this property after the task.QueryTaskStatus object is created.

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
});
var theTaskId = myTaskStatus.taskId;
...
// Add additional code 

          

Related Topics

task.QueryTaskStatus
N/task Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices