Categories
- All Categories
- 5 Oracle Analytics Sharing Center
- 12 Oracle Analytics Lounge
- 193 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.4K Oracle Analytics Forums
- 5.9K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 66 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How to handle 'All' parameters in Oracle BI EE query

Answers
-
@Salma Ashraf - Does your data have null values as well for Person_number? If yes, that could be the issue, as Oracle BI EE connection doesn't handle NULL values. Please refer below thread where they have suggested how the null values should be handled.
0 -
Hi @Salma Ashraf,
Could you try like this instead of the SQL statement you used for Person number? Since you use NULL values as passed radio button, I doubt it would pass 'All' back to the query. It will send NULL. Try revising the statement like this and let know if it works.
AND (person_number IN (:person_number) OR LEAST(:person_number) IS NULL)
Thanks ,
Abhilash
0 -
Oracle BI EE often enforces security restrictions that might prevent using functions like NVL or LEAST directly in the presentation layer.
also when i put this statement AND (PERSON_NUMBER IN (:person_number) OR 'All' IN (:person_number || 'All')) in my query it gives me this error when i run the query
Thanks in advance
Salma Ashraf
0