" /> Virtual Agent Groups - Genesys CTI User Forum

Author Topic: Virtual Agent Groups  (Read 3395 times)

Offline AndreK

  • Newbie
  • *
  • Posts: 16
  • Karma: 0
Virtual Agent Groups
« on: March 25, 2008, 03:32:49 AM »
Advertisement
Is there a way to create a virtual agent group which is switch related. So it returns the skilled agents for the different switches?
eg.

SkillExists(“SkillName”) for Switch01
or
SkillExists(“SkillName”) for Switch02
or
SkillExists(“SkillName”) for Switch03
Thanks
Andre

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Virtual Agent Groups
« Reply #1 on: March 25, 2008, 05:20:14 AM »
Dont think so but maybe something like:

SkillExists(“SkillName_SW1”)
or
SkillExists(“SkillName_SW2”)
or
SkillExists(“SkillName_SW3”)

Offline Sylvainsjc

  • Full Member
  • ***
  • Posts: 137
  • Karma: 2
Re: Virtual Agent Groups
« Reply #2 on: March 25, 2008, 12:00:29 PM »
[color=blue]No you can't but you can make a mix of :

SkillExists(“SkillName”) & LoggedIn(“SwitchName1”)
or
SkillExists(“SkillName”) & LoggedIn(“SwitchName2”)
or
SkillExists(“SkillName”) & LoggedIn(“SwitchName3”)[/color]

Offline AndreK

  • Newbie
  • *
  • Posts: 16
  • Karma: 0
Re: Virtual Agent Groups
« Reply #3 on: March 26, 2008, 02:05:33 AM »
Thanks guys for your help. I needed it to return all agents with skill per switch.
Andre