I need to pass in values from the request params t...
# suitescript
n
I need to pass in values from the request params to the Suite QL "IN" clause. How should I structure it? .split doesn't work.
n
I usually build the query string in template strings using the backtick key `` Then you can reference variables inside the string with ${} Here is an example one from today
n
I am familiar with this. What about using "IN" clause?
e
I have used something like this
TransactionLine.CreatedFrom IN ("+IDsArray+")
Where
IDsArray
is an array