Hello list,<div>I&#39;ve a small problem. I have to set caller ID as &quot;anonymous&quot; before I send calls to one of my international termination provider. also we have 1500 SIP devices and those devices belongs to 10 departments in my office(each department has 150 ATAs). each department has dedicated DID number for inbound calls. lets say &quot;Account&quot; department own DID 45610299. When the Account staff make calls to PSTN network I want to set Caller ID as 45610299 for those calls. I just want to know how to set/alter caller ID before send to SIP gateway (I&#39;ve done other parts).</div>
<div><br></div><div>I did this for &quot;Anonymous&quot;;</div><div><br></div><div>--------</div><div><div><div><div>if (method==&quot;INVITE&quot;) {</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if ($avp(s:hidecli)) {</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>append_hf(&quot;&lt;anonymous&gt;;party=calling;id-type=subscriber;privacy=off;screen=no\r\n&quot;);</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>avp_delete(&quot;$avp(s:hidecli)&quot;);</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>};</div><div>};</div></div></div><div>--------</div></div><div>but this doesn&#39;t work.</div><div><br></div><div>Thank you!</div><div><br></div><div>Sujeev</div>