VoiceGuide IVR Software Main Page
Jump to content

$rv_ringcount

Recommended Posts

Hi all

 

I use a dialogic d/4 board to answer the phone I have connected 4 extensions from my BPX which are all ringing at the same time so I wrote this code

 

(($RV_LINEID = 7) and ($RV_RINGCOUNT > 2) )) or

(($RV_LINEID = 8) and ($RV_RINGCOUNT > 4) )) or

(($RV_LINEID = 9) and ($RV_RINGCOUNT > 6) )) or

(($RV_LINEID = 10) and ($RV_RINGCOUNT > 8) ))

 

Is there a better way of doing this?

 

TIA_YONA

Share this post


Link to post

This is pretty much the only approach to ensure that only one of the lines picks up the call in a situation where all the extensions ring at once.

Share this post


Link to post

Thanks.

Is there someting like this

(($RV_LINEID = 7) and ($RV_RINGCOUNT > 2) )) or

 

(($RV_LINEID = 8) and ($RV_RINGCOUNT > 2)

AND $RV_LINEID_7_IS_IN_USE )) or

 

(($RV_LINEID = 9) and ($RV_RINGCOUNT > 2)

AND $RV_LINEID_7_8_IS_IN_USE )) or

 

(($RV_LINEID = 10) and ($RV_RINGCOUNT > 2)

AND $RV_LINEID_7_8_9_IS_IN_USE ))))

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×