cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
565
Views
5
Helpful
2
Replies

CM8.5 find all DNs that are CFA forwarded and to what number

Roman Rodichev
Level 7
Level 7

Hello,

is there a way in CM8.5 with BAT or with SQL to find all DNs that are CFA forwarded and to what number, regardless if DN is unassigned, assigned to a phone or assigned to a route-point.

Thanks!

1 Accepted Solution

Accepted Solutions

William Bell
VIP Alumni
VIP Alumni

Roman,

SQL query:

admin:run sql select n.dnorpattern,cfd.cfadestination,cfd.cfavoicemailenabled from numplan as n inner join callforwarddynamic as cfd on cfd.fknumplan=n.pkid where ((cfd.cfadestination != '') or (cfd.cfavoicemailenabled='t'))

HTH.

Regards,

Bill

HTH -Bill (b) http://ucguerrilla.com (t) @ucguerrilla

Please remember to rate helpful responses and identify

View solution in original post

2 Replies 2

William Bell
VIP Alumni
VIP Alumni

Roman,

SQL query:

admin:run sql select n.dnorpattern,cfd.cfadestination,cfd.cfavoicemailenabled from numplan as n inner join callforwarddynamic as cfd on cfd.fknumplan=n.pkid where ((cfd.cfadestination != '') or (cfd.cfavoicemailenabled='t'))

HTH.

Regards,

Bill

HTH -Bill (b) http://ucguerrilla.com (t) @ucguerrilla

Please remember to rate helpful responses and identify

Thanks Bill