Customising your Contact Centre with Finesse and CUIC Michael Green, Technical Solutions Manager CCBU

Size: px
Start display at page:

Download "Customising your Contact Centre with Finesse and CUIC Michael Green, Technical Solutions Manager CCBU"

Transcription

1

2 Customising your Contact Centre with Finesse and CUIC Michael Green, Technical Solutions Manager CCBU

3 Agenda Finesse Overview Gadgets Architecture API Adding a Sample Gadget CUIC Overview Architecture Functionality and Customisation Live Data Overview Reporting Gadgets Development Partners

4 Finesse Overview

5 Highlights of Finesse Feature Set Agent Features Supervisor Features Platform Features Call Control / Agent State / Wrap-Up Phonebooks & Click-tocall Multiline via the Phone Outbound and Callbacks & Chat Handling Silent Monitoring Barge / Intercept Change Agent State Real-Time Agent State & Queue Data LiveData Gadgets (PCCE, CCX) Agent State Timer Workflows Localization

6 Cisco Finesse Revolutionising the Agent Desktop Experience Browser-based agent desktop for easy management & upgrades Designed to empower agents via user-centered design product Flexible and Expandable Finesse is a web gadget container All applications that agents need (Cisco or 3rd party) contained within Finesse Administrators define agent and supervisor layouts Developer Friendly Web API

7 Finesse Gadgets Ease of Customisation via Modular Architecture Mini-web pages assembled into a larger webpage A la carte approach to agent desktop Utilises OpenSocial for standards-based integration

8 Enterprise Mashups Enabling Unified Desktops for Agents CUIC Gadget Finesse Gadget CRM Gadget HTTP HTTPS Cisco Finesse Server Web Gadget Services Container Gadget Architecture enables easier integration Gadget Upgrades handled by each server Reduces version compatibility dependencies HTTPS Enterprise CRM CUIC

9 Finesse Workflows Customers require a way of triggering screen pops or passing data to other applications without custom development Finesse delivers this functionality via flexible workflows Finesse supports the ability to do a browser screen pop or call a REST API on Finesse or a 3rd party application

10 Finesse Gadgets

11 OpenSocial Gadgets A Gadget Spec: Is an XML file Defines metadata about an OpenSocial app Is cacheable high performance server not needed Gadgets use existing web standards: XML to define metadata HTML for markup JavaScript for interactivity CSS for presentation Source:

12 OpenSocial Gadget Specification <?xml version="1.0" encoding="utf-8"?> <Module> <ModulePrefs> </ModulePrefs> <UserPrefs> </UserPrefs> <Content type="html"> <! [CDATA[ Your HTML & JavaScript HTML goes Here! ]]> </Content> </Module> Title= MyGadget <Require feature="pubsub-2" /> User Preferences - options to be tailored for individual pages Your web app goes here

13 OpenSocial Gadget Server A Gadget Server: Takes the gadget spec as input Outputs HTML, JavaScript, and CSS as one document Source:

14 Gadget Presentation Flow Finesse Client/Browser Finesse Server 3 rd Party Gadget 2 Gadget Server & Container 1 Gadget XML Specification Gadget Proxy 5 Web Service

15 Finesse Architecture

16 High-Level Finesse Architecture UCCE/PCCE Finesse is an Active/Active Deployment for UCCE Desktop Users physical desktop (Window, Mac O/S, etc..) Finesse Server Standalone server installed with Finesse (Primary or Secondary node) UCCE Aggregated view of UCCE. This is logical A and B sides

17 High-Level Finesse Architecture UCCX Finesse is an Active/Inactive Deployment for UCCX Finesse runs in its own instance of Tomcat Finesse only connects to local UCCX Finesse only Active on Master CCX side

18 High-Level Finesse Architecture UCCE/PCCE Desktop contains the Browser that connects to Finesse Server Finesse Server contains various services that provide functionality UCCE provides both authentication through AWDB and CTI functionality from the Agent PG

19 High-Level Finesse Architecture UCCX Finesse shares XMPP server with UCCX Finesse uses co-resident CCX Engine for CTI Feed UCM is just not for CTI functionality, but also for authentication

20 High-Level Finesse Architecture UCCE/PCCE Finesse Admin and Cisco Finesse run in the Browser Applications from WAR s running in Tomcat (proxied by Shindig and protected by CCE Realm) Of greater importance is the path from REST API WAR to Notification Service to Agent Desktop

21 High-Level Finesse Architecture UCCE/PCCE 3 rd Party Gadget Hosting Gadgets (and associated artifacts) are placed into a special directory Special preinstalled WAR is symbolically linked to this directory Agent Desktop can load Gadgets via the 3rd Party Gadget WAR

22 High-Level Finesse Architecture UCCX 3 rd Party Gadget Hosting No different to UCCE/PCCE shown on previous slide

23 High-Level Finesse Architecture REST API Flow 1. Agent Desktop REST API request via Shindig 2. REST API arrives at REST API WAR 3. HTTP 202 response sent back 4. CTI Request made to Agent PG 5. Response/Events sent back to REST API WAR 6. REST API WAR publishes XMPP messages 7. Messages arrive at Agent Destkop via XMPP over BOSH

24 Finesse API

25 Finesse API Functionality Agent Agent State Answer / End Hold / Retrieve Conference / Transfer / Single-Step Transfer Outbound Option Supervisor UCM Silent Monitoring Barge / Intercept / Change Agent State Queue and Agent State Statistics Administration Reason & Wrap Codes Call Control Layouts Phonebooks Gadget Layouts Workflows & Workflow Actions Team Resource Management

