Hi experts,
I'm facing the following scenario:
I've got an infoprovider which contains item-level keyfigures.
The correspoding headers have keyfigures which cannot be disaggregated to the items.
It would not be a problem to provide a header-level infoprovider,
and an item-level infoprovider, but I cannot find a way to bring both sources together
in the same query.
A concrete example:
The header-level infoprovider contains the confirmed quantity of an production-order.
The item-level infoprovider contains the component-materials used by this prod-order and it's quantity.
In the target report I'd like to see the confirmed quantity of a prod-order as well as the components-level.
The problem is, that if I provide the prod-order-quantity on the item-level, that they will be aggregated multiple-times (according to the number of components used by a prod-order).
Example:
Data:
ProdOrder Component Conf.Qty CompQty
111 X 10 3
111 Y 10 2
112 X 10 1
Wanted result, when aggregated on ProdOrder-Level:
111 10 5
112 10 1
Actual result, when aggregated on ProdOrder-Level:
111 20 5
112 10 1
Is there any way to solve that?
I'm still fighting with the idea of exception-aggregation, but it seems as if I had not understood the concept yet.
Best regards,
Marco