RecordActionTask.condition
Property Description |
The condition used to select record IDs of records for which the action is to be executed. This parameter is specified with the task.ActionCondition enum. This is used in conjunction with RecordActionTask.paramCallback. If RecordActionTask.paramCallback is not specified, this default callback is used: |
Type |
Object |
Module |
|
Sibling Object Members |
|
Since |
2019.1 |
Syntax
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.condition = task.ActionCondition.ALL_QUALIFIED_INSTANCES; recordActionTask.paramCallback = function(v){
return { recordId: v, note: "this is a note for " + v };
};
var handle = recordActionTask.submit();
...
// Add additional code