SuiteQLTask.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(). |
Type |
Array<string | boolean | number> |
Module |
|
Parent Object |
|
Sibling 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
...
var mySuiteQLTask = task.create({
taskType: task.TaskType.SUITE_QL
});
mySuiteQLTask.params = ['myStringParameter', true];
...
// Add additional code