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!

Absence Information how do I Program 1

Status
Not open for further replies.

Hitechbuzz

Technical User
Oct 23, 2002
198
NZ
Hi There
I wish to change the information given when *23 (Absence information) is used. the wording in causes 1-0 are not appropriate on my system. thanks in advance
 
You can print the reason codes with the following command.
kstsp:strno=ics. If you have BC10 or later you have to chech the ASPAP:pARNUM=193; The Exchange language.
If your language is 0 (English) you have to type KSTSP:STRNO=ICS,LANG=0;

To change te settings look at this:

KSTSC:STRNO=ICS0,STRING=" LUNCH ",TIMFMT=TIME;
KSTSC:STRNO=ICS1,STRING="G.F. DAGEN",TIMFMT=DATE;
KSTSC:STRNO=ICS2,STRING="Tj. rende",TIMFMT=TIME;
KSTSC:STRNO=ICS2,CHRVAL=E4,POS=4,TIMFMT=TIME;
KSTSC:STRNO=ICS3,STRING=" M te ",TIMFMT=TIME;
KSTSC:STRNO=ICS3,CHRVAL=D6,POS=3,TIMFMT=TIME;
KSTSC:STRNO=ICS4,STRING=" TJ.RESA ",TIMFMT=DATE;
KSTSC:STRNO=ICS5,STRING=" DELT/H NV",TIMFMT=DATE;
KSTSC:STRNO=ICS5,CHRVAL=E4,POS=8,TIMFMT=TIME;
KSTSC:STRNO=ICS6,STRING=" SEMESTER ",TIMFMT=DATE;
KSTSC:STRNO=ICS7,STRING=" TJ.LEDIG ",TIMFMT=DATE;
KSTSC:STRNO=ICS8,STRING=" TILLF.UTE",TIMFMT=TIME;
KSTSC:STRNO=ICS9,STRING=" SJUK ",TIMFMT=DATE;

The string parameter is the text shown in the display of the phone. If you need special characters you need to enter the parameter CHRVAL anf what position you want the character to appear.
You might have to insert the language parameter in th KSTSC command as well.
KSTSC:STRNO=ICS0,STRING=" LUNCH ",TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS1,STRING="G.F. DAGEN",TIMFMT=DATE,LANG=0;
KSTSC:STRNO=ICS2,STRING="Tj. rende",TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS2,CHRVAL=E4,POS=4,TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS3,STRING=" M te ",TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS3,CHRVAL=D6,POS=3,TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS4,STRING=" TJ.RESA ",TIMFMT=DATE,LANG=0;
KSTSC:STRNO=ICS5,STRING=" DELT/H NV",TIMFMT=DATE,LANG=0;
KSTSC:STRNO=ICS5,CHRVAL=E4,POS=8,TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS6,STRING=" SEMESTER ",TIMFMT=DATE,LANG=0;
KSTSC:STRNO=ICS7,STRING=" TJ.LEDIG ",TIMFMT=DATE,LANG=0;
KSTSC:STRNO=ICS8,STRING=" TILLF.UTE",TIMFMT=TIME,LANG=0;
KSTSC:STRNO=ICS9,STRING=" SJUK ",TIMFMT=DATE,LANG=0;


Regards NANSI
 
The reason code *23*0# is modified with the parameter ICS0. Hope you see what I mean.

NANSI
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top