cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
376
Views
0
Helpful
3
Replies

CCX 10.5 User Management Capabilities Dump

rossporubski
Level 4
Level 4

We have 206 users and the capability window only shows the first 76 agents. I've been tasked to generate a report which identifies both agents and supervisors separately. 

Is there a way to export all of the data for the users, not just the first 76 and separate accordingly from this page?

 

Thank you, any help is greatly appreciated.

1 Accepted Solution

Accepted Solutions

Aaron Harrison
VIP Alumni
VIP Alumni

Hi

I use SQL queries to grab this info.

For example, a quick user report for Supervisors:

run uccx sql db_cra select s.resourceLoginID, t.teamname from supervisor s inner join team t on s.managedteamid = t.teamid where s.active = 't' and t.active = 't' order by s.resourceloginid, t.teamname

And a quick one for agents with their skills/teams:

run uccx sql db_cra select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid

 

Just paste those into the server CLI via Putty and log the output to text. You can then import that as a tab-sep-value file to Excel.

Aaron

 

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

View solution in original post

3 Replies 3

Aaron Harrison
VIP Alumni
VIP Alumni

Hi

I use SQL queries to grab this info.

For example, a quick user report for Supervisors:

run uccx sql db_cra select s.resourceLoginID, t.teamname from supervisor s inner join team t on s.managedteamid = t.teamid where s.active = 't' and t.active = 't' order by s.resourceloginid, t.teamname

And a quick one for agents with their skills/teams:

run uccx sql db_cra select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid

 

Just paste those into the server CLI via Putty and log the output to text. You can then import that as a tab-sep-value file to Excel.

Aaron

 

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

Thanks Aaron for the quick response.

 

Worked perfectly!

No problem :-)

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!