Hi,
What is wrong with this formula:
CASE WHEN "WORKFORCE".""."HRDWH"."DimRating_MD"."EP_RATING" = 999 THEN 'Not Rated' ELSE CAST("WORKFORCE".""."HRDWH"."DimRating_MD"."EP_RATING" AS CHAR(1)) END
that it do not work when placed in RPD BMM as derived from physical mappings?
In OBIEE still 999 is displayed instead of 'Not related'. Other values are from 1 to 5.
Requirement is that this dimension will be used as filter in Dashboard prompt. I have also tried to write similar code as SQL:
SELECT CASE WHEN "Ratings"."Rating" = 999 THEN 'Not Rated' ELSE CAST("Ratings"."Rating" AS CHAR(1)) END FROM "WORKFORCE"
for default value for filter, but it gives error.