Modules

filter

 

Objects/Functions

module (N/config)

SuiteScript 2.0

plugin.findImplementations(options)

{plugin}.findImplementations({type: {string*},includeDefault: {boolean}})

N/config Module
plugin.findImplementations()
Method Description: Returns the script IDs of custom plug-in type implementations. Returns an empty list when there is no custom plug-in type with the script ID available for the executing script.
Returns: A string[] containing a list of custom plug-in implementation script IDs.
Supported Script Types: Server-side scripts For more information, see SuiteScript 2.0 Script Types.
Governance: None
Module: N/config Module
Since: 2016.1
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=plugin.findImplementations(options)

Example:

// Code Example 1
//Add additional code
//...
var impls = plugin.findImplementations({
type: 'customscript_sample_plugin'
});
//...
//Add additional code

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