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.
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