Modules

filter

 

Objects/Functions

module (N/task)

SuiteScript 2.0

SuiteQLTaskStatus.params

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=SuiteQLTaskStatus.params for more information.

N/task Module
SuiteQLTaskStatus.params
Property Description: Parameters for the SuiteQL query. The specified parameters are substituted into the SuiteQL query string (represented by SuiteQLTask.query) when you submit the SuiteQL task using SuiteQLTask.submit(). This property references the same set of parameters that are specified by the SuiteQLTask.params property in the corresponding task.SuiteQLTask object.
Type: Array (read-only)
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/task Module
Parent Object: task.SuiteQLTaskStatus
Sibling Object Members: SuiteQLTaskStatus Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=SuiteQLTaskStatus.params

Example:

// Code Example 1
// Add additional code
//...
// mySuiteQLTask is an existing task.SuiteQLTask object
var myTaskId = mySuiteQLTask.submit();

var myTaskStatus = task.checkStatus({
taskId: myTaskId
});

var theParams = myTaskStatus.params;
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_159223893036.html