Hi
I have created the script below, which is designed so that if nobody is logged into the skillset the calls will forward to a blackberry number. I have also created Boolean entries in the script variables, so that we can remotely change the person on call. The IF statements below should then forward the call to the relevant blackberry number, based on the Boolean entries.
I'm sure there are probably better ways of doing this, but we need to have the ability to easily change the person on call.
Unfortunately this svcript is not working at the moment. Can anyone please advise how I can get this to work?
Thank you
IF (DAY OF WEEK = SATURDAY..SUNDAY) OR (DATE = Christmas) OR (DATE = Bank_Hols) OR (TIME OF DAY <> IT_Support_VIP_Working_Hours)
THEN
EXECUTE VIP_BLACKBERRY
END IF
IF adverse_weather_IT_Support_VIP = TRUE
THEN
EXECUTE VIP_BLACKBERRY
END IF
/* -------------------------------------------------------------*/
SECTION IT_Support_VIP_Queue
GIVE RINGBACK
IF NOT OUT OF SERVICE IT_Support_VIP
THEN
QUEUE TO SKILLSET IT_Support_VIP
WAIT 2
ELSE
EXECUTE VIP_BLACKBERRY
END IF
Give Music 50
WAIT 8
/* ------------------------------------------------------------ */
SECTION VIP_BLACKBERRY
IF on_call_Ward = TRUE
THEN
ROUTE CALL 907700000000
ELSE
IF on_call_Alex = TRUE
THEN
ROUTE CALL 907700000001
ELSE
IF on_call_Mark = TRUE
THEN
ROUTE CALL 907700000002
ELSE
IF on_call_Tony = TRUE
THEN
ROUTE CALL 907700000003
ELSE
EXECUTE IT_Support_VIP_Queue
END IF
END IF
END IF
END IF
I have created the script below, which is designed so that if nobody is logged into the skillset the calls will forward to a blackberry number. I have also created Boolean entries in the script variables, so that we can remotely change the person on call. The IF statements below should then forward the call to the relevant blackberry number, based on the Boolean entries.
I'm sure there are probably better ways of doing this, but we need to have the ability to easily change the person on call.
Unfortunately this svcript is not working at the moment. Can anyone please advise how I can get this to work?
Thank you
IF (DAY OF WEEK = SATURDAY..SUNDAY) OR (DATE = Christmas) OR (DATE = Bank_Hols) OR (TIME OF DAY <> IT_Support_VIP_Working_Hours)
THEN
EXECUTE VIP_BLACKBERRY
END IF
IF adverse_weather_IT_Support_VIP = TRUE
THEN
EXECUTE VIP_BLACKBERRY
END IF
/* -------------------------------------------------------------*/
SECTION IT_Support_VIP_Queue
GIVE RINGBACK
IF NOT OUT OF SERVICE IT_Support_VIP
THEN
QUEUE TO SKILLSET IT_Support_VIP
WAIT 2
ELSE
EXECUTE VIP_BLACKBERRY
END IF
Give Music 50
WAIT 8
/* ------------------------------------------------------------ */
SECTION VIP_BLACKBERRY
IF on_call_Ward = TRUE
THEN
ROUTE CALL 907700000000
ELSE
IF on_call_Alex = TRUE
THEN
ROUTE CALL 907700000001
ELSE
IF on_call_Mark = TRUE
THEN
ROUTE CALL 907700000002
ELSE
IF on_call_Tony = TRUE
THEN
ROUTE CALL 907700000003
ELSE
EXECUTE IT_Support_VIP_Queue
END IF
END IF
END IF
END IF