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 WITH PELPI 4

Status
Not open for further replies.

Jabreu

Programmer
Aug 10, 2009
8
VE
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?.

Try to follow the same steps as they say in this link ,but does not this error: When Internal Frame Group Is Diverted To The Outside, But When I Set It Pfep Dice With No Available With Busy Tone.

Code:
<CADAP;
CALENDAR DATA
IDENTITY=MD110         
VERSION=CXP1010101/4/TSWSP02/R3A
CALENDAR TIME NOT VALID
10:56:28
THU 28 JUL 2011
END

Code:
<NANSI:NUMTYP=AC,NUMSE=300&&399;
EXECUTED

<ADCOI:ABB=5583,TRA=004166188752,CLASS=0&&3;
EXECUTED

<GHGRI:LIM=1,SERV=10000,TRAF=15,SEL=000011,QUE=10,GRP=5602;
EXECUTED
 
<CDINI:DIR=5602,DIV=300;
EXECUTED
 
<PELPI:DIR=5583,ANSPOS=5583,LIST=1,CHO=1,TIME=10,BSYCHO=2,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPI:DIR=5583,ANSPOS=5602,LIST=1,CHO=2,TIME=10,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPP:DIR=5583;
PERSONAL NUMBER LISTS INFORMATION

PERSONAL NUMBER:5583 
LIST  CHO  ANSPOS                TIME  BSYCHO  ONECAL  ORGSEL  SMSSEL
1     1    5583                  6     2       0       111     0
1     2    5602                  6     -       0       111     0 

<GHDAP:GRP=5602;
GROUP HUNTING DATA              
GRP      LIM    SERV   TRAF   SEL     QUE   CUST   RLTC   DIR   
5602     1      10000  15     000011  10           0

I Need Help Please. thanks.
 
HI Jabreu,

some confusions :)

you initiated Abbreviated number series 300&&399. But then you activated the abbreviated external number with 5583! and again you diverted the group 5602 to ABB = 300?? what is there in ABB 300?

According to the print out PELPP, the call to 5583 will go to 004166188752.

BR

Monro
 
Sorry, the correct programming is:

Code:
<NANSI:NUMTYP=ALL,NUMSE=300&&399;
EXECUTED

<ADCOI:ABB=300,TRA=004166188752,CLASS=0&&3;
EXECUTED

<GHGRI:LIM=1,SERV=10000,TRAF=15,SEL=000011,QUE=1,GRP=5602;
 EXECUTED
 
<CDINI:DIR=5602,DIV=300;
EXECUTED
 
<PELPI:DIR=5583,ANSPOS=5583,LIST=1,CHO=1,TIME=6,BSYCHO=2,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPI:DIR=5583,ANSPOS=5602,LIST=1,CHO=2,ORGSEL=111,ONECAL=0;
EXECUTED
 
<PELPP:DIR=5583;
PERSONAL NUMBER LISTS INFORMATION

PERSONAL NUMBER:5583 
LIST  CHO  ANSPOS                TIME  BSYCHO  ONECAL  ORGSEL  SMSSEL
1     1    5583                  6     2       0       111     0
1     2    5602                  6     -       0       111     0 

<GHDAP:GRP=5602;
GROUP HUNTING DATA              
GRP      LIM    SERV   TRAF   SEL     QUE   CUST   RLTC   DIR   
5602     1      10000  15     000011  10           0

Yes, I want to activate the following:
If extension 5583 is busy or not attend the call is diverted to the mobile number 004166188752, but when I do the test gives me busy and not diverted to mobile numbers.
 

you put the mobile number 004166188752 in the pelpi list not the abbdial 5583,

best parnum
 
PELPI:DIR=5583,ANSPOS=5583,LIST=1,CHO=1,TIME=6,BSYCHO=2,ORGSEL=111,ONECAL=0;

PELPI:DIR=5583,ANSPOS=004166188752,LIST=1,CHO=2,ORGSEL=111,ONECAL=0;
 
ANSPOS = D 1 D 2 ... D 20

D 1 D 2 ... D 20 = 1-20 digits. Directory number for an answering position that can be:
- An analogue extension
- A digital extension
- A digital POTS
- An ISDN terminal
- A CAS extension
- An integrated cordless extension
- An IP extension
- A remote extension (mobile and fixed remote extension)
- A destination in the private network
- A destination in the public network
- An internal group hunting group
- A common bell group
- An individual PABX operator or PABX operator group
- A voice mail system
 
Truth thank you very much, I made tests with:

Code:
PELPI:DIR=5583,ANSPOS=5583,LIST=1,CHO=1,TIME=6,BSYCHO=2,ORGSEL=111,ONECAL=0;
PELPI:DIR=5583,ANSPOS=004166188752,LIST=1,CHO=2,ORGSEL=111,ONECAL=0;

and now performs as needed. Thank you all.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top