Guys, I have inserted the following lines into some of our Symposium scripts to route out of hours calls for our IPF dept to a Callpilot Voicemail greeting and mailbox. It worked fine in the first script I put it in, but then in every other script it's doing something weird! When I dial the ACD that invokes the script, I am forwarded to voicemail and told that the user does not subscribe to this service. The weird part is that VM is saying the number I am forwarding to is 70117. Somehow an extra digit is being added to the end of the number I am trying to route the call to. It is a different digit in each of the scripts that are failing. Why is it doing this?????
/*Check that call is within business hours*/
IF (DAY OF WEEK=IPF_Days) AND (TIME OF DAY<>IPF_Hours)
THEN ROUTE CALL 7011
DISCONNECT
ELSE IF (DAY OF WEEK=Sunday)
THEN ROUTE CALL 7011
DISCONNECT
END IF
END IF
/*Check that call is within business hours*/
IF (DAY OF WEEK=IPF_Days) AND (TIME OF DAY<>IPF_Hours)
THEN ROUTE CALL 7011
DISCONNECT
ELSE IF (DAY OF WEEK=Sunday)
THEN ROUTE CALL 7011
DISCONNECT
END IF
END IF