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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
How to get the full value of a Long Text field
i have some custom Long Text fields on my opportunity record, which i'm retrieving via a suitescript search.
For some reason its truncating the value and replacing it with '(more...)'.
Is there a way to retrieve the full value of the field?
simplified code is below:
var filters = new Array();
filters[0] = new nlobjSearchFilter( 'internalid', null,'anyof', internalId);
var fields = new Array();
fields [0] = new nlobjSearchColumn( 'custbody_adequacy' );
fields [1] = new nlobjSearchColumn( 'custbody_my_position_vs_competition');
var searchresults = nlapiSearchRecord( 'opportunity', null, filters, fields );
0