Anyone figured out a way to get around the 1300 ch...
# suitescript
s
Anyone figured out a way to get around the 1300 character limit on fields coming back from a saved search? I have some fields with large JSON objects in them, and creating a search to retrieve this data on GET in a suitelet, and the results are capping at 1300 characters and appending
(more...)
. Running same search in chrome console gives back the full string.
e
Maybe create multiple columns with SUBSTR({fieldname},0,1300), SUBSTR({fieldname},1300,1300), SUBSTR({fieldname},2600,1300) etc. then join those results on the backend?
s
I understand your suggestion, just don't think it will work in my scenario. Also strange behavior,
search.lookupFields
on the same record/field gives me the full string/it's length