26 Finesse REST API s Representational State Transfer Stateless & cacheable Simple HTTP Native access from web browsers Example: Set the state of Agent 1001 Finesse Client <User> <state>ready</state> </User> Request Response Event Finesse Server <User> <extension>1001</extension> <firstname>john</firstname> <lastname>smith</lastname> <state>ready</state> <role>agent</role> </User> 27

27 Finesse API Business Value Before Cisco Finesse. Cisco Finesse Business Value CCX & CCE API s are completely different If you build an application for CCX, you also need build a supervisor application or go without supervisor functions. Easily portable applications that work on both platforms Cisco Finesse Supervisor works with 3 rd Party applications based on the Finesse API Web application integration is very difficult and requires cumbersome middleware components Custom Applications are all-or-nothing. Build an entire application from scratch or use the out-ofthe-box desktop Requires highly specialized CTI expertise and legacy coding techniques The Finesse API works in thick and thin applications. Mix-and-match gadgets from various suppliers. Cisco Finesse facilitates an incremental value approach. Easy-to-use Web API to support more common web development skills

28 Adding a Sample Gadget

29 Finesse JavaScript Library Quick Start to Customising Finesse Without a JavaScript Library Learn: Gadget API REST API XML XEP/XMPP (BOSH) Library Open AJAX Hub Write Gadget from Scratch Coordination of All of the Above Upload to Finesse Server Change Layout Try, Try, Try Some More jquery finesse.* Finesse JS Library With a JavaScript Library Download a Sample that uses the Library Upload to Finesse Server Change Layout See and start with working example

30 Cisco DevNet Developer Resources for Partners and Customers Finesse Developer s Guide describes all of the Finesse REST API s (including Configuration and Serviceability API s not used on the Desktop) Finesse JavaScript Library contains the library for building gadgets as well as the JS Doc that goes with it. Sample Gadgets that demonstrate various features of Finesse. Getting Started for quickly getting going on Finesse

31 Prerequisite Have a working Finesse Nothing Up My Sleeves: Shown here is an out-of-the-box Agent Desktop layout

32 Step 1 Download Sample Gadget Click to download the library. (Accept the license, you won t regret it). Unzip it and look around in it.

33 Step 2 Enable the 3rdpartygadget Account Using your favorite SSH tool log into Finesse Server as the Administrator and unlock the (not-so-secretbut-special) 3rdpartygadget account.

34 Step 3 Copy Sample Gadget to Finesse Server Files go into /files as anything from /files down is accessible from 3rdpartygadget.

35 Step 4 Add Sample Gadget to Desktop Layout Notice how you load the Gadget right from localhost (i.e. local to the Finesse Server) Don t forget to save the changes!

36 Step 5 Login to Agent Desktop to see the results

37 Cisco Unified Intelligence Centre (CUIC) Overview

38 Cisco Unified Intelligence Centre (CUIC) Platform for report development Dashboard Extend reporting Direct Export Scheduled delivery Click-to-report Link reports using drill down Segmented access by user and role

39 CUIC Architecture

40 CUIC Architecture Typical Message Flow

41 CUIC Live Data Overview

42 Live Data Publication of real-time data so that Intelligence Center can subscribe for UCCX and CCE (PCCE & UCCE) Updated in real-time: Subscription versus Refresh Rates New in Release 11.0 Live Data in CCE 11.0 Common approach in UCCX and CCE (PCCE & UCCE) Agent State Duration Extension Alice Wonderland 2010 Bond Casino Royale 007 Peter pan Neverland 2003

43 Legacy Real Time Reporting Architecture PG/ RTR Real-Time AW DB Polled Data CUIC Server Polled Data CUIC Client Direct DB Access CTI XMPP HTTP Polling REST Polled SG Data Finesse Server Finesse Client Issues: - Multiple paths exist for RT reporting data - The AW database is used as the transport for all RT data. - No push path for RT data - No way to join data from multiple applications

44 Live Data Reporting Architecture (UCCE 11.0) Live Data Web Cisco Unified Intelligence Center Unified Unified Intelligen Intelligen ce Center ce Clients Center Clients Router RTR TIP Live Data Reporting Services Push Delivery PG PG TIP Real-Time JMS Bus Socket.IO Server CUIC CUIC Client Cisco Client Finesse Clients WebSocket JMS RestAPI Source specific data flows

45 Live Data CCE 11.0 Lightweight access to reporting Live Data Reports Agent Agent Skill Group Skill Group Precision Queue Today & To-Interval Statistics added for SG & PQ

46 Live Data for UCCX Supervisor Reports Team State Team Summary Voice CSQ Agent Detail Voice CSQ Summary Agent Outbound Team Summary Chat Agent Statistics Chat CSQ Summary Agent Reports Agent State Log Agent Statistics Agent CSQ statistics Agent Team Summary

47 CUIC Functionality and Customisation

48 CUIC Functionality Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

49 Data Sources Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

50 Pre-Defined Data Sources UCCE Requires configuration, allows stand-by, needed for Stock reports PCCE Automatically configured, provides Stock and Live Data reporting

51 Pre-Defined Data Sources UCCX Automatically configured, provides Stock reports CUIC Automatically configured, always online, provides Stock System reports

52 Report Definitions Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

53 Report Definition Editor

54 Report Definition Editor Data Source Select Query Type Select Data Source Enter Query Text

55 Report Definition Editor - Fields Data Source and Query must be valid so that Fields can be retrieved and created. On the Fields tab, Fields can be viewed, display names changed, and custom fields created.

56 Report Definition Editor - Parameters The user can access the Parameters tab if the Parameters have been already created from the Data Source. On this tab the user can: Change the display order of the parameters in the filter. Edit the selected parameter (customise the display name) Change order of parameters Modify parameters

