Hi, am I the only who has issue with Suitescript 2...
# suitescript
l
Hi, am I the only who has issue with Suitescript 2.1 in a M/R script ? On the input data function :
Copy code
return search.create({
      type : search.Type.JOB,
      columns : ['internalid', 'externalid', 'entityid']
});
Something like that was working fine in 2.0. Now, I have no error, but the input data fail.
b
netsuite support case
l
Will do that. Fyi : this works "fine" (depending on your definition of "fine).
Copy code
return search.create({
      type : search.Type.JOB,
      columns : ['internalid', 'externalid', 'entityid']
}).run().getRange(0, 1000);
But we loose the main advantage of the M/R (do not have to take care of the number of data)
b
writing code to do your own search is generally not hard
but you do lose out on the performance benefits
a
Was this issue fixed? Did you end up filing a case?
l
Yes I opened a case and the issue was confirmed by netsuite. They will push a fix on the 9th of April (if I remember well)
👍 1