Hi everyone, this is my first post so if something is missing to be more relevant, just advise me.
Here is my problem. In the selection steps, I try to create a new group but in my member list I cannot choose some members because they are not displayed in my list.
These members are from a calculated dimension with some nested Case When Then Else. I tried to put first the "case when" that brings me the values that are missing in my member list but nothing changed.
If you check my dimension values below in the "case when" my values 'HGI - All' and 'HGI - All' are not displayed in the list to create a new group in selection steps.
What is the problem with OBIEE, how can I solve that?
Also, is it possible to manually type my value that I want instead of choosing from a list, those wizards sometimes are very frustating?
Here is the sample of my dimension having the "case when":
CASE WHEN "Company"."Company Number" = '00180' THEN ('HGI - All')
ELSE
(
CASE WHEN "Company"."Company Number" = '00170' THEN ('HGM - All')
ELSE
(
CASE WHEN "Company"."Company Number" = '00100'
THEN
(CASE WHEN RIGHT("Business Area"."Ligne d’affaire", 4) = ' 100' THEN 'HGA - Pétrole'
ELSE (CASE WHEN RIGHT("Business Area"."Ligne d’affaire", 4) = ' 200' THEN 'HGA - Lub'
ELSE (CASE WHEN RIGHT("Business Area"."Ligne d’affaire", 4) = ' 400' THEN 'HGA - Dép' ELSE ('HGA - Autres')
END)
END)
END)
ELSE
('Autre Société')
END
)
END
)
END
Thanks for your help,
Patrick