I'm stuck at a trivial scenario in Oracle Apex(22.1.0-17).
I have a classic report with some "notifications", (as below) and with a flag - if some specific record in the table was read or not (theoretically) - Y/N values in the IS_READ column.
I would like to archive full filtering of the records based on their flag, and that is why I used Select List (Select2 - Plug-in, to be honest), and basically, I have obtained what I wanted but there is a one missing option. In the select list, I would like to have the fully selectable "All" option in the select list which will pass both "Y" and "No" values, and allows to display of all of the records in the classic report.
I have tried to use LOV with a simple SQL query as below but it doesn't work.
SELECT
IS_READ,
(CASE WHEN IS_READ = 'Y' THEN 'Yes'
WHEN IS_READ = 'N' THEN 'No'
WHEN IS_READ = NVL(:P2_IS_READ, IS_READ) THEN 'All'
END
) as IS_READ2
FROM
NOTIFICATION
group by IS_READ;
Can someone direct me on how can I implement this "All" option in the select list (but not as a "Display Null Value")?
Thanks in advance!
Here's one option:
Select list LoV query:
Classic report query:
To illustrate it (using SQL*Plus; switching to substitution variable), with sample table:
Read notifications:
Not-read notifications:
All notifications: