EVALUATE_AGGR in OBIEE 12c — Oracle Analytics

Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

EVALUATE_AGGR in OBIEE 12c

Question
124
Views
0
Comments
choracy69
choracy69 Rank 6 - Analytics Lead

Hi everyone,

I have problem with analysis in OBIEE 12c.

I created analysis with UNIONN ALL and it is working ok and it looks like:

image

And now I want see something like:

ID || NUMBER || ROLE

8462913 || II-2000-v7336 || INS, IND

8462913 || MI-2010-v635350 || IND

8462913 || POM-2018-t6262 || INS, IND

Thats mean I want aggregate Role wth group by ID, NUMBER

I think about something like that: EVALUATE_AGGR('LISTAGG(%1,%2) (ORDER BY %3 DESC)',saw_2,',',saw_2)

But I have error that thhe instruction SQL must have Group by clouse.

I try to convert formule to: EVALUATE_AGGR('LISTAGG(%1,%2) (GROUP BY %3)',saw_2,',',saw_2, saw0) but i still have the same error.

Can anyone help me with formule for listagg in evaluate_aggr?