Hello Gurus,
I am not that familiar with relational warehousing, I am trying to create a report over infoset using UNX unviverse. I need a measure in the infoset to be divided into multiple buckets based on prompt.
I am succesfull in creating custom measure obejcts at Business layer with @prompt function. but when i create a web i report over it, the SQL generated is combining all the where conditions for the objects dragged into report.
For ex :
At universe level i have three measures.
Measure A = Key figure X where Charectistic X < Prompt Value
Measure B = Keyfigure X where charectarictis X = Prompt Value
Measure C = Keyfigure X where Charectarisic X > Prompt Value
all these measures are working fine independently, but when i drag two or more into report, it is showing blank values, the query scipt is using AND condition like below
select
key figure X
keyfigure X
kefigure X
from
table
where
Charectistic X < Prompt Value
and
charectarictis X = Prompt Value
and
Charectarisic X > Prompt Value
how can i deal with this situation? i need to evaluate the where conditions separatly,