Guest mohammedzoheb Report post Posted 02/21/2019 08:19 AM 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
SupportTeam Report post Posted 02/21/2019 08:53 AM 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
Guest mohammedzoheb Report post Posted 02/21/2019 09:53 AM 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
Guest mohammedzoheb Report post Posted 02/21/2019 10:08 AM 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
SupportTeam Report post Posted 02/21/2019 10:08 AM 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