Home | Register |    
 
Forums         |        Articles          |      Software          |      Portals          |      Resource          |      Wiki      |    White Papers         
 
Go Back   PBX Info :: Your Free PBX, PABX and Telephone Information Resource > PBX SYSTEMS > NORTEL > Contact Center Symposium and ACD
   SEARCH  
     
User Name Password      
Save ?
Contact Center Symposium and ACD Nortel's Symposium Call Center Server, including Web Client, Symposium Agent and TAPI, also ACD, Meridian Max, CCR, IVR Application Discussion and Support here.

Tags: , , , , ,

MerACD

Post New Thread  Reply
 
LinkBack Thread Tools Display Modes
Old 01-08-2007, 06:37 AM   #1 (permalink)
ell
Junior Member

Activity Longevity
2/20 6/20
Today Posts
0/0 sssssss53
Location: Sussex
Rep Power: 0ell is an unknown quantity at this point

Total Points:
Donate
Gender:
Country:

Cool Symposium phones have a dead ringing tone when logged out

Hi we have identified 2 phones that don't route correctly when logged out! The phones just have a dead ringing tone.

I have copied 2 scripts, the 1st script is one that works and the 2nd doesn't work. However I can't see any obvious differences. Does anyone have any ideas of what could be wrong? Thanks

1ST SCRIPT (works)
IF NOT LOGGED OUT AGENT EMERGENCY_EVACUATION_AGENT THEN GIVE RAN 46
DISCONNECT
END IF
IF DATE = Bank_Hols THEN GIVE RAN 44
DISCONNECT
END IF
IF (DAY OF WEEK = SATURDAY..SUNDAY) OR (TIME OF DAY <>OWN_DDI_WORKING_HOURS)
THEN GIVE RAN 44
DISCONNECT
END IF
IF NOT OUT OF SERVICE OwnDDi_08707745016 THEN QUEUE TO SKILLSET OwnDDi_08707745016
WAIT 2
GIVE MUSIC 50
WAIT 20
END IF
IF NOT OUT OF SERVICE DDi5016 THEN QUEUE TO SKILLSET DDi5016
WAIT 20
GIVE RAN 41
GIVE MUSIC 50
ELSE QUEUE TO SKILLSET TechOverflow
END IF
SECTION MSGREPEAT
WAIT 20
GIVE RAN 42

IF AGE OF CALL > TechOverflowValue THEN
QUEUE TO SKILLSET TechOverflow
WAIT 2
END IF
IF NOT QUEUED THEN
IF NOT OUT OF SERVICE TechOverflow THEN QUEUE TO SKILLSET TechOverflow
WAIT 2
ELSE ROUTE CALL 0
END IF
END IF

