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

Num Log

Status
Not open for further replies.

level7

Technical User
Nov 25, 2002
8
GB
How can you put the LCR digit (normally "9") in front of the num log display for users to call back on the digital phones?

Any help appreciated.
 
Hi Level7 :

here's the beef :

NUTRI:ENTRY=1,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=2,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=3,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=4,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=5,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=6,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=7,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=8,CNVTYP=2,NUMTYP=2,PRE=9;
NUTRI:ENTRY=9,CNVTYP=2,NUMTYP=2,PRE=9;

this will change the received A-number for national calls...

greetings,

 
One quick thing.

The national numbers all begin with 0 (zero), so how does this help.

I'll try it anyway, but just curious.
 
that's why we use type of number (NUMTYP parameter)
2 means national number, when a call is setup with national number the '0' is not sent. suppose your number is
0301234567 and your international code is for example 49 a calling/called number party can be setup in a number of different ways :

1) unknown (NUMTYP = 0) : this means that we don't know the number plan, in this case ALL the digits are sent => 0301234567
2) national (NUMTYP = 2) : this means that it's a national number, so we know the number plan, in this case we can drop the leading zero => 301234567

3) international (NUMTYP = 1) : following the above explanation we know its an international number format,
in this case the international acces code (let's say it's 00) can be omitted => 49301234567

having explained this, you can extend the programmation for international calls :

NUTRI:ENTRY=1,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=2,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=3,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=4,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=5,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=6,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=7,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=8,CNVTYP=2,NUMTYP=1,PRE=90;
NUTRI:ENTRY=9,CNVTYP=2,NUMTYP=1,PRE=90;

hope this clears up some things for you...

greetings,

 
Thank you "whosrdaddy" Understand it now.

You what they say old dogs, new tricks etc.....

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top