To view the zero in a pivot for two dimensions and a measure view

How show zero instead of null for the measure, the measure is seen in two-dimensional row and one in a column.
Thanks in advance

Hi santhoshbon,

Are you sure that you get a record with a NULL value or are you just can't get a record at all? There is a great misunderstanding about the lack of data compared to data with a NULL value.

If you really a NULL value which crosses, then all you have to do is use the IFNULL(MY_MEASURE,0) and you will represent at least a 0 instead of NULL.

If you have no trace in your fact table for this combination of your dimensions, while you do kind of thing of data densification. Here are a few options:

(1) query use Nico logical substitute to the densification of the data: http://gerardnico.com/wiki/dat/obiee/logical_sql/obiee_sql_densification
(2) outerjoin bypass to implement John Minkjan in the report: Outer Join work-around
(3) implement a real outer join to the RPD: joins OBIEE
(4) to add missing dimensional data points, use the combine with a similar request.

My guess is that you do not get a NULL value. I'm guessing that you have data scattered and you will need to use one of the methods above to work around this problem.

Good luck and if you found this post useful, please reward points!

Best regards

-Joe

Tags: Business Intelligence

Similar Questions

Maybe you are looking for