Discussions
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
parse array
I've been struggling with a problem for hours now which is probably very simple but I can't work it out?
I am pulling multiple values from a search in suitescript 1 and putting into a variable called resultSize. Using Log Execution this shows 2,4 as these correspond to two items from a multiple select list.
This is the value I am using:
var resultSize = results[0].getValue('custrecord315');
When I pass resultSize to the filter then I get an error:
The error I get is "Filter expecting numeric value was removed, as non-numeric value '2,4' was provided"
If I hardcode the variable as var resultSize= [2,4]; then the correct info is passed to the filter and the search functions as expected.