Modules

filter

 

Objects/Functions

module (N/record)

SuiteScript 2.0

Record.setValue(options)

{Record}.setValue({fieldId: {string*},value: {number | Date | string | array | boolean*},ignoreFieldChange: {boolean}})

N/record Module
Record.setValue()
Method Description: Sets the value of a field. (dynamic and standard mode — see SuiteScript 2.0 – Standard and Dynamic Modes)
Returns: record.Record
Supported Script Types: Client and server-side scripts For more information, see SuiteScript 2.0 Script Types.
Governance: None
Module: N/record Module
Sibling Object Members: Record Object Members
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Record.setValue(options)

Example:

// Code Example 1
// Add additional code.
//...
objRecord.setValue({
fieldId: 'item',
value: true,
ignoreFieldChange: true
});
//...
// Add additional code.

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