57 Report Definition for Live Data Select Query Type Set Data Source Validate DS Retrieve topics Key routing field Composite key Final Step

58 Reports Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

59 Reports

60 One Report Multiple Views

61 Live Data Agent Real Time Report Date/Time display based on browser locale Grid View is supported Supports Authenticated Permalinks Grouping and Drill Down for Live Data planned in future releases

62 Dashboards Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

63 Dashboards Consolidate Reports and Other Content Reports Dials Notes Websites Widgets

64 Permalinks Finesse Dashboard Scheduler Reports Views/Permalinks Grid Gauge Chart Reporting Services SQL Query Report Definitions Query Types Anonymous Block Stored Procedure Web Sockets Fields Parameters Value Lists Collections User Synchronization Data Sources UCCE Historical UCCE Real Time UCCX Live Data CVP Social Miner

65 Types of Permalinks HTML XML Excel Direct http type of link to the report view Enables report access through various devices Provides a link to an XML structure The XML can be used to create custom formatting Show the report in Excel Enables to use Excel filter & format functionalities

66 CUIC Reporting Gadgets

67 Types of Reporting Gadgets URL Gadgets Need custom gadget creation Historical Reporting See all data CUIC styling Reporting Gadgets Out-of-Box gadgets Live Data Authorized data view Finesse styling - looks like other Finesse gadgets

68 Creating a URL Gadget Step 1 Step 2 Step 3 Step 4 Copy CUIC HTML Permalink Upload sample gadget code to Finesse server CUIC certificate in Finesse Tomcat trust store In Finesse layout add as URL gadget <iframe src= CUIC HTML Permalink" style="height:100%; width:100%"></iframe>

69 URL Based Gadget Sample Code

70 URL Gadget

71 Reporting Gadget Live Data Reports available as Reporting Gadgets Live Data Gadgets in CCE as well Live Data Gadget Enhancements

72 Creating a Live Data Reporting Gadget Uncomment Update Reporting Gadget Uncomment Gadget in Desktop Layout Update Report View ID

73 Live Data Reporting Gadget

74 Development Partners

75 Gadgets for Cisco Finesse by 2Ring Integration with CRM/Salesforce Agent-Agent and Agent- Supervisor Chat Message ticker, edit CallVariables Attendant Console Audible alerts Post call surveys Auto log-out

76 Compact Agent by 2Ring Agent state and Call control Automation (screen pop-ups incl. Salesforce) via a workflow mechanism Data visualization (complex call variables) Including hyperlinks to caller s contact card in a 3rd party CRM system, IM, , wrap-up forms and more Touch screen friendly & no browser limitations IE9+, Safari, Chrome, Firefox Localized to Dutch, French, German, Russian,..

77 Finesse Gadget Designer by NovelVox The code-free drag and drop Cisco Finesse builder Rapid application development for speed to market and rapid customer support Powerful third party systems integration for efficient and effective enterprise applications Create optimized agent desktops to decrease call time and reduce operational costs Pre-built modules include: Ticketing, Knowledge base, E-Learning and Surveys 78

78 Upstream Works for Finesse

79 Upstream Works for Finesse

80 Agenta Snap by SpinSci Finesse functionality in the system tray Log in/out, agent state control, call control, dial pad and wrap-up codes Minimise use of desktop real estate Integrate with Finesse workflows to pop external applications Works side-by-side with Finesse UI or stand-alone Works with UCCE or UCCX on Windows or Mac Snap TM Snap TM Snap TM

81 b+s Fusion for Finesse by Bucher and Suter CRM integration such as Microsoft Dynamics or Salesforce CallHistory gadget Phone Book gadget with corporate lookup via LDAP RealTime stats of other agents in team with click to dial Microsoft Exchange based Multichannel gadget

82 WEBTEXT Cloud Messaging Bring SMS text and MMS picture messaging channels into Finesse desktop with webtext. Majority of consumers are text ready and text is medium of choice Augment voice contact with text messaging Enable toll-free number to send/receive texts Generate automated text notifications

83 Jabra Headset Finesse Integration Adding real time efficiency value to the daily work processes for the busy contact centre agent. Control unique contact centre work processes like Agent ready * state and Consultant Call * via the in-line Jabra USB control unit. *Final feature set for each client is still work in progress Each contact centre work process function is end-user configurable to any of the 3 programmable buttons on the USB controller via Jabra Direct.

84 Q & A

85 Complete Your Online Session Evaluation Give us your feedback and receive a Cisco Live 2016 T-Shirt! Complete your Overall Event Survey and 5 Session Evaluations. Directly from your mobile device on the Cisco Live Mobile App By visiting the Cisco Live Mobile Site Visit any Cisco Live Internet Station located throughout the venue T-Shirts can be collected in the World of Solutions on Friday 11 March 12:00pm - 2:00pm Learn online with Cisco Live! Visit us online after the conference for full access to session videos and presentations.

86 Thank you

87

Cisco Contact Center Express 10.0: Feature Design, Deployment, and Troubleshooting

Cisco Contact Center Express 10.0: Feature Design, Deployment, and Troubleshooting Cisco Contact Center Express 10.0: Feature Design, Deployment, and Troubleshooting Ron Rodriguez, Technical Solutions Manager CBABU Mike Turnbow, Technical Solutions Manager CBABU Agenda CCX 10.0 Feature

More information

Creating a custom gadget using the Finesse JavaScript Library API

Creating a custom gadget using the Finesse JavaScript Library API Creating a custom gadget using the Finesse JavaScript Library API Denise Kwan, Software Engineer @ DevNet Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Programming with the Finesse API

