Rolling calls to queue based on logged agent count

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mattb025
    Aspiring Member
    • May 2014
    • 1

    Rolling calls to queue based on logged agent count

    We have new skills that are coming to the contact center.

    There will be 5 skillsets, that are supposed to be manned at all time.
    However in the rare case that no one is logged in, they want the call to roll queues up the chain.

    Info:
    A,= Primary_Skillset,
    B= Backup_Skillset,
    C= Backup2_Skillset,
    D= Backup3_Skillset,
    E= Backup4_Skillset.

    Senario
    No Agents logged into A, or B, but 1 in queue C.


    Call comes into A, script needs to check logged agent in A, then move to B, then to C.
    Call should be presented agent c:

    This is what I have

    "if (logged agent count Primary_Skillset + Logged agent count Backup_Skillset) <1 then
    queue to skillset Backup2_Skillset
    wait 2
    end if

    This works if agent in queue "C" is logged in and available. However if they are on a call or in Not Ready. it does not queue. It simply works way down the script to our closed message at the end.

    Any thoughts
  • ilalpatidar
    Whiz
    .
    • Jan 2014
    • 37

    #2
    Are you using CM for queuing calls or some other solution as its not very clear from the entire message.

    Comment

    • hergenmuelle
      Hot Shot
      .
      • Jul 2012
      • 20

      #3
      I guess this is a AACC solution.
      Please check the 'Out Of Service Mode' in CCMA / Configuration / Skillset.
      Make sure it is not set to transition for this skillset as it would mean no new calls are queued.
      I would need the skillset configuration and the assignment of the skillset to the Agent detail, plus TFE and ASM trace to see why the contact is not queued.

      Btw, You can also use the 'Out of Service' check instead of the 'LOGGED AGENT COUNT' to see if no Agent is logged into the skillset, like:
      If (Out of Service Primary_Skillset, Backup_Skillset) then
      ...

      Comment

      Loading