Query in Data model reports 10g [message #334876] |
Fri, 18 July 2008 08:52 |
aditiC
Messages: 38 Registered: February 2006 Location: INDIA
|
Member |
|
|
In report, i need to display data based on unigue combination of start date,end date and filter code.
-----------------------------------------------------------
START DATE END DATE FILTER NO. of Units Rate Price
-----------------------------------------------------------
01-01-2008 31-01-2008 F1 100 10 1000
200 10 2000
10 20 200
-----------------------------------------------------------
START DATE END DATE FILTER NO. of Units Rate Price
-----------------------------------------------------------
01-01-2008 31-01-2008 F2 100 10 1000
200 10 2000
10 20 200
Next i need to further sum up the units based on rate value.
Report output to be :
-----------------------------------------------------------
START DATE END DATE FILTER NO. of Units Rate Price
-----------------------------------------------------------
01-01-2008 31-01-2008 F1 300 10 3000
10 20 200
-----------------------------------------------------------
START DATE END DATE FILTER NO. of Units Rate Price
-----------------------------------------------------------
01-01-2008 31-01-2008 F2 300 10 1000
10 20 200
I am attaching the data model.I hv achieved the first filter condition .Please suggest something soon as i am very new to reports 10g. [EDITED by LF: added [code] tags to improve readability]
-
Attachment: sample.rdf
(Size: 52.00KB, Downloaded 1277 times)
[Updated on: Fri, 18 July 2008 11:36] by Moderator Report message to a moderator
|
|
|
|
|
|
Re: Query in Data model reports 10g [message #335239 is a reply to message #335154] |
Mon, 21 July 2008 09:55 |
aditiC
Messages: 38 Registered: February 2006 Location: INDIA
|
Member |
|
|
My report is based on 2 filter conditions so i have created 2 break groups. Based on the second filter condition, i need to sum up the units. But i have a single query like
select units,
rate,
price,
start date,
end date,
filter code
from account a, account line al
where a.id = al.id
my first group by is on start date,end date,filter code. Next i want to group by based on rate, and sum up the units for corresponding rates.
so i changed my query like
select sum(units),
rate,
price,
start date,
end date,
filter code
from account a, account line al
where a.id = al.id
group by rate,
start date,
end date,
filter code
but getting error as this is not a group by expression as i hv not included the price col. I don't require to group by price.
My data model has 1 query & 2 break grps. Please suggest what is needed to be done.
Thanks,
Aditi
|
|
|
|
|
|