Programming with the Finesse API Programming with the Finesse API OpenSocial Gadgets Source: http://www.slideshare.net/wuzziwug/opensocial-intro-presentation OpenSocial Gadgets A gadget spec: Is an XML file Defines metadata about an OpenSocial

More information

Cisco Finesse. The Next Generation Agent Experience. Ted Phipps Sr. Manager, CCBU Product Management

Cisco Finesse. The Next Generation Agent Experience. Ted Phipps Sr. Manager, CCBU Product Management Cisco Finesse The Next Generation Agent Experience Ted Phipps Sr. Manager, CCBU Product Management Chris Del Grande Member of Technical Staff, Cisco IT Cisco Spark Ask Question, Get Answers www.ciscospark.com

More information

Finesse APIs: Getting started with the REST APIs and XMPP events

Finesse APIs: Getting started with the REST APIs and XMPP events Finesse APIs: Getting started with the REST APIs and XMPP events Denise Kwan, Software Engineer @ DevNet Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Unified CCX Administration Web Interface

Unified CCX Administration Web Interface The Unified CCX provides a multimedia (voice, data, and web) IP-enabled customer-care application environment, using VoIP technology that allows your Cisco Unified Communications network to share resources

More information

For Live Data reports, you will only have the Html permalink. Html permalink for Live Data reports always require authentication.

For Live Data reports, you will only have the Html permalink. Html permalink for Live Data reports always require authentication. Overview, page 1 Create a Permalink for a Dashboard, page 2 Create Permalink for a, page 2 Create Permalink for Finesse Gadget Equivalent Live Data, page 3 for Supervisor Live Data s, page 4 Overview in

More information

Task Routing. Task Routing

Task Routing. Task Routing , page 1 API Request Flows, page 10 Failover and Failure Recovery, page 18 Setup, page 21 Sample Code for, page 30 Reporting, page 31 describes the system's ability to route requests from different media

More information

Cisco Agent Desktop for Cisco Unified Contact Center 7.X

Cisco Agent Desktop for Cisco Unified Contact Center 7.X Cisco Agent Desktop for Cisco Unified Contact Center 7.X Cisco Agent Desktop Overview Cisco Agent Desktop is a powerful team productivity and management suite of software solutions for the Cisco Unified

More information

Integrating Cisco Enterprise Chat & with UCCE (ICCE)

Integrating Cisco Enterprise Chat &  with UCCE (ICCE) Integrating Cisco Enterprise Chat & Email with UCCE (ICCE) COURSE OVERVIEW: In this 5-day hands-on course students will discover how to deploy Cisco Enterprise Chat and Email into an existing Enterprise

More information

Administering Unified Contact Center Enterprise Part 1 (AUCCE 1)

Administering Unified Contact Center Enterprise Part 1 (AUCCE 1) Administering Unified Contact Center Enterprise Part 1 (AUCCE 1) COURSE OVERVIEW: Administering Cisco Unified Contact Center Enterprise Part 1 (AUCCE Part 1) is a 5-day instructor-led course developed

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

Administering Cisco Unified Contact Center Enterprise Boot Camp

Administering Cisco Unified Contact Center Enterprise Boot Camp Administering Cisco Unified Contact Center Enterprise Boot Camp AUCCE-BC v10.0; 5 days, Instructor-led Course Description The Administering Cisco Unified Contact Center Enterprise Bootcamp is a 5 day,

More information

WebCenter Interaction 10gR3 Overview

WebCenter Interaction 10gR3 Overview WebCenter Interaction 10gR3 Overview Brian C. Harrison Product Management WebCenter Interaction and Related Products Summary of Key Points AquaLogic Interaction portal has been renamed

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

CHAPTER 1 PREFACE... 1

CHAPTER 1 PREFACE... 1 v CHAPTER 1 PREFACE... 1 Why I wrote this book... 1 Who this book is for?... 1 A brief history of UCCX... 2 What is UCCX... 3 Assumptions... 3 Reference Lab... 3 CHAPTER 2 INSTALLATION... 5 Preparation...

More information

Agent Administration

Agent Administration This chapter explains the tasks you must be familiar with when setting up agents for your Unified CCE contact center. Administering Agents, page 1 Configure Not Ready Reason Codes, page 4 Agent Feature

More information

AUCCE2: Administering Cisco Unified Contact Center Enterprise Part 2, v10.x

AUCCE2: Administering Cisco Unified Contact Center Enterprise Part 2, v10.x AUCCE2: Administering Cisco Unified Contact Center Enterprise Part 2, v10.x Description Administering Cisco Unified Contact Center Enterprise Part 2 (AUCCE2) is a 5 day instructor-led course for system

More information

Administering Unified Contact Center Enterprise Part 2 (AUCCE 2)

Administering Unified Contact Center Enterprise Part 2 (AUCCE 2) Administering Unified Contact Center Enterprise Part 2 (AUCCE 2) COURSE OVERVIEW: Administering Cisco Unified Contact Center Enterprise Part 2 (AUCCE Part 2) is an Advanced 5-day instructor-led course

More information

Cisco Packaged Contact Center Enterprise Reporting User Guide Release 11.5(1)

Cisco Packaged Contact Center Enterprise Reporting User Guide Release 11.5(1) Cisco Packaged Contact Center Enterprise Reporting User Guide Release 11.5(1) First Published: August 10, 2016 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

You can configure different reason codes with the same reason code label across various teams.

You can configure different reason codes with the same reason code label across various teams. The Reasons tab on the Cisco Finesse administration console allows you to view, add, edit, and delete Not Ready reason codes, Sign Out reason codes, and Wrap-Up reasons. The reason codes you configure

