We have an on-prem Oracle BI Enterprise Edition 11g set up in our company. As stated in the documentation at
https://docs.oracle.com/cd/E14571_01/bi.1111/e16364/apiwebintegrate.htm
you can pass a http request query to Oracle BI and get back a CSV result. For example I can successfully get back a list of project numbers in CSV by passing the below URL (without the white spaces) just pasting it in my browser.
http://<url of local instance of OBIEE server>/analytics/saw.dll?Go&SQL=
SELECT
"Project - Performance".Project"."Project Number"
FROM
"Project - Performance"
&Action=Extract&Format=CSV
My problem is that if the project number value field is null, it does not get included in the result. In normal Oracle SQL I am familiar using something like IFNULL("Project - Performance".Project"."Project Number",0) to ensure it gets included in the result, but this doesn't seem to work when using this http request method. How can I restructure the query sql so null values get included?
Thanks,