Discussions
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!
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 );