Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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'}) 0