<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&nbsp;shown on the screen.&nbsp; This is not a function of asterisk but the device. <br />
<br />
<div id="divSignature">Thanks<br />
<br />
Bryant&nbsp;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" &lt;danny@debsinc.com&gt;<br />
<b>Sent</b>: Tuesday, November 29, 2011 9:37 AM<br />
<b>To</b>: "Asterisk Users Mailing List - Non-Commercial Discussion" &lt;asterisk-users@lists.digium.com&gt;<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 =&gt;<br />
_ZXXXXXXXX,1,MixMonitor(${CHANNEL}${EXTEN}${STRFTIME(${EPOCH},,%Y%m%d%H%M%S)<br />
}.wav)<br />
exten =&gt; _ZXXXXXXXX,n,Set(CALLERID(num)=${EXTEN})<br />
exten =&gt; _ZXXXXXXXX,n,Dial(${PSTNTRUNK}/${EXTEN})<br />
exten =&gt; _ZXXXXXXXX,n,Playback(vm-nobodyavail)<br />
exten =&gt; _ZXXXXXXXX,n,Hangup()<br />
exten =&gt; _ZXXXXXXXX,104,Congestion()<br />
exten =&gt; _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 =&gt; 9,1,Set(AgentCount=1)<br />
exten =&gt; 9,2,Background(WhichCustomer)<br />
<br />
exten =&gt; 1,1,Set(EnteredOption=1)<br />
exten =&gt; 1,2,Goto(ExternalOnly,s,1)<br />
<br />
exten =&gt; 2,1,Set(EnteredOption=2)<br />
exten =&gt; 2,2,Set(CALLERID(pres)=allowed) exten =&gt;<br />
2,3,Set(CALLERID(num)=65631040) exten =&gt; 2,4,Goto(ExternalOnly,s,1)<br />
<br />
<br />
exten =&gt; i,1,Playback(pbx-invalid)<br />
exten =&gt; i,2,Set(AgentCount=$[${AgentCount}+1])<br />
exten =&gt; i,3,GotoIf($[${AgentCount} &lt; 3]?ExternalAgent,9,2:4) exten =&gt;<br />
i,4,Playback(vm-goodbye) exten =&gt; i,5,Hangup()<br />
<br />
exten =&gt; t,1,Set(AgentCount=$[${AgentCount}+1])<br />
exten =&gt; t,2,GotoIf($[${AgentCount} &lt; 3]?ExternalAgent,9,2:3) exten =&gt;<br />
t,3,Playback(vm-goodbye) exten =&gt; t,4,Hangup() ;<br />
<br />
<br />
[ExternalOnly]<br />
<br />
<br />
exten =&gt; s,1,Set(OutCount=1)<br />
exten =&gt; s,2,Background(EnterTheNumber)<br />
<br />
exten =&gt; i,1,Playback(pbx-invalid)<br />
exten =&gt; i,2,Set(OutCount=$[${OutCount}+1])<br />
exten =&gt; i,3,GotoIf($[${OutCount} &lt; 3]?ExternalOnly,s,2:4) exten =&gt;<br />
i,4,Playback(vm-goodbye) exten =&gt; i,5,Hangup()<br />
<br />
exten =&gt; t,1,Set(OutCount=$[${OutCount}+1])<br />
exten =&gt; t,2,GotoIf($[${OutCount} &lt; 3]?ExternalOnly,s,2:3) exten =&gt;<br />
t,3,Playback(vm-goodbye) exten =&gt; t,4,Hangup()<br />
<br />
<br />
<br />
exten =&gt;<br />
_ZXXXXXXXX,1,MixMonitor(${CHANNEL}${EXTEN}${STRFTIME(${EPOCH},,%Y%m%d%H%M%S)<br />
}.wav)<br />
exten =&gt; _ZXXXXXXXX,2,Dial(${PSTNTRUNK}/${EXTEN})<br />
exten =&gt; _ZXXXXXXXX,3,Playback(vm-nobodyavail)<br />
exten =&gt; _ZXXXXXXXX,4,Hangup()<br />
exten =&gt; _ZXXXXXXXX,103,Congestion()<br />
exten =&gt; _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>