Vic,
I think, using a Broadcast server, you can send report automatically (for example every monday morning about the last week).
People who bught Brio for CCA can not use it for CCon. (Because they actually bought CCA and not Brio)
I also experianced problems with Brio InSight and some versions/SPs of IE. Need to contact BRIO to solve the problem.
And finally, about your first question: The question is if you need a custom brio report brio query document or ETL process to aggregate the ccon db? If you need a brio query document, the best way is to copypaste the parts you need from the genesys provided sample (rga generated) report and you have to play a bit with java script. I am not a superb java script programmer, but creating a custom brio report is really not an big issue.
What really difficult is, to create a custom ETL process, that aggregates (customly) the ccon database. You can do the following steps:
1. Analyse what your customer wants to have aggregated, kind of metadata.
2. Create the query for that.
3. Optimize the query and the ccon db. (indexes etc)
Our ETL process is about 2000 (!!!) lines only SQL stattements. It is started every 30min by cronjob. Couple of help, lookup trables, custom triggers, custom times: we are not using Sttime and Endtime to define in witch intervall the call ended, but a database wrapup time (trigger), that defines, when exacly the call is written into the db. Before that you can not do anything with the call (ccon has it in the memory)... Quite long story. We worked on this "solution" about 4 months.
Yes, and you can ask why did we implemented it? We needed Skill reports. Using CCA, you can not report on attached data. You can filter it, but we have over 150 Skills, Services, and our customer wanted to se a skill report for each skill. And StatServer reaches very fast the maximum number of open statistics, if you create a group of agent report for each skill (attached data) filter (what we actually needed. But CCON, writes the attached data into the db, so it's (sounds) simple to make sql statements like:
SELECT statistics and all you need
FROM ccon, config and custom tables
GROUP BY attached data saved in EVREF and EVDATA
cheers
cumi