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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Displaying joined fields in a Suitelet List
I've created a Suitelet which lists all the emails from a Support Case, however I'm having a problem displaying any of the joined fields.
If I display just the Support Case fields the Suitelet generates fine however the joined fields cause the script to error.
I have debugged the script and can see that the joined fields are returning back successfully so am unsure if this is a limitation within Netsuite or an error on my part in the script.
Below is the Suitelet code..
function caseListEmails(request,response) {
if (request.getMethod() == 'GET') {
var list = nlapiCreateList('Support Case: Reply To All');
0