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!

doubt on PELPI

Status
Not open for further replies.

Monrovia

Technical User
Mar 1, 2007
292
IN
I would like to forward calls from one extension to an extension - directly. and if that extension did not answer/busy, the calls should forward to a mobile number. how can i achieve this?

2333 -> 2265. if 2265 did not answer in 8sec, calls should go to mobile number 0796765724

Code:
<CADAP;
CALENDAR DATA
IDENTITY=MD110    
VERSION=CXP1010101/2/BC12SP7/R4A
12:17:06
TUE 31 MAR 2009     

PELPI:DIR=2333,ANSPOS=2265,LIST=1,CHO=1,TIME=8,ORGSEL=111,ONECAL=0,BSYCHO=2;
EXECUTED 
<ADCDP:ABB=445;
COMMON ABBREVIATED DIALLING FACILITY DATA
ABB       TRA                         CLASS   NPRES
445       90796765724                 0123    0 
<PELPI:DIR=2333,ANSPOS=445,LIST=1,CHO=2,TIME=15,ORGSEL=111,ONECAL=0;
NOT ACCEPTED
ANSPOS
NOT ALLOWED
 
just put the mobile n# in the anspos?

if you want a flexible solution (I think that's why you created the abb) , create an empty GH with CDINI to ABB.
GH is allowed as ANSPOS.

/Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
Hi daddy,

Code:
<PELPI:DIR=2333,ANSPOS=90796765724,LIST=1,CHO=2,TIME=15,ORGSEL=111,ONECAL=0;
NOT ACCEPTED
ANSPOS
NOT ALLOWED



Code:
<GHGRI:LIM=1,SERV=10000,TRAF=1,SEL=110000,QUE=10,GRP=4025;
EXECUTED
<GHDAP:GRP=4025;
GROUP HUNTING DATA              
GRP      LIM    SERV   TRAF   SEL     QUE   CUST   RLTC   DIR   
4025     1      10000  1      110000  10           0      
 
<CDINI:DIR=4025,DIV=445;
EXECUTED
 
<PELPI:DIR=2333,ANSPOS=4025,LIST=1,CHO=2,TIME=15,ORGSEL=111,ONECAL=0;
EXECUTED

after programming, when i called this group number 4025 frm my extn, i am getting busy tone.

when i called 2333, i am getting "not reachable", extn 2265 is forwarded to a DECT, and DECT is not in range (if DECT is in range, it rings). so in this case(not reachable), why the call doesn't forwarded to the second anspos? i mean CHO=2?
 
i can divert the calls to mobile manually

*22#445#

the calls will forward to mobile phone. but this will overwrite the PELPI activated on that extension.
 
the DECT problem is solved by SP, make sure your system is upgraded to SP11.

for the GH problem, your SEL parameter is incorrect:

SEL=000630

/Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
DADDY, unsuccessfull :(

Code:
<ADCOI:ABB=445,TRA=90796765724,CLASS=0&&3;
EXECUTED
 
<GHGRI:LIM=1,SERV=10000,TRAF=1,SEL=000630,QUE=10,GRP=4025;
EXECUTED
 
<CDINI:DIR=4025,DIV=445;
EXECUTED
 
<PELPI:DIR=2333,ANSPOS=2265,LIST=1,CHO=1,TIME=15,BSYCHO=2,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPI:DIR=2333,ANSPOS=4025,LIST=2,CHO=1,TIME=15,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPP:DIR=2333;
PERSONAL NUMBER LISTS INFORMATION

PERSONAL NUMBER:2333 
LIST  CHO  ANSPOS                TIME  BSYCHO  ONECAL  ORGSEL  SMSSEL
1     1    2265                  15    2       0       111     0
2     1    4025                  15    -       0       111     0
 

END
 
<GHDAP:GRP=4025;
GROUP HUNTING DATA              
GRP      LIM    SERV   TRAF   SEL     QUE   CUST   RLTC   DIR   
4025     1      10000  1      000630  10           0

The calls are going to the first choice position, ie, 2265. but if the extension is busy, it is not jumping to BSYCHO position, ie 4025, Instead showing "not reachable".
If i dial 4025(GH No) the call is going to mobile#
 
your programming is wrong:

you used list 2 instead of list 1:

PELPI:DIR=2333,ANSPOS=4025,LIST=1,CHO=2,TIME=15,ORGSEL=111,ONECAL=0;

/Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
oops!

CHO=2 instead of LIST=2!!

thanks daddy, working fine!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top