Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flowing to another skillset only on certain days

Status
Not open for further replies.
Dec 7, 2006
696
US
Im looking for calls to a particular skillset to overflow to another only on the weekends. Is there a way to do this? Here is what I have set up right now:

IF ((DAY OF WEEK=produce_sun) AND (TIME OF DAY=produce_sun_hrs))

THEN

QUEUE TO SKILLSET produce
WAIT 2
GIVE RAN csr_ran
GIVE MUSIC mus_14

END IF

Basically I want it so that if sitting in the queue for a certain period of time it flows to another skillset. I know I can set it up to do it all the time in the ACD settings but only want it for the weekend.
 
Just put a line in the script that says something like

IF (DAY OF WEEK = saturday, sunday) THEN
your weekend treatment
END IF
 
Just re-reading my post I noticed i left out something.

I want it to roll over after sitting in the first queue for a certain period of time.
 
You therefore put something like:

IF AGE OF CALL > 120 AND
DAY OF WEEK = saturday, sunday THEN
<<your special treatment>>
END IF

This will execute your special treatment if the call is older than 120 seconds and it's a weekend. This will need to go in some sort of holding loop.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top