" /> New Acknowledgment If Email exist in Queue More than 3 Days - Genesys CTI User Forum

Author Topic: New Acknowledgment If Email exist in Queue More than 3 Days  (Read 3636 times)

Offline raza990

  • Full Member
  • ***
  • Posts: 214
  • Karma: 5
New Acknowledgment If Email exist in Queue More than 3 Days
« on: March 17, 2015, 02:31:01 PM »
Advertisement
Hi,

It would be possible to send out a new acknowledgment response if the mail is in the category in more than xxxxx hours?

For Example:
Acknowledgment#1 says, we expect to answer you in max 3 days.

If email wont answer and will in queue till 3 days then Acknowledgment#2 will be sent to the customer which says sorry for the delay, due to some issues we expect to answer you in max 10 days.

More than 1 acknowledgment can be active at a time ?
How we capture the emails which have age more than 3 days for a particular queue ?

Please share your ideas to achieve this solution.

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #1 on: March 17, 2015, 02:34:46 PM »
You can achieve it by using standard function within routing strategy (set the KVP with StartDate, check the duration since StartDate, after reach the limit, send the ACK)

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #2 on: March 17, 2015, 03:40:51 PM »
Assuming they are still on queue and have not being handled by an agent you can create a view with a condition on that view with _age() function which is is seconds. Then move that interaction to a new strategy and do something. Move it then to a new Queue.

If interaction is on Agents workbin you apply same idea but on the Workbin. You need to create a scheduled strategy load/unload to run the query on the workbin

Offline raza990

  • Full Member
  • ***
  • Posts: 214
  • Karma: 5
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #3 on: April 29, 2015, 01:40:46 PM »
Hi Again  :)

What I understand from solution is to set _ager() function where value is 864000 seconds (10 days) in the interaction queue view where emails are waiting to be handled .. [b]RIGHT ?[/b] then move those emails in the new inetraction queue which have wait time greater than 864000 seconds and send the 2nd acknowledgement based on categories.

Now for workbin, set _age() function and move to the new queue where 2nd acknowledgement will be send and then email move to same workbin.

Is the understanding is correct ? Also email can move to same workbin or we can only send it to other workbin like generic workbin ?
Why we need scheduled strategy load/unload ?  ???

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #4 on: April 29, 2015, 02:41:52 PM »
Your view will point to a strategy that will move the interaction to whenever you want.
Schedule because what if 10 days occurs at working time? Better do it at night or in a non-working schedule.

Offline raza990

  • Full Member
  • ***
  • Posts: 214
  • Karma: 5
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #5 on: April 29, 2015, 06:30:37 PM »
Thanks cavagnaro [emoji4]

So if customer don't have objection on sending 2nd ack on working hours then we can do the automate for workbin too just like we will do for email interactions in view .. RIGHT ?


Sent from my iPhone using Tapatalk

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: New Acknowledgment If Email exist in Queue More than 3 Days
« Reply #6 on: April 29, 2015, 06:53:09 PM »
Well...the view condition will be triggered when? Never did without a Scheduled strategy so...kinda blury...The condition on the view is not like running all the time, only when an interaction occurs and meet that condition. So...on my case what triggers that is the execution of the strategy as will analyze all interactions on that queue.
Guess will have a little debate on this one :D