Modules

filter

 

Objects/Functions

module (N/task)

SuiteScript 2.0

RecordActionTask.recordType

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

N/task Module
RecordActionTask.recordType
Parameter Description: The record type on which the action is to be performed. For a list of record types, see record.Type.
Type: string
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/task Module
Sibling Object Members: RecordActionTask Object Members
Since: 2019.1
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=RecordActionTask.recordType

Example:

// Code Example 1
//Add additional code
//...
{
var recordActionTask = task.create({taskType: task.TaskType.RECORD_ACTION});
recordActionTask.recordType = 'timebill';
recordActionTask.action = 'approve';
recordActionTask.params = [{recordId: 1, note: "this is a note for 1"},
{recordId: 5, note: "this is a note for 5"},
{recordId: 23, note: "this is a note for 23"}];

var handle = recordActionTask.submit();

var res = task.checkStatus({taskId: handle}); // returns a RecordActionTaskStatus object
log.debug('Initial status: ' + res.status);
});
//...
//Add additional code

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