Hi, I have one fact table and two different dimension table: FACT1 and DIM1 and DIM2
Dim1 and Dim2 has data called MANUALLY_PRODUCT and SYSTEM_PRODUCT
In physical layer I have join like:
FACT1.MP_ID = DIM1.MANUALLY_PRODUCT_ID FACT1.SP_ID = DIM2.SYSTEM_PRODUCT_ID
I have requirement to create one table for PRODUCT with column NAME and TYPE and when
I am creating analysis I want add PRODUCT_NAME column and for example sum(PRODUCT_AMOUNT) from FACT1 and see ALL product in one analysis.
How can I achieve this requirement in Business Layer?
I create fact table in business layer and one dimension with two source, but then I created analysis I see only data for PRODUCT_NAME column for only one type. The second type is null.