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!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
NetSuite 2025.2 Release Notes - This document summarizes the changes to NetSuite between 2025.2 and the previous release.
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
SuiteWorld October 6 - 9, 2025: Agenda Builder is live!
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!
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!
Simple question- how to get data from a timesheet grid using ClientScript
I have the following code, which returns the field that triggers a changeField event. It works on a Job record type, but it doesn't work on a TimeSheet type. I am simply trying to show/hide a field based on the Customer a users chooses when adding time to a timesheet.
EXAMPLE:
define(['N/currentRecord'], function () { function fieldChanged(context) { //context.fieldId returns the proper id in all cases //getField() only works on the Job record type, returns null on Timesheet grid var f = context.currentRecord.getField({fieldId: context.fieldId}); f.isDisplay = false; } return { fieldChanged: fieldChanged } } );
Can anyone point me in the right direction? Is there another way I am supposed to get the field and its value for a Timesheet grid? I'm brand new to SuiteScript but was given this task. getField is supposed to work but it doesn't. If I pass it any field Id in the grid it returns null.
0