This page was last edited on October 30, 2014, at 20:20.
Comments or questions about this documentation? Contact us for support!
From Genesys Administrator Extension:
An option value must contain the logical expression that defines one or more of the following:
Skill(“SkillName”)=SkillLevel
SkillExists(“SkillName”)
LoggedIn(“QueueNumber@SwitchName”)
LoggedIn(“SwitchName”)
Syntax elements, such as quotation marks and parentheses, are vital for criteria validity.
Stat Server first tries to validate the LoggedIn parameter against the name of switch objects in Configuration Server. If the switch name is in the queue@switch format (for example, A@B), Stat Server will not be able to report logged in status for queue A on switch B under the following conditions:
To avoid this scenario, Genesys recommends that you not use the “@” symbol in the name of your switches.
If the virtual agent group is meant for agents whose Spanish skill is higher than 5 and whose French skill is higher than 8, the value of the Skill option is:
Skill(“Spanish”)>5 & Skill(“French”)>8
If the group is meant for agents logged in ACD queue 5253 at the switch named DEFINITY, the option value is:
LoggedIn(“5253@DEFINITY”)
If the group is meant for agents logged in at the switch named DEFINITY, the option value is:
LoggedIn(“DEFINITY”)
If the group is meant for agents whose Spanish skill is higher than 5 and who are logged in ACD queue 5253 at the switch named DEFINITY, the option value looks like this:
Skill(“Spanish”)> 5 & LoggedIn(“5253@DEFINITY”)