invoso.com Report post Posted 06/29/2018 08:32 AM 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
SupportTeam Report post Posted 06/29/2018 11:17 AM 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