2ND SCRIPT (doesn't work)
IF NOT LOGGED OUT AGENT EMERGENCY_EVACUATION_AGENT THEN GIVE RAN 46
DISCONNECT
END IF
IF DATE = Bank_Hols THEN GIVE RAN 44
DISCONNECT
END IF
IF (DAY OF WEEK = SATURDAY..SUNDAY) OR (TIME OF DAY <>OWN_DDI_WORKING_HOURS)
THEN GIVE RAN 44
DISCONNECT
END IF
IF NOT OUT OF SERVICE OwnDDi_08707745053 THEN QUEUE TO SKILLSET OwnDDi_08707745053
WAIT 2
GIVE MUSIC 50
WAIT 20
END IF
IF NOT OUT OF SERVICE DDi5053 THEN QUEUE TO SKILLSET DDi5053
WAIT 20
GIVE RAN 41
GIVE MUSIC 50
ELSE QUEUE TO SKILLSET TechOverflow
END IF
SECTION MSGREPEAT
WAIT 20
GIVE RAN 42

IF AGE OF CALL > TechOverflowValue THEN
QUEUE TO SKILLSET TechOverflow
WAIT 2
END IF
IF NOT QUEUED THEN
IF NOT OUT OF SERVICE TechOverflow THEN QUEUE TO SKILLSET TechOverflow
WAIT 2
ELSE ROUTE CALL 0
END IF
END IF

ell is offline   sendpm.gif Reply With Quote
Old 01-08-2007, 08:19 AM   #2 (permalink)
John_In_Dakota
Moderator
 
John_In_Dakota's Avatar

Activity Longevity
5/20 20/20
Today Posts
0/0 sssss6029
Location: 1069.7 miles from Tiverton, Ontario (CANADA)
Rep Power: 12John_In_Dakota will become famous soon enough

Total Points:
Donate
Gender:
Country:

Send a message via AIM to John_In_Dakota Send a message via MSN to John_In_Dakota Send a message via Yahoo to John_In_Dakota
What are the errors telling you when you try to validate the second script? If you can post those.
__________________
Fellas', I need more Cow Bell!
John_In_Dakota is offline   sendpm.gif Reply With Quote
Old 01-08-2007, 09:15 AM   #3 (permalink)
ell
Junior Member

Activity Longevity
2/20 6/20
Today Posts
0/0 sssssss53
Location: Sussex
Rep Power: 0ell is an unknown quantity at this point

Total Points:
Donate
Gender:
Country:

Line 30: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the
Line 41: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the
Line 41: Warning : QUEUE TO SKILLSET - After a QUEUE TO SKILLSET command has been executed, it is not necessary to execute it again for
ell is offline   sendpm.gif Reply With Quote
Old 01-08-2007, 09:44 AM   #4 (permalink)
dannoWI
Junior Member
 
dannoWI's Avatar

Activity Longevity
2/20 6/20
Today Posts
0/0 sssssss60
Location: Monticello (not the famous one)
Rep Power: 0dannoWI is an unknown quantity at this point

Total Points:
Donate
Gender:
Country:

Make sure your CDN for the second script is acquired. Without knowing the rest of the setup perhaps calls aren't even reaching the script.
dannoWI is offline   sendpm.gif Reply With Quote
Old 01-08-2007, 11:30 AM   #5 (permalink)
ell
Junior Member

Activity Longevity
2/20 6/20
Today Posts
0/0 sssssss53
Location: Sussex
Rep Power: 0ell is an unknown quantity at this point

Total Points:
Donate
Gender:
Country:

I had not put the CDN's in the IDC table. All is now resolved.

Thanks for your help.
ell is offline   sendpm.gif Reply With Quote
Old 01-08-2007, 02:33 PM   #6 (permalink)
John_In_Dakota
Moderator
 
John_In_Dakota's Avatar

Activity Longevity
5/20 20/20
Today Posts
0/0 sssss6029
Location: 1069.7 miles from Tiverton, Ontario (CANADA)
Rep Power: 12John_In_Dakota will become famous soon enough

Total Points:
Donate
Gender:
Country:

Send a message via AIM to John_In_Dakota Send a message via MSN to John_In_Dakota Send a message via Yahoo to John_In_Dakota
Quote:
Originally Posted by ell
Line 30: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the
Line 41: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the
Line 41: Warning : QUEUE TO SKILLSET - After a QUEUE TO SKILLSET command has been executed, it is not necessary to execute it again for
Remember that when you get an error and it's an Suggestion your script will still pass validation. When you have a Warning you should still be able to validate.

Only Errors will prevent you from validating a script.
__________________
Fellas', I need more Cow Bell!
John_In_Dakota is offline   sendpm.gif Reply With Quote
Post New Thread  Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
i2004 phones go dead Cam7333 BCM and Norstar 0 11-08-2006 10:01 AM
ACD Phones : To block calls when nobody is logged in diversion Contact Center Symposium and ACD 2 12-03-2004 08:52 PM
different ringing tone for int/ext calls keith Meridian Systems 1 07-08-2004 03:18 PM
Ringing Phones? madhatt30 Meridian Systems 7 05-22-2004 12:02 AM
Call Queues just ringing when all agents are logged out justice Meridian Systems 19 02-19-2003 08:39 AM

Tags   |   Advertise    |    Media Partners   |    Admin   |   About us   |   Contact Us   |   RSS   


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0
Copyright PBXINFO LLC 2006