More information

Port Utilization in Finesse

Port Utilization in Finesse Utilization in Finesse Utilization Table Columns, page 1 Finesse Utilization, page 2 Utilization Table Columns The columns in the port utilization tables in this document describe the following: A value

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface , page 1 When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops.

More information

MITEL MiCONTACT CENTER EDITIONS COMPARED

MITEL MiCONTACT CENTER EDITIONS COMPARED FEATURE MATRIX MITEL MiCONTACT CENTER EDITIONS COMPARED A HIGHLY FLEXIBLE, THREE-TIERED OFFERING Mitel Mi Office, Business, and Enterprise Edition are designed for small, medium, and enterprisesized businesses

More information

Cisco Unified Contact Center Express

Cisco Unified Contact Center Express New Features New Features, on page 1 Updated Features, on page 6 Important s, on page 6 Deprecated Features, on page 6 Removed and Unsupported Features, on page 7 Third-Party Software Impacts, on page

More information

Deploying Unified Contact Center Enterprise (DUCCE)

Deploying Unified Contact Center Enterprise (DUCCE) Deploying Unified Contact Center Enterprise (DUCCE) COURSE OVERVIEW: Deploying Cisco Unified Contact Center Enterprise (DUCCE) is a 5-day instructor-led course developed by Sunset Learning Institute intended

More information

Unified Contact Center Enterprise Desktop

Unified Contact Center Enterprise Desktop The Cisco Unified Contact Center Enterprise (CCE) solution delivers a comprehensive set of desktop applications and services. Desktop Components, page 1 Desktop Solutions, page 6 CAD User Applications,

More information

Cisco Unified Contact Center Express Report User Guide 10.6(1)

Cisco Unified Contact Center Express Report User Guide 10.6(1) First Published: December 15, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883

More information

Cisco Finesse desktop interface

Cisco Finesse desktop interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

Configuration Limits and Feature Availability for Reference Designs

Configuration Limits and Feature Availability for Reference Designs Configuration Limits and Feature Availability for s Configuration Limits, page 1 Feature Availability for s, page 13 Configuration Limits The following tables list key configuration limits for Contact

More information

Manage Finesse IP Phone Agent

Manage Finesse IP Phone Agent Finesse IP Phone Agent, page 1 One Button Sign In, page 2 Finesse IP Phone Service Subscription Options, page 3 Set Up Application User, Web Access, and HTTPS Server Parameters, page 4 Configure Finesse

More information

Features. Cisco Finesse

Features. Cisco Finesse Cisco Finesse, page 1 Cisco Finesse IP Phone Agent, page 6 Inbound Voice, page 6 Unified CCX Outbound Dialer, page 6 Home Agent with Extend and Connect, page 18 Remote Agent Over Broadband, page 22 Unified

More information

Manage and Generate Reports

Manage and Generate Reports Report Manager, page 1 Generate Reports, page 3 Trust Self-Signed Certificate for Live Data Reports, page 4 Report Viewer, page 4 Save an Existing Stock Report, page 7 Import Reports, page 7 Export Reports,

More information

InGenius Connector Enterprise 5.0. November Version

InGenius Connector Enterprise 5.0. November Version InGenius Connector Enterprise 5.0 November 2017 - Version 5.0.22472 i Windows and Microsoft are trademarks of Microsoft Corporation. Salesforce.com is a trademark of Salesforce.com. InGenius is a trademark

More information

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here>

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here> OpenScape Contact Center Multimedia First Contact Resolution in a Multi-Channel World Agenda OpenScape Contact Center Agile vs. Enterprise What is OpenScape Contact Center Multimedia

More information

Provision Unified CM for Unified CCX

Provision Unified CM for Unified CCX When you access Unified CCX Administration for the first time in a cluster, the system automatically initiates the cluster setup procedure once for each cluster to perform the following tasks: Identify

More information

Cisco UCCX Configuration Guide. Comstice Mobile Agent App for Cisco UCCX Configuration Steps. made with

Cisco UCCX Configuration Guide. Comstice Mobile Agent App for Cisco UCCX Configuration Steps. made with Cisco UCCX Configuration Guide Comstice Mobile Agent App for Cisco UCCX Configuration Steps made with Mobile Agent App Benefits Contact Center Agent without Desktop PC Comstice Mobile Agent App is a Cisco

More information

Exam Name: Unified Communications Contact Center

Exam Name: Unified Communications Contact Center Vendor: Cisco Exam Code: 642-165 Exam Name: Unified Communications Contact Center Express Implementation (UCCX) Version: Demo QUESTION 1 What happens if all CTI ports for the configured CTI Port Group

More information

Number: Passing Score: 800 Time Limit: 120 min File Version:

Number: Passing Score: 800 Time Limit: 120 min File Version: 600-460 Number: 600-460 Passing Score: 800 Time Limit: 120 min File Version: 4.0 http://www.gratisexam.com/ 600-460 Implementing and Supporting Cisco Unified Contact Center Enterprise Version 4.0 Exam

More information

b+s Connects for Salesforce 4.1 CCE/CCX Edition

b+s Connects for Salesforce 4.1 CCE/CCX Edition b+s Connects for Salesforce 4.1 CCE/CCX Edition Release Notes Document Revision: 2 Document Classification: Bucher + Suter AG Arastrasse 6 CH-3048 Worblaufen www.bucher-suter.ch Phone +41 31 917 52 00

More information

Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 10.0(1)

Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 10.0(1) Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 10.0(1) First Published: December 12, 2013 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Administering Cisco Unified Contact Center Enterprise for CVP Environments (ACCE-CVP)

