Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
SuiteScript 2.0 Client Side Issues
How is it possible that when creating a SuiteScript 2.0 Client Script that the 1.0 API is getting loaded?
When creating new customizations since 2.0's release I have been making every effort to use 2.0 but this is my first client side script.
With the conflict of the two API versions being loaded at the same time the 2.0 call's won't work. Is anyone else experiencing this?
For example the following load call of a task works in the Chrome browser console on a task form where I have deployed a 2.0 Client Side script
require(['N/record'], function(record){var rec = record.load({id:someid,type:'TASK'})