VoiceGuide IVR Software Main Page
Jump to content

Use newly added Column in Call Que in Script

Recommended Posts

Dear Voice Guide,

I have added a new column to callque table i want to use same column in Voice Guide Script.

 

Share this post


Link to post

Sounds like you want to attach some data to each call, and have the script that runs upon call answer to have access to that data.

Simplest way to attach extra individual data to each call is by placing that data in the "RV" field in the Outdial table in that calls entry.

from https://www.voiceguide.com/vghelp/source/html/outbound-ivr-dialer-introduction.htm :
 

Quote

RV

List of custom Result Variables which can be used by the VoiceGuide script above. The format of this field is [RvName]{RvValue}. Multiple Result variables can be specified by listing as many name-value pairs as needed. eg: [rv1]{val1}[rv2]{val2}[rv3]{val3}

 

Note that the data supplied through those RVs can be identifiers that can be used to extract further data from other databases etc...

Share this post


Link to post

But i am inserting data in Call Que table from .Net application.I can add "strRV"  when there is column available.

Share this post


Link to post

I got it there is column in Call Que table as "RV" if we place data in this column then we can access.Thanks.

Share this post


Link to post

The "RV" column is in the "callque" table.

(it's "RV", not "strRV" as preciously advised).

insert this in the RV column:

[abcd]{1234}

and then in the script you will be able to use:

$RV[abcd]

and $RV[abcd] will be replaced by a value of 1234.

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
×