Modules

filter

 

Objects/Functions

module (N/error)

SuiteScript 2.0

SuiteScriptError.notifyOff

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

N/error Module
SuiteScriptError.notifyOff
Property Description: Suppresses email notification when set to true.
Type: string (read-only)
Supported Script Types: All server scripts that are not user event scripts. For more information, see SuiteScript 2.0 Script Types.
Module: N/error Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=SuiteScriptError.notifyOff

Example:

// Code Example 1
//Add additional code
//...
var SScustom_error = error.create({
name: 'MY_ERROR_CODE',
message: 'my custom SuiteScriptError details',
notifyOff: false
});
log.debug("Error NotifyOff: " + SScustom_error.notifyOff); // 'Error NotifyOff: false' will be logged
//...
//Add additional code

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