Genesys CTI User Forum
Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: Adam_W on June 14, 2012, 08:54:45 AM
-
Does anyone know if it's possible to set up global favourites in IWS that are available to all agents?
Our agents regularly transfer calls to external companies and what I want is for the agents to be able to search for the company by name in IWS and then dial them.
This is obviously easy for internal resources but I'm not sure of the best way for external numbers.
-
No-one ever tried to do something similar before (even in GAD)?
The only way I've thought of so far is configuring route points for each external number (with an alias so the agent can search by name) then having a strategy that does a simple TRoute to the external number.
Not sure if there is a more standard/official way of doing it though?
-
In GAD it was working using UCS. Not sure if it can be done the same way with IWS.
-
Just got it working by creating a custom xml file and pointing the option "teamcommunicator.corporate-favorites-file" to the file.
Example file for anyone who wants to use it. Customise as required:
[quote]
<?xml version="1.0" encoding="utf-8"?>
<options>
<interaction-workspace>
<teamcommunicator.corporate-favorites>fav1;fav2</teamcommunicator.corporate-favorites>
</interaction-workspace>
<fav1>
<category>CorporateContacts</category>
<type>CustomContact</type>
<firstname>Bob</firstname>
<lastname>Smith</lastname>
<phonenumber>01234567890</phonenumber>
<emailaddress>bob.smith@test.com</emailaddress>
</fav1>
<fav2>
<category>CorporateContacts</category>
<type>CustomContact</type>
<firstname>Jim</firstname>
<lastname>Morrison</lastname>
<phonenumber>01987654321</phonenumber>
<emailaddress>jim.morrison@fake.co.uk</emailaddress>
</fav2>
</options>
[/quote]
You can deploy this as a custom file via ClickOnce or store the file on a network share so everyone can access.