APEX interactive report filters [message #623178] |
Fri, 05 September 2014 09:58 |
|
mhugh
Messages: 10 Registered: May 2014
|
Junior Member |
|
|
I have successfully used cascading LOV filters in Oracle APEX application interactive reports.
The filters have initially been populated with a drop-down list of all unique values for that
parameter. So, a choice could be made from any list. As choices are made, the lists are
subsetted to values related to the previous choice.
However, in one application, only the first list is initially populated with values.
All remaining LOVs lists are blank. When the first choice is made, the subsequent list is
populated with a subset of values. When the second choice is made, that list is populated.
The interactive reports in this application were based on 'COLLECTIONS' which appear to be
a merge of two or more tables.
I would appreciate ideas on why LOV lists in cascading filters are appearing empty and are only
populated when a previous choice is made.
|
|
|
|
|
Re: APEX interactive report filters [message #623396 is a reply to message #623319] |
Tue, 09 September 2014 15:11 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
What exactly do you call "collections"? You saidQuote:
which appear to be a merge of two or more tables This is just a join, is it not? Such asselect e.ename
from emp e, dept d
where e.deptno = d.deptno If that's so, why do you call it a "collection"? Collection is a completely different thing, an ordered group of elements, all of the same type. Therefore, pay attention to terminology you use in order to avoid confusion.
I don't think that joins have anything to do with what you claim to be a problem. If you have cascading LoVs, it is expected that they behave that way. Shortly, I don't see a problem here.
|
|
|
|