<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Times New Roman; font-size: 12pt; color: #000000'>Thanks for your answer Danny,<br><br>I thought there was another solution using some cdr options.<br><br>Best Regards.<br><span><br><span name="x"></span><div><div><font style="font-weight: bold;" size="2"><span style="font-family: arial,helvetica,sans-serif;">Luiz Gustavo Chiaretto</span></font><br><img src="http://freeddom.com/images/signature/signature.jpg"><br></div></div><span name="x"></span><br></span><br><hr id="zwchr"><b>From: </b>"Danny Nicholas" &lt;danny@debsinc.com&gt;<br><b>To: </b>"Asterisk Users Mailing List - Non-Commercial Discussion" &lt;asterisk-users@lists.digium.com&gt;<br><b>Sent: </b>Wednesday, March 2, 2011 11:42:58 AM<br><b>Subject: </b>Re: [asterisk-users] Doubt about cdr on asterisk<br><br>





<!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
p
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>



<div class="Section1">

<div>

<p class="MsoNormal"><b><font face="Tahoma" size="2"><span style="font-size: 10pt; font-family: Tahoma; font-weight: bold;">From:</span></font></b><font face="Tahoma" size="2"><span style="font-size: 10pt; font-family: Tahoma;">
asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] <b><strong>On Behalf Of </strong></b>Luiz Gustavo Chiaretto<br>
<b><span style="font-weight: bold;">Sent:</span></b> Wednesday, March 02, 2011
8:34 AM<br>
<b><span style="font-weight: bold;">To:</span></b> Asterisk
 Users Mailing List - Non-Commercial Discussion<br>
<b><span style="font-weight: bold;">Subject:</span></b> [asterisk-users] Doubt
about cdr on asterisk</span></font></p>

</div>

<p class="MsoNormal"><font face="Times New Roman" size="3"><span style="font-size: 12pt;">&nbsp;</span></font></p>

<div>

<p class="MsoNormal"><font color="black" face="Times New Roman" size="3"><span style="font-size: 12pt; color: black;">I have the following situation....<br>
<br>
I'm using Action Originate to originate a call for a costumer. Originate goes
to a context that call the dial application. Before the application (Dial using
the G option) to be invoked i'm setting the variable cellphone like this:<br>
<br>
[firstcontext]<br>
&nbsp;&nbsp; exten =&gt; s,1,Set(CDR(cellphone)=${CELLPHONE})<br>
&nbsp;&nbsp; exten =&gt;
s,n,Dial(IAX2/user:pass@otherasterisk/${CELLPHONE},30,G(secondcontext^s^1))<br>
<br>
[secondcontext]<br>
&nbsp;&nbsp; exten =&gt; s,1,Hangup()&nbsp; <br>
&nbsp;&nbsp; exten =&gt; s,n,Playback(something)<br>
&nbsp;&nbsp; exten =&gt; s,n,NoOp(CDR(cellphone)<br>
&nbsp;&nbsp; exten =&gt; s,n,Hangup()&nbsp; <br>
<br>
When the costumer answer the call, caller party goes to secondcontex on
extension 1 and the called party goes to secondcontex on extension 2. On
firstcontext (before the Dial) i can see the value of variable cellphone, but
on my secondcontext (after Dial)&nbsp; the variable CDR(cellphone) is blank. <br>
<br>
Is there something that i can do to pass the value after Dial application?<br>
<br>
<span id="2147aaf4-535e-4e88-9c50-311f42c9b5ef"></span></span></font><font color="navy"><span style="color: navy;">You can’t depend on CDR to hold this value because you create
a new CDR instance with the Dial application. &nbsp;You can set a local variable and
reload CDR(cellphone) after the Dial, like this</span></font><font color="black"><span style="color: black;"></span></font></p>

<p class="MsoNormal"><font color="black" face="Times New Roman" size="3"><span style="font-size: 12pt; color: black;">[firstcontext]<br>
&nbsp;&nbsp; exten =&gt; s,1,Set(CDR(cellphone)=${CELLPHONE})<br>
&nbsp;&nbsp; exten =&gt; s,n,Set(holdcellphone=${CELLPHONE})<br>
&nbsp;&nbsp; exten =&gt;
s,n,Dial(IAX2/user:pass@otherasterisk/${CELLPHONE},30,G(secondcontext^s^1))<br>
<br>
[secondcontext]<br>
&nbsp;&nbsp; exten =&gt; s,1,Hangup()&nbsp; <br>
&nbsp;&nbsp; exten =&gt; s,n,Playback(something)</span></font></p>

<p class="MsoNormal"><font color="black" face="Times New Roman" size="3"><span style="font-size: 12pt; color: black;">&nbsp;&nbsp; Exten =&gt;
s,n,Set(CDR(cellphone)=${holdcellphone})<br>
&nbsp;&nbsp; exten =&gt; s,n,NoOp(CDR(cellphone)<br>
&nbsp;&nbsp; exten =&gt; s,n,Hangup()&nbsp; <br>
<br>
</span></font><font color="navy" face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; color: navy;"></span></font></p>

</div>

</div>

<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>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; http://www.asterisk.org/hello<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br>&nbsp;&nbsp; http://lists.digium.com/mailman/listinfo/asterisk-users</div></body></html>