Hai,

I am using the below script for call placements(Local as well as LCR), LCR is working fine, Local call placement is not working, Is there I am missing something??
Please guid me.

route[CHECK]
{
if (!is_subscriber("$ru", "subscriber", "3")) {
    # callee is not a local subscriber
        route(LCR);
        exit();
    }
else
{
        route(LOCATION);
}
}

Thanks