Modules

filter

 

Objects/Functions

module (N/error)

SuiteScript 2.0

SuiteScriptError.id

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

N/error Module
SuiteScriptError.id
Property Description: Error ID that is automatically generated when a new error is created.
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.id

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 ID: " + SScustom_error.id); // id is system generated
// 'Error ID: ' followed by the id will be logged
//...
//Add additional code

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