I have this filter in SQL:
WHERE DEP_NAME IN ( 'SALES','ACCOUNTING')
How can I pass these two values in a mapping parameter in order to use in in the mapping either in SQ or FILER TRANSFORMATION.
Thank you.
You can pass all values in IN clause using a parameter.
$$FILTER_CLAUSE= 'SALES','ACCOUNTING'
WHERE DEP_NAME IN ( $$FILTER_CLAUSE )
This will work in SQ and FIL. You can pass as many values as you want.