<span style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt">I have found that this is a feature on most phones. It is usually called something like display in call dialed digits.<br />
This is an option on all three of the phone manufactures products we use. If enabled digits dialed during an active call to be shown on the screen. This is not a function of asterisk but the device. <br />
<br />
<div id="divSignature">Thanks<br />
<br />
Bryant Zimmerman (ZK Tech Inc.)<br />
616-855-1030 Ext. 2003</div>
<br />
<br />
<span style="font-family: tahoma,arial,sans-serif; font-size: 10pt;"><hr align="center" size="2" width="100%" />
<b>From</b>: "Danny Nicholas" <danny@debsinc.com><br />
<b>Sent</b>: Tuesday, November 29, 2011 9:37 AM<br />
<b>To</b>: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com><br />
<b>Subject</b>: Re: [asterisk-users] When dialing the number, I need to see it in the Cisco LCD Phone</span><br />
<br />
If you are using a 1.X (1.4, 1.6 or 1.8) version you probably need to either<br />
use saynumber() to playback the number before dialing or use message() to<br />
send an IM to the phone since that architecture "only knows" 9 as the number<br />
you dialed. I think 10.0 will "refresh" the number when Dial is executed. <br />
<br />
Or this might work for you, but if it does your callee will probably wonder<br />
what is up.<br />
<br />
exten =><br />
_ZXXXXXXXX,1,MixMonitor(${CHANNEL}${EXTEN}${STRFTIME(${EPOCH},,%Y%m%d%H%M%S)<br />
}.wav)<br />
exten => _ZXXXXXXXX,n,Set(CALLERID(num)=${EXTEN})<br />
exten => _ZXXXXXXXX,n,Dial(${PSTNTRUNK}/${EXTEN})<br />
exten => _ZXXXXXXXX,n,Playback(vm-nobodyavail)<br />
exten => _ZXXXXXXXX,n,Hangup()<br />
exten => _ZXXXXXXXX,104,Congestion()<br />
exten => _ZXXXXXXXX,105,Hangup()<br />
<br />
-----Original Message-----<br />
From: asterisk-users-bounces@lists.digium.com<br />
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of bilal ghayyad<br />
Sent: Tuesday, November 29, 2011 5:04 AM<br />
To: asterisk-users@lists.digium.com<br />
Subject: [asterisk-users] When dialing the number, I need to see it in the<br />
Cisco LCD Phone<br />
<br />
Dear List;<br />
<br />
I have internal Menu that I use it when doing outside call (it ask some<br />
questions, and then it ask to dial the number that need to call it), I can<br />
access this menu by dialing 9, but after the Background stay play the wave<br />
file, then whatever I dial (to select) and whatever the number that I dial<br />
it, I do not see it in the LCD of the IP Phone, it stays display on the IP<br />
Phone the 9 number (which is the first dialed number to access the Menu),<br />
how can I display the dialed numbers that I am dialing on the LCD, because I<br />
need to see what I dialed (at least to know I am dialing the right digits<br />
and to know what the number I am calling him now)!!<br />
<br />
I am adding below the extensions.conf part that is related to this scenario:<br />
<br />
<br />
exten => 9,1,Set(AgentCount=1)<br />
exten => 9,2,Background(WhichCustomer)<br />
<br />
exten => 1,1,Set(EnteredOption=1)<br />
exten => 1,2,Goto(ExternalOnly,s,1)<br />
<br />
exten => 2,1,Set(EnteredOption=2)<br />
exten => 2,2,Set(CALLERID(pres)=allowed) exten =><br />
2,3,Set(CALLERID(num)=65631040) exten => 2,4,Goto(ExternalOnly,s,1)<br />
<br />
<br />
exten => i,1,Playback(pbx-invalid)<br />
exten => i,2,Set(AgentCount=$[${AgentCount}+1])<br />
exten => i,3,GotoIf($[${AgentCount} < 3]?ExternalAgent,9,2:4) exten =><br />
i,4,Playback(vm-goodbye) exten => i,5,Hangup()<br />
<br />
exten => t,1,Set(AgentCount=$[${AgentCount}+1])<br />
exten => t,2,GotoIf($[${AgentCount} < 3]?ExternalAgent,9,2:3) exten =><br />
t,3,Playback(vm-goodbye) exten => t,4,Hangup() ;<br />
<br />
<br />
[ExternalOnly]<br />
<br />
<br />
exten => s,1,Set(OutCount=1)<br />
exten => s,2,Background(EnterTheNumber)<br />
<br />
exten => i,1,Playback(pbx-invalid)<br />
exten => i,2,Set(OutCount=$[${OutCount}+1])<br />
exten => i,3,GotoIf($[${OutCount} < 3]?ExternalOnly,s,2:4) exten =><br />
i,4,Playback(vm-goodbye) exten => i,5,Hangup()<br />
<br />
exten => t,1,Set(OutCount=$[${OutCount}+1])<br />
exten => t,2,GotoIf($[${OutCount} < 3]?ExternalOnly,s,2:3) exten =><br />
t,3,Playback(vm-goodbye) exten => t,4,Hangup()<br />
<br />
<br />
<br />
exten =><br />
_ZXXXXXXXX,1,MixMonitor(${CHANNEL}${EXTEN}${STRFTIME(${EPOCH},,%Y%m%d%H%M%S)<br />
}.wav)<br />
exten => _ZXXXXXXXX,2,Dial(${PSTNTRUNK}/${EXTEN})<br />
exten => _ZXXXXXXXX,3,Playback(vm-nobodyavail)<br />
exten => _ZXXXXXXXX,4,Hangup()<br />
exten => _ZXXXXXXXX,103,Congestion()<br />
exten => _ZXXXXXXXX,104,Hangup()<br />
<br />
<br />
Any help on how to be able to display at the Cisco IP Phone LCD what I am<br />
dialing during this scenario?<br />
<br />
Regards<br />
Bilal<br />
<br />
--<br />
_____________________________________________________________________<br />
-- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to<br />
Asterisk? Join us for a live introductory webinar every Thurs:<br />
http://www.asterisk.org/hello<br />
<br />
asterisk-users mailing list<br />
To UNSUBSCRIBE or update options visit:<br />
http://lists.digium.com/mailman/listinfo/asterisk-users<br />
<br />
<br />
--<br />
_____________________________________________________________________<br />
-- Bandwidth and Colocation Provided by http://www.api-digital.com --<br />
New to Asterisk? Join us for a live introductory webinar every Thurs:<br />
http://www.asterisk.org/hello<br />
<br />
asterisk-users mailing list<br />
To UNSUBSCRIBE or update options visit:<br />
http://lists.digium.com/mailman/listinfo/asterisk-users<br />
<br /></span>