10-25-2012 02:03 PM - edited 03-14-2019 10:44 AM
I have a Queue with 10 agents. They all have different skill levels. I have set the Queue to Route the call based on Highest Skill.
Is there a way I can view all agents in that Queue and what skill level they are assigned? I can click on "Open Printable Report of this CSQ" but it only shows me the agents in the queue. Not what skill level they are assigned for that Queue.
Solved! Go to Solution.
10-25-2012 03:08 PM
Hi
You can run this from the CCX server CLI:
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
I don't think there's a good way of seeing it through the GUI.
Principal Engineer at Logicalis UK
Please rate helpful posts...
10-25-2012 03:08 PM
Hi
You can run this from the CCX server CLI:
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
I don't think there's a good way of seeing it through the GUI.
Principal Engineer at Logicalis UK
Please rate helpful posts...
10-26-2012 05:30 AM
Formatting afterwards is a nightmare but this works. Good work Aaron!!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide