VoiceGuide IVR Software Main Page
Jump to content

Unique Call Id

Recommended Posts

We have 4 ports VoiceGuide with Dialogic board. We design an ACD script for the callcenter. We need a unique ID per call.

 

Are there a Unique ID per call that we can get it within a VBScript.

 

For example : $RV_CallID ??

Share this post


Link to post

You can just create one of your own unique 'Call ID' at the beginning of the script, store it in an RV and use that RV through the remainder of the script.

 

In VoiceGuide if reference is made to a call the reference is to the line on which the current calls is on - and the "$RV_LINEID" is used.

Share this post


Link to post

I have tried to call MS SQL Stored Procedure for the Inserted ID. But I couldn't run the SP upon the ODBC connection.

 

INSERT INTO Call (CNumber, CTransfer) VALUES ('$RV_CIDNUMBER', 1)

SELECT @@IDENTITY

Share this post


Link to post

I have created a Unique ID per call. Ath the begining of the script I write this ID in a database. How can I read this ID at the end of the database?

 

Does anyone know how can I create a global constant in the script?

Share this post


Link to post
How can I read this ID at the end of the database?

Do you mean how can you read back that information at the end of the call? You should use a Result VAraibale to just store your "CallID" generated value througout the call. Have a look at the two links below.

Does anyone know how can I create a global constant in the script?

Read these Help file sections:

http://www.voiceguide.com/vghelp/html/Resu...ltVariables.htm

http://www.voiceguide.com/vghelp/html/modEvalExpr.htm

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
×