I have a problem in OBI analytics. I'm using OBI 10g.
I have two columns: ID
and supervisorID
.
As a result I want two columns:
1. the ID
2. and the concatenation of all the supervisorID
of the ID
in a second column.
So If I have ID following data:
ID supervisorID
1 3
1 4
2 4
I want as a result:
ID concat(supervisor)
1 3;4
2 4
I don't want to change anything at the RPD
, so my question is if this is possible in analytics itself?