Parameter in inline view
H.OAug 29 2007 — edited Sep 3 2007Hi All,
There is a requirement to change oracle report (rdf) to discoverer. The report query has parameters in inline views which are used as tables (a and b below).
For example:
SELECT a.1,a.2,b.1,b.2
FROM
( select 1,2... from c where c.sth=:Parameter1) a
,( select 1,2... from d where d.sth between :Parameter2 and :parameter3) b
Now that, c.sth or d.sth are not available in select clause, How do i apply the parameters from discoverer desktop.
Also, is there any approach i can follow to solve the same.