Is it possible to add an aggregate field over a calculated field?
Suppose there is a cds with following fields:
- ID(autoincrement)
- Name(string)
- Price(float)
- Quantity(integer)
- Total(integer) - calculated field - Price * Quantity
and I want to add an agregate to get the sum of Total column. Is it possible?
aggregate fields
? They seems to be better for this purpose. – Particularity