Hi All,
I am not able to see the data in answers, when querying with month level summary.
I have created a table with monthly summary and pulled into physical layer, and mapped in BMM layer with fact and dimension tables. When i query then my report does show the data, but when i run the physical query in the oracle database from log file, it shows the data.
Details: table structure.
create table month_sales_agg
(
prod_id number not null,
prod_name varchar2(100) not null,
prod_category_desc varchar2(100) not null,
prod_subcategory_desc varchar2(100) not null,
calendar_month_desc varchar2(100) not null,
calendar_quarter_desc varchar2(100) not null,
calendar_year number not null,
quantity_sold number not null,
amount_sold number not null
);
Mapped in dimension tables: Product, time, sales_fact.
DB: oracle 12c, OBIEE 12c.
Thanks,
Liv.