Hi
I am new to site and not sure this is correct place to post this question. Currently I am using SAP BusinessObjects BI Platform 4.1 Support Pack 4
Version: 14.1.4.1327. Infoview is what everyone in my office calls it. I am supposed to have Crystal reports but I am having issues with access so I am not sure the version. I need to create a report that takes data in multiple rows and creates one object for it.
Labels prod1 prod2
case1 abd ttt
case1 ddd fdsa
case1 eft jhgjg
case2 jhgg ddd
case2 bbb fdsa
SELECT labels,
LISTAGG (prod1, ',') WITHIN GROUP (ORDER BY prod1) AS prod1,
LISTAGG (prod2, ',') WITHIN GROUP (ORDER BY prod2) AS prod2
FROM your_table
GROUP BY labels
With volume data, solving data modelling problems in the reporting tool invariably leads to performance issues (or very complex, hard to maintain reports).
Only other solution is if your database has a PIVOT function or similar, build something in the BO universe.