BI Publisher NVL+IN
Hi,
I have created a parameter with comma separated text field.
When i try to use NVL and IN. It gives xml error.
WHERE
m.prodmarktypeid IN NVL(:P_MARKET)
Later from google figured out i m not supposed to use NVL and IN so tried to this
WHERE
((:P_MARKET) IS NULL and m.prodmarktypeid = m.prodmarktypeid
OR
m.prodmarktypeid IN :P_MARKET)
Even this gives error.
0