Administering Cisco Unified Contact Center Enterprise for CVP Environments (ACCE-CVP) Administering Cisco Unified Contact Center Enterprise for CVP Environments (ACCE-CVP) Course Overview: Administering Cisco Unified Contact Center Enterprise for CVP Environments (ACCE-CVP) is an instructorled

More information

Manage Team Resources

Manage Team Resources You can assign phone books, reason codes, wrap-up reasons, custom desktop layouts, and workflows to teams on the Team Resources tab of the administration console. Team Resources, page 1 Assign Phone Books

More information

InGenius Connector Enterprise 6.0. March Version 6.0.3

InGenius Connector Enterprise 6.0. March Version 6.0.3 InGenius Connector Enterprise 6.0 March 2018 - Version 6.0.3 1 Windows and Microsoft are trademarks of Microsoft Corporation. Salesforce.com is a trademark of Salesforce.com. InGenius is a trademark of

More information

Port Utilization in SocialMiner

Port Utilization in SocialMiner Utilization in Utilization Table Columns, page 1 Utilization, page 2 Utilization Table Columns The columns in the port utilization tables in this document describe the following: A value representing the

More information

Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 11.6(1)

Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 11.6(1) Cisco Packaged Contact Center Enterprise Reporting User Guide, Release 11.6(1) First Published: 2017-08-24 Last Modified: 2018-05-28 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San

More information

GTB Enterprise Contact Center Powered by Telax Included In Package Not Included in Package

GTB Enterprise Contact Center Powered by Telax Included In Package Not Included in Package GTB Enterprise Contact Center Powered by Telax Max Calls In Queue Unlimited Unlimited Data Center Features 24x7x365 Data Center Monitoring Yes Yes Geographical Survivability Yes Yes Automatic Software

More information

Deploying VMware Workspace ONE Intelligent Hub. October 2018 VMware Workspace ONE

Deploying VMware Workspace ONE Intelligent Hub. October 2018 VMware Workspace ONE Deploying VMware Workspace ONE Intelligent Hub October 2018 VMware Workspace ONE You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

Mobile Agent. Capabilities. Cisco Unified Mobile Agent Description. Unified Mobile Agent Provides Agent Sign-In Flexibility

Mobile Agent. Capabilities. Cisco Unified Mobile Agent Description. Unified Mobile Agent Provides Agent Sign-In Flexibility Capabilities, page 1 Initial setup, page 7 Administration and usage, page 17 Capabilities Cisco Unified Description Unified supports call center agents using phones that Packaged CCE does not directly

More information

Cisco Interaction Manager (Unified WIM and Unified EIM)

Cisco Interaction Manager (Unified WIM and Unified EIM) Cisco Interaction Manager (Unified WIM and Unified EIM) Capabilities, page 1 Installation, page 3 Configuration, page 6 Capabilities About Cisco Interaction Manager Cisco Interaction Manager (CIM) is a

More information

Context Service Context Service Context Service

Context Service Context Service Context Service , on page 1 Design Considerations, on page 3 Omnichannel Customer Journey, on page 3 Task Flow to Enable, on page 4 Setup, on page 5 Component Configuration and Registration, on page 8 Solution Serviceability,

More information

Oracle Application Express 5 New Features

Oracle Application Express 5 New Features Oracle Application Express 5 New Features 20th HrOUG conference October 16, 2015 Vladislav Uvarov Software Development Manager Database Server Technologies Division Copyright 2015, Oracle and/or its affiliates.

More information

Avaya Desktop Collector Snap-in R GA Release Notes

Avaya Desktop Collector Snap-in R GA Release Notes Avaya Desktop Collector Snap-in R3.3.0.0.0 GA Release Notes 07 July 2017 1 Contents 1. Document changes... 3 2. Introduction... 4 3. Feature Descriptions... 6 4. Desktop Agent Widget in Oceana Workspaces...

More information

CUIC Historical Reporting - End User Guide

CUIC Historical Reporting - End User Guide Document Number: 00250 Page 1 of 28 Authors: Jeff Lee Nadine Terrell Document Title: CUIC Historical Reporting User Guide Current Version: 1.0 Date: 03/10/15 CUIC Historical Reporting - End User Guide

More information

Create Virtual Machines for Components

Create Virtual Machines for Components About Creatings VMs, on page Create VM for Unified CCE PG, on page Create VM for Unified CCE Rogger, on page Create VM for Unified CCE AW-HDS-DDS, on page Create VMs for the Cisco Unified Customer Voice

More information

Cisco Finesse Release 10.5(1) ES2

Cisco Finesse Release 10.5(1) ES2 Cisco Finesse Release 10.5(1) ES2 Updated: Dec 8, 2014 Table of Contents Patch Version... 2 Valid Upgrade Paths... 2 NTLMv2 Support for Finesse Authentication to AWDB... 2 Installing Finesse Release 10.5(1)

More information

InGenius Connector Enterprise 6.0. December Version

InGenius Connector Enterprise 6.0. December Version InGenius Connector Enterprise 6.0 December 2017 - Version 6.0.23397 i Windows and Microsoft are trademarks of Microsoft Corporation. Salesforce.com is a trademark of Salesforce.com. InGenius is a trademark

More information

Cisco Unified Intelligence Center for Advanced Users v1.1 (CUICAU)

Cisco Unified Intelligence Center for Advanced Users v1.1 (CUICAU) Course Overview Cisco Unified Intelligence Center 8.0.4 is a comprehensive, end-to-end reporting solution, designed to simplify the task of creating and modifying reports. It also can manage disparate

