Modules

filter

 

Objects/Functions

module (N/task)

SuiteScript 2.0

task.WorkflowTriggerTaskStatus

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

N/task Module
task.WorkflowTriggerTaskStatus
Object Description: The status of an asynchronous workflow initiation task placed into the NetSuite task queue by WorkflowTriggerTask.submit(). Use task.checkStatus(options) with the unique ID for the asynchronous workflow initiation task to get the WorkflowTriggerTaskStatus object. For a complete list of this object’s properties, see WorkflowTriggerTaskStatus Object Members.
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/task Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=task.WorkflowTriggerTaskStatus

Example:

// Code Example 1
//Add additional code
//...
var workflowTaskStatus = task.checkStatus(taskId);
if (workflowTaskStatus.status === task.TaskStatus.FAILED)
//...
//Add additional code

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