Guest u4910 Report post Posted 06/05/2013 08:37 PM I want to start using ACD queues. I generally know how the agent works and how to use the ini file and connect to the server. What do it do in the vgs script to route to an agent? Share this post Link to post
SupportTeam Report post Posted 06/05/2013 09:57 PM From http://www.voiceguide.com/release/vgAgent.pdf : To send a call to ACD queue a “Transfer Call” type module is used. The ACD queue to send the call to isspecified using this expression: acd:queue_name eg: acd:sales In above example the call will be placed in queue named “sales”, and will be connected to agent that a can accept a call from “sales” queue as soon as appropriate agent is available. Share this post Link to post
Guest u4910 Report post Posted 06/11/2013 01:51 AM Is there an example (code) of how to show the nicely formatted data with some results from a database too? The .pdf shows the result of an example, but no sample code. I would probably want to do the html stream from VG as the method. Is there a sample .vgs script available that uses ACD's? or some snipit of code that will help me get started with sending formatted data to the agent? Thanks. Share this post Link to post
SupportTeam Report post Posted 06/11/2013 04:23 AM The page that is displayed to the agent is a html page. Any $RVs present within the html template page are replaced by the values of $RVs for the call routed to that agent. ie.any $RV created during the call (data entry by caller, data retrieved from database or web service etc) can be shown as part of the page displayed to agent. The template is in vgAgent's \popups\ directory and named: template_Incoming.htm You can modify this template_Incoming.htm however you like. When a new call arrives all the $RVs associated with that call are sent to agent, and then template_Incoming.htm has any $RVs in it replaced with values of $RVs sent to agent and is then displayed. The displayed html is also saved in vgAgent's \popups\ directory and named: popup_Now.htm Share this post Link to post
SupportTeam Report post Posted 06/11/2013 04:42 AM Alternatively, you can specify in VoiceGuide script which html is to be displayed in agent popup. It can be a http(s) link, path to html file on disk (use $RV[AcdAgentPopup_DisplayLink] for this), or the html can be explicitly passed to popup using $RV[AcdAgentPopup_DisplayHtml] More information on this is in the vgAgent documentation. Share this post Link to post
Guest u4910 Report post Posted 06/11/2013 02:45 PM I'm not getting my result from the db query (db1) to show in the agent. I can see it in the log file, but not on the agent. Please advise. 0611_1039_vgEngine.txt Share this post Link to post
Guest u4910 Report post Posted 06/11/2013 02:46 PM Here is the agent template and popup_now files. template_Incoming.htm popup_Now.htm Share this post Link to post
Guest u4910 Report post Posted 06/11/2013 03:30 PM It almost seems like the dynamic $RV's are not making it through to the agent. The $RV[..] variables don't seem to be showing values. Share this post Link to post
SupportTeam Report post Posted 06/13/2013 12:50 PM Please see this post: http://voiceguide.com/forums/index.php?showtopic=10271&do=findComment&comment=37662 Share this post Link to post