hi dear lewisp,
that's alright but the thing abt which i'm worried is how to pass the query selected with this criterion into the data model in the reports.
like if i hav a static LOV having the values
Customer
Construction
Date
now i write code like this
begin
if :LOV='Customer'
then
select something
from customer,product
where .....
order by customer.c_name
else if :LOV='construction'
then
select something
from customer,product
where .....
order by product.construction
end if;
end;
** the point is , will it work besides the actual query given into the data model right in the start of the report.
plz help
thanx
bye