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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
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