Hello,
I need to use a addFoundSetFilterParam on my foundset using the IN operator. The documentation says that this is possible, but it doesn’t work.
I need a filter on orderstatus where orderstatus = D or I
The following syntax I tried, also with quotes around D and I,
but none of these seem to work.
_foundset.addFoundSetFilterParam('salesorder_status', 'IN', '(D, I)');
also
_foundset.addFoundSetFilterParam('salesorder_status', 'IN', 'D, I');
doesn’t work good, but it returns the records with only status D
Anyone knows the exact syntax for using IN operator?