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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CLID on outgoing calls Meridian PBX Opt 81c Rls 25.40

Status
Not open for further replies.

Kodaker

IS-IT--Management
Oct 7, 2005
24
CA
I have a 2616 ACD agent ..key 1 is a DID key 2 is a non DID number. When I call from key 1 I want to show the DID number (this works) when I call from key 2(non DID)
I want to show the DID number on Key 1... How do I do this
 
Create a new clid (ld 15 net - clid yes - entry xx - HNTN, HLCL to be filled, DIDN=NO)

To print exising clids:
LD 21
prt
clid

Change the Key 2 SCR xxxx yy
xxxx=DN
yy=clid #
 
I forgot to mention that I have 150 sets to change ..I cannot create 150 new CLIDS
 
unfortunaltly... yes you have to do it...
256 clids can be generated
 
if you are using procomm plus i can provide you a simple script to do that
 
First change the values corresponding your dialing plan
enter in LD 15
REQ CHG
TYPE NET
CUST 0
CLID YES
ENTRY and stop here. the script will continue for you.

***********************************************************
;New Clid tables.

string la
integer l

proc main
for l=10 upto 159
itoa l la
transmit la
transmit "^M"
waitfor " HNTN "
transmit "xx^M" ;enter the local area code in place of xx
waitfor " HLCL "
transmit "xxxx" ;enter did first digits of the did
transmit la ;la variable will add the ending digits
transmit "^M"
waitfor " DIDN "
transmit "no^M"
waitfor " HLOC "
transmit "^M"
waitfor " LSC "
transmit "^M"
waitfor "entry"
mspause 300
endfor
endproc
***********************************************************

Just try with 1 or 2 clids. Change keys on 1 or 2 sets and check if your entered values are correct. then run the end of the script
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top