action.Action
Object Description |
Encapsulates a NetSuite record action. This object is returned by the action.get(options) and action.find(options) methods. |
Supported Script Types |
Client and server scripts For more information, see SuiteScript 2.x Script Types. |
Module |
|
Methods and Properties |
|
Since |
2018.2 |
Syntax
Important:
The following code snippet shows the syntax for this member. It is not a functional example. For a complete script example, see N/action Module Script Samples.
// Add additional code
...
var myAction = action.get({
recordType: 'timebill',
id: 'approve'
});
...
// Add additional code