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 Tips
Most records in NetSuite have an XML view. When writing and debugging suitescripts it can be useful to have a peek under the hood and see what fields are available and their values.
TIP 1
NetSuite will return a record in XML if you append xml=T to the URL.
Example. This is a URL to a customer record:
https://system.netsuite.com/app/common/entity/custjob.nl?id=2180
If we append xml=T the record will be returned in XML. (I recommend using Firefox or a browser that supports XML when testing this.)
https://system.netsuite.com/app/common/entity/custjob.nl?id=2180&xml=T
0