RecordActionTaskStatus.results

Parameter Description

The results of successfully executed record action tasks. The value of the property is the task instance ID and the corresponding action result.

Type

Object (read-only)

Supported Script Types

Server scripts

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

Module

N/task Module

Sibling Object Members

RecordActionTaskStatus Object Members

Since

2019.1

Errors

Error Code

Thrown If

READ_ONLY_PROPERTY

Setting the property is attempted.

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 recordActionTask = task.create({
    taskType: task.TaskType.RECORD_ACTION
});
recordActionTask.recordType = 'timebill';
recordActionTask.action = 'approve';
recordActionTask.params = [{recordId: 1}, {recordId: 2}];
var handle = recordActionTask.submit();
var taskStatus = task.checkStatus({taskId: handle}); // returns a RecordActionTaskStatus object

log.debug(taskStatus.results); // will log, for example, the following: // { 1: { response: { 
    // approved: true }, notifications: []
...
// Add additional code 

        

Related Topics

General Notices