Record.isDynamic
Property Description |
Indicates whether the record is in dynamic or standard mode.
This value is set when the record is created or accessed. (dynamic and standard mode — see SuiteScript 2.x Standard and Dynamic Modes) |
Type |
boolean (read-only) |
Module |
|
Sibling Object Members |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/record Module Script Samples.
// Add additional code
...
if (record.isDynamic) {
// add processing for dynamic records
}
...
// Add additional code