Categories

SuiteScript 2.0 Notes It uses the entry point function to identify the script type It is built on modular architecture We can also create our own custom modules First you need to enable client suitescript feature When you include an ...

Plugins in Netsuite First create plugin type then create plugin implementation then use ‘N/plugin’ module var addnum= plugin.loadImplementation({ type:’customscript_add_numbers’ }); to load main plugin  var addnum2 = plugin.loadImplementation({         type:’customscript_add_numbers’,         implementation: ‘customscript150’       }); to load plugin implementation Debugger To debug existing ...

adbanner