VoiceGuide IVR Software Main Page
Jump to content

dialout data to cdrout

Recommended Posts

Hi,

in dialout action we need to detect call effect from disposition column from crdout.

how to input data for example callque "GUID"  to cdrout "user" cell?

 

 

Share this post


Link to post

The GUID is accessible using this $RV :

$RV[OutDial_GUID]

The CDR 'user' field can be set by assigning a value to $RV:

$RV[CDR_user]

so what you require can be done by assigning a value of $RV[OutDial_GUID] to $RV[CDR_User], which can be don using an Evaluate Expression module, or in a Run VBScript module etc.

eg:

In an "Evaluate Expression" type module set this as expression to evaluate:

"$RV[OutDial_GUID]"

(note the quotes)

And specify this in the "Assign to Result Variable" text box:

CDR_User

 

 

 

 

 

 

 

 

 

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
×