wishalsangole4444
02/19/2026, 2:02 PMCeligo AI
02/19/2026, 2:02 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems that changing the label of a custom field using SuiteScript can be achieved using the
N/currentRecord module in a client script. Here is an example of how you can do this:
javascript
var rec = currentRecord.get();
var field = rec.getField({ fieldId: 'custpage_test' });
field.label = 'New Label';
However, it's important to note that this method might not work in all cases. For instance, one user reported that the setLabel method returned an SSS_NOT_YET_SUPPORTED error.
As for changing the case of a field label, it appears that NetSuite does not provide a label property to change it to other cases. One suggestion was to change the "text-transform" property in the "CSS class" set by NetSuite through a client script, but this was reported to not work in script. Another alternative could be to use an HTML layer on Suitelet instead of using the serverWidget fields.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
02/19/2026, 2:03 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830505431
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.83013916
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.821655273
Celigo AI
02/19/2026, 2:03 PM