More information

Enterprise Chat and Deployment and Maintenance Guide, Release 11.6(1)

Enterprise Chat and  Deployment and Maintenance Guide, Release 11.6(1) Enterprise Chat and Email Deployment and Maintenance Guide, Release 11.6(1) For Unified Contact Center Enterprise First Published: August 2017 Last Modified: October 2017 Americas Headquarters Cisco Systems,

More information

Subsystems Menu. RmCm to set up your Unified CCX resources.

Subsystems Menu. RmCm to set up your Unified CCX resources. The Subsystems menu of the Unified CCX Administration web interface provides access to the subsystems that are licensed for your Unified CCX system. The Unified CCX system uses subsystems for communicating

More information

Manage Agents. Agents

Manage Agents. Agents Agents, page 1 Add and Maintain Agents, page 2 Search for Agents, page 5 Manage Agent Environment, page 6 Manage Agent Expertise, page 11 Agent Reskilling, page 11 Edit Skill Group Membership for Multiple

More information

IBM Forms Experience Builder

IBM Forms Experience Builder IBM Forms Experience Builder Bernd Beilke Digital Experience Solutions Architect Introduction Web forms are part of an engaging experience Natural part of the page no plug-ins required Highly dynamic and

More information

Cisco Unified Contact Center Express

Cisco Unified Contact Center Express New Features, page 1 Updated Features, page 7 Deprecated Features, page 8 Important Notes, page 8 Removed and Unsupported Features, page 9 Third Party Software Impacts, page 14 New Features Unified CCX

More information

Cisco Finesse Release 10.5(1) ES3

Cisco Finesse Release 10.5(1) ES3 Cisco Finesse Release 10.5(1) ES3 Table of Contents Patch Version... 3 Valid Upgrade Paths... 3 Installing Finesse Release 10.5(1) ES3... 3 Procedure... 3 Rollback... 4 Resolved Caveats in this Engineering

More information

Five9 Adapter for Velocify

Five9 Adapter for Velocify Cloud Contact Center Software Five9 Adapter for Velocify Agent s Guide November 2017 The Five9 Adapter for Velocify enables you to integrate the Five9 Cloud Contact Center with the Velocify desktop. This

More information

Certificates for Live Data Standalone

Certificates for Live Data Standalone Certificates and Secure Communications, on page 1 Export Self-Signed Live Data Certificates, on page 2 Import Self-Signed Live Data Certificates, on page 3 Produce Certificate Internally, on page 4 Deploy

More information

Cisco Finesse Desktop User Guide for Unified Contact Center Enterprise Release 10.5(1)

Cisco Finesse Desktop User Guide for Unified Contact Center Enterprise Release 10.5(1) Cisco Finesse Desktop User Guide for Unified Contact Center Enterprise Release 10.5(1) First Published: June 04, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Configure Cisco Finesse

Configure Cisco Finesse Cisco Finesse Configuration, page 1 Configure Contact Center Agents and Routing for Live Data Reports, page 1 Disable Agent Queue Statistics Gadget in Default Desktop Layout, page 2 Live Data Reports,

More information

TELUS Cloud Contact Centre RELEASE NOTES Version

TELUS Cloud Contact Centre RELEASE NOTES Version TELUS Cloud Contact Centre RELEASE NOTES Version 2016.01 Cloud Service Applications Team (CSAT) April 2016 REVISION HISTORY Table 1: Document Revision History Revision Revision Date Comments Author 1.0

More information

Release Notes for Cisco Finesse Release 9.0(1)

Release Notes for Cisco Finesse Release 9.0(1) These release notes provide the following information. You might need to notify your users about some of the information provided in this document. Introduction, page 1 Hardware and Software Specifications

More information

Architectural Overview

Architectural Overview Unified CCE Software Overview, page 1 Outbound Option Software Components, page 2 Outbound Option Scripting, page 17 Fault Recovery, page 19 Campaign Manager Congestion Control, page 19 Unified CCE Software

More information

The Now Platform Reference Guide

The Now Platform Reference Guide The Now Platform Reference Guide A tour of key features and functionality START Introducing the Now Platform Digitize your business with intelligent apps The Now Platform is an application Platform-as-a-Service

More information

Reports. Overview. Stock Reports

Reports. Overview. Stock Reports Overview, on page 1 Report Actions, on page 2 Add Template Help, on page 4 Report Types, on page 5 Manage, on page 8 Run Report, on page 19 Import, on page 22 Export, Report Definitions, and Folders, on

More information

Manage Call Variables Layouts

Manage Call Variables Layouts Call Variables Layouts, page 1 Call Variables, page 2 Configure Call Variables Layouts, page 2 Add ECC Variables to Call Variables Layout, page 4 Assign Call Variables Layouts, page 4 Manipulate Call Variables

More information

Manage Workflows. Workflows and Workflow Actions

Manage Workflows. Workflows and Workflow Actions On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page

More information

Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Introduction to the Oracle Mobile Development Platform Dana Singleterry Product Management Oracle Development Tools Global Installed Base: PCs vs Mobile Devices 3 Mobile Enterprise Challenges In Pursuit

More information

Cisco Finesse. Introduction

Cisco Finesse. Introduction Introduction, page 1 Administration Console, page 2 Agent and Supervisor Desktop, page 54 Call Manager-Based Call Recording Using Cisco MediaSense, page 54 Introduction is a next-generation agent and supervisor

More information

Contact Center Assurance Dashboards

Contact Center Assurance Dashboards The Prime Collaboration Contact Center Assurance performance dashboards help you to monitor your network by providing near real-time information about the Contact Center components such as CUIC, Finesse,

More information

Spark SDK Video - Overview and Coding Demo

Spark SDK Video - Overview and Coding Demo DEVNET-2026 Spark SDK Video - Overview and Coding Demo Olivier Proffit - Sr. Product Manager David Staudt DevNet Developer Evangelist Cisco Spark How Questions? Use Cisco Spark to communicate with the

More information

Upgrade System Requirements

Upgrade System Requirements Upgrade System s Upgrade to Release 11.6(1), page 1 Supported Upgrade Paths, page 2 NTP Configuration s, page 3 Preupgrade System s, page 3 Upgrade to Release 11.6(1) You can upgrade to Cisco Unified CCE,

More information

Data Sources. Data Sources Page

Data Sources. Data Sources Page A data source represents a database. Each reporting server requires one data source for each database from which reports are populated. Drawer : Click the drawer in the left panel to open the page. (Only

More information

Reference. Base Configuration Updates

Reference. Base Configuration Updates Base Configuration Updates, page 1 Install Language Pack, page 7 Simple Network Management Protocol, page 7 Configure Cisco Unified Communications Manager Service Configuration Settings, page 8 Certificates

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Release Notes Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the contents hereof are subject

More information

Data Sources. Data Sources page

Data Sources. Data Sources page Data Sources A data source represents a database. Each reporting server requires one data source for each database from which reports are populated. Unified Intelligence Center supports MS SQL Server and

More information

Deploying Cisco Unified Contact Center Express (UCCXD)

Deploying Cisco Unified Contact Center Express (UCCXD) Deploying Cisco Unified Contact Center Express (UCCXD) COURSE OVERVIEW: This course, Deploying Cisco Unified Contact Center Express (UCCXD) provides the student with hands-on experience and knowledge of

More information

Release Notes for Unified Contact Center Express Solution, Release 11.5(1)SU1

Release Notes for Unified Contact Center Express Solution, Release 11.5(1)SU1 Release Notes for Unified Contact Center Express Solution, Release 11.5(1)SU1 First Published: 2017-03-31 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

User Guide. 3CX CRM Plug-in for Zendesk. Version

User Guide. 3CX CRM Plug-in for Zendesk. Version User Guide 3CX CRM Plug-in for Zendesk Version 15.5.89 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

Clearspan Hosted Thin Call Center R Release Notes APRIL 2015 RELEASE NOTES

Clearspan Hosted Thin Call Center R Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Call Center R20.0.32 Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Call Center R20.0.32 Release Notes The information conveyed in this document is confidential and

More information

Unified Contact Center Express Release Notes 10.6(1)

Unified Contact Center Express Release Notes 10.6(1) Unified Contact Center Express Release Notes 10.6(1) Introduction, page 1 New and Updated Features, page 2 Limitations and Restrictions, page 3 Caveats, page 8 Documentation Feedback, page 9 Documentation

More information

FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE

FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE Table of Contents Introduction... 2 Architecture Overview... 2 Supported Browser Versions and Technologies... 3 Firewalls and Login Sessions...

More information

Cisco Jabber IM for iphone

Cisco Jabber IM for iphone Data Sheet Cisco Jabber IM for iphone Cisco Collaboration Solutions improve team and customer experiences to help organizations encourage innovation and improve decision making while building trust and

More information

Five9 Plus Adapter for Salesforce Lightning Experience

Five9 Plus Adapter for Salesforce Lightning Experience Cloud Contact Center Software Five9 Plus Adapter for Salesforce Lightning Experience Agent s Guide June 2018 The Five9 Plus Adapter for Salesforce Lightning Experience integrates the Five9 Cloud Contact

More information

Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1)

Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1) Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1) First Published: December 15, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Contact Center Assurance Dashboards

Contact Center Assurance Dashboards The Cisco Prime Collaboration Contact Center Assurance performance dashboards help you to monitor your network by providing near real-time information about the Contact Center components such as Cisco

More information

Certificates for Live Data

Certificates for Live Data You must set up security certificates for Finesse and Cisco Unified Intelligence Center with HTTPS. You can: Use the self-signed certificates provided with Finesse and Cisco Unified Intelligence Center.

More information

votacall unity supervisor

votacall unity supervisor votacall unity supervisor quick user guide contents 1 Ini al Setup... 3 1.1 Call Center Login Details... 4 2 Unity Supervisor Interface Overview...5 2.1 ACD State Bu ons... 5 2.2 Call Control... 6 2.3

More information

Manage Agents. Agents

Manage Agents. Agents Agents, page 1 Add and Maintain Agents, page 2 Add an Agent by Copying an Existing Agent Record, page 5 Search for Agents, page 6 Manage Agent Environment, page 6 Manage Agent Expertise, page 12 Agent

More information

Introduction to Worklight Integration IBM Corporation

Introduction to Worklight Integration IBM Corporation Introduction to Worklight Integration Agenda IBM Mobile Foundation Introduction to Worklight How to Integrate Worklight Adapters WebAPI HTTP & SOAP Database (SQL) WebSphere Message Broker Cast Iron 2 IBM

More information

Cisco Unified Intelligence Center User Guide, Release 10.5(1)

Cisco Unified Intelligence Center User Guide, Release 10.5(1) First Published: 2014-06-18 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE

More information

Five9 Plus Adapter for Agent Desktop Toolkit

Five9 Plus Adapter for Agent Desktop Toolkit Cloud Contact Center Software Five9 Plus Adapter for Agent Desktop Toolkit Administrator s Guide September 2017 The Five9 Plus Adapter for Agent Desktop Toolkit integrates the Five9 Cloud Contact Center

More information