SlideShare una empresa de Scribd logo
1 de 30
Descargar para leer sin conexión
Salesforce.com API Series:
Service Cloud Console Deep Dive
August 28, 2013
#forcewebinar
Speakers
Chad Kelly
Salesforce Services
@chadforce
Clement Tussiot
Salesforce Services
@ctussiot
#forcewebinar
Safe Harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995:
This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of
the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking
statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service
availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future
operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use
of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our
service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth,
interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with
possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and
motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-
salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial
results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended July 31, 2012. This documents and
others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.
Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be
delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available.
Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
#forcewebinar
Follow Developer Force for the Latest News
@forcedotcom / #forcewebinar
Developer Force – Force.com Community
+Developer Force – Force.com Community
Developer Force
Developer Force Group
#forcewebinar
Have Questions?
§  We have an expert support team at the ready to answer your questions
during the webinar.
§  Ask your questions via the GoToWebinar Questions Pane.
§  The speakers will chose top questions to answer live at the end of the
webinar.
§  Please post your questions as we go along!
§  Only post your question once; we’ll get to it as we go down the list.
#forcewebinar
Agenda
§  Service Cloud Console Framework
§  Integration Capabilities and Architecture
§  UI integration Patterns
–  Service Cloud Console Integration Toolkit
–  Use Cases, Demonstration and Code Examples
§  Q & A
#forcewebinar
World’s #1 Customer Service Application
Social
Profile
Agent
Console CommunitiesKnowledge
Base
EmailPhone Web Self-
ServiceChat Analytics Partners
Social
Channels
#forcewebinar
Web Technologies
Canvas
Aura
#forcewebinar
Service Cloud Console Architecture
App Header & Global Search
Highlight Panel / Workspace Component
Header Component
Detail Record
Right
Side
bar
Left
Side
bar
Detail Footer Component
Pinned
List
Footer / Bottom Bar
Highlight Panel / Workspace Component
Right
Side
bar
Left
Side
bar
#forcewebinar
Service Cloud Console Architecture
App Header & Global Search
Highlight Panel / Workspace Component
Header Component
Detail Record
Right
Side
bar
Left
Side
bar
Detail Footer Component
Pinned
List
Footer / Bottom Bar
Highlight Panel / Workspace Component
Right
Side
bar
Left
Side
bar
#forcewebinar
Configuring Custom Console Components
UI Integration Patterns
Customer Use Cases
#forcewebinar
Service Cloud Console
Component Framework – Primary Tabs, Subtabs, Navigation Tab, Footer, Sidebar Components
Integration Capabilities
Service Cloud Console Integration Toolkit
Standard
Objects
Custom
Objects
Visualforce
3rd Party web
pages/ web
tabs
Open CTI Canvas Apps
KeyboardShortcuts,PushNotifications
Reports/
Dashboar
ds
Chatter
Live Agent
Standard
Compone
nts
#forcewebinar
Out of the Box UI Integration Patterns
Approach Pros Cons
Push Notifications • Managed via Configuration
• Can subscribe by object/field
• 10K events in a given 24 hours
governor
§  Demo Out of the Box Console
#forcewebinar
UI Integration Patterns
Approach Pros Cons
OOB Refresh of Custom Console
Components
• No coding of refresh required
• No add’l coding required to
reinstantiate page
• Fast performance
• Refresh only triggered on save
of detail record
• Complete re-execution of page
controller constructor logic and
page render
§  Demonstration
#forcewebinar
UI Integration Patterns
Approach Pros Cons
Salesforce database persistence • Easy to Code
• Data persists forever
• Record Storage Required
• Presentation on another screen
requires DML query
#forcewebinar
UI Integration Patterns
Approach Pros Cons
Canvas App Events
Canvas Events provide a
javascript based way to
send and receive events
using a pub/sub pattern
• Lightweight eventing model
based entirely in JavaScript
using JSON
• Events are localized to the
browser
• Allows your apps to talk to
other apps in an easy way
• Authentication approach
available via secure
Connected Apps framework
• Events are only sent in
browser, so they do not
work with apps off the page
you are viewing
• Parsing payload (e.g.
JSON) is done by the app,
not by canvas
• Events are async, so you
could not guarantee
execution order (though you
could chain event by saying
the result from event 1 fires
event 2, etc...)
#forcewebinar
Service Cloud Console Integration Toolkit
§  What is the SCCIT?
§  Why is it cool?
§  What does it do?
Primary Tabs and
Subtabs
Computer-Telephony
Integration
Communication b/t
components
openPrimaryTab() sendCTIEvent() fireEvent()
addEventListener()
#forcewebinar
Integration Toolkit Customer Use Cases
Challenge The solution must render a custom screen pop with several
sub tabs
Solution Use the SCCIT openPrimaryTab() method to launch one
primary tab and use the openSubTab() method to launch one or
many sub tabs within that console
#forcewebinar
Integration Toolkit Customer Use Cases
Challenge The solution must uniquely identify the content by setting
the tab title dynamically
Solution Use the SCCIT setTabTitle() method to customize the title
#forcewebinar
Integration Toolkit Customer Use Cases
Challenge The solution must prevent the user from closing a service
cloud console tab when processing within the tab
Solution Use the SCCIT setTabUnsavedChanges() method to flag the
tab as dirty while the user is processing
#forcewebinar
UI Integration Patterns
Approach Pros Cons
fire event / add event listener
(pub/sub)
• Based on a library tested across
multiple browser versions
• Multiple listeners can process a
given event
• No Record Storage Required
• Does not require full receiving
Visualforce page refresh
• Receiving page must be open
• If multiple receiving pages are
open state logic must be
implemented
• Does not persist once page is
closed
#forcewebinar
Integration Toolkit Customer Use Cases
Challenge The solution should allow the agent to easily associate
activities to only Contact records viewed upon handling a call
Solution Use the SCCIT fireEvent() method to publish Contact details upon
Contact(s) being viewed and addEventListener() on the activity logging
page to build a SelectList
#forcewebinar
Integration Toolkit Customer Use Cases
Challenge When a change is made in one area of the application the
solution must automatically refresh other area(s) of the solution
Solution Use the SCCIT fireEvent() method to publish a request
triggered by the desired behavior and addEventListener() to refresh
the target component(s)
#forcewebinar
Bringing External Apps into the Service Cloud Console
§  Can you customize your
external app?
§  Does your external application
work when framed?
Parameter passing
§  www.bing.com/search?q={!case.subject}
#forcewebinar
Gotchas
§  No initial type check on Javascript upon saving
§  Test on multiple browsers
§  Use alerts e.g. alert(’is this working?');
§  Don’t forget to include the resource in your visualforce page and mind the
API version <apex:includeScript value="/support/console/28.0/integration.js"/>
§  Leverage Google Chrome developer tools to debug javascript
–  Ctrl + Shift + I (Mac: ⌥⌘I) keys to open
#forcewebinar
UI Integration Patterns
Approach Pros Cons
Browser Session storage
persistence
• Fast (No server script)
• No Record Storage Required
• Does not require receiving page
to be open
• Requires logic to manage state
to determine which primary tab is
applicable
• Persists globally regardless of
page close
#forcewebinar
Service Cloud Console
Component Framework – Primary Tabs, Subtabs, Navigation Tab, Footer, Sidebar Components
Integration Capabilities
Service Cloud Console Integration Toolkit
Standard
Objects
Custom
Objects
Visualforce
3rd Party web
pages/ web
tabs
Open CTI Canvas Apps
KeyboardShortcuts,PushNotifications
Reports/
Dashboar
ds
Chatter
Live Agent
Standard
Compone
nts
#forcewebinar
Resources
•  Service Cloud Integration Toolkit Developers
Guide
http://www.salesforce.com/us/developer/
docs/api_console/index.htm
•  w3 Schools Javascript Reference
http://www.w3schools.com/js
•  Canvas Developer Guide
http://www.salesforce.com/us/developer/
docs/platform_connectpre/
canvas_framework.pdf
#forcewebinar
Chad Kelly
Salesforce Services
@chadforce
Clement Tussiot
Salesforce Services
@ctussiot
Q & A

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Building apps faster with lightning and winter '17
Building apps faster with lightning and winter '17Building apps faster with lightning and winter '17
Building apps faster with lightning and winter '17
 
LWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilityLWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura Interoperability
 
Introduction to Apex for Developers
Introduction to Apex for DevelopersIntroduction to Apex for Developers
Introduction to Apex for Developers
 
Dreamforce Developer Recap
Dreamforce Developer RecapDreamforce Developer Recap
Dreamforce Developer Recap
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and Testing
 
Secure Development on the Salesforce Platform - Part I
Secure Development on the Salesforce Platform - Part ISecure Development on the Salesforce Platform - Part I
Secure Development on the Salesforce Platform - Part I
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base Components
 
Building a Single Page App with Lightning Components
Building a Single Page App with Lightning ComponentsBuilding a Single Page App with Lightning Components
Building a Single Page App with Lightning Components
 
Streamline Selenium Testing with Page Flow Navigation
Streamline Selenium Testing with Page Flow NavigationStreamline Selenium Testing with Page Flow Navigation
Streamline Selenium Testing with Page Flow Navigation
 
Lightning components performance best practices
Lightning components performance best practicesLightning components performance best practices
Lightning components performance best practices
 
10 Principles of Apex Testing
10 Principles of Apex Testing10 Principles of Apex Testing
10 Principles of Apex Testing
 
Lightning Components Introduction
Lightning Components IntroductionLightning Components Introduction
Lightning Components Introduction
 
Winter '16 Release - Overview and Highlights
Winter '16 Release - Overview and HighlightsWinter '16 Release - Overview and Highlights
Winter '16 Release - Overview and Highlights
 
Developing Salesforce Console Apps with Visualforce & the Integration Toolkit
Developing Salesforce Console Apps with Visualforce & the Integration ToolkitDeveloping Salesforce Console Apps with Visualforce & the Integration Toolkit
Developing Salesforce Console Apps with Visualforce & the Integration Toolkit
 
Using Apex for REST Integration
Using Apex for REST IntegrationUsing Apex for REST Integration
Using Apex for REST Integration
 
Adopting Salesforce DX
Adopting Salesforce DXAdopting Salesforce DX
Adopting Salesforce DX
 
Introduction to MuleSoft
Introduction to MuleSoftIntroduction to MuleSoft
Introduction to MuleSoft
 
Write bulletproof trigger code
Write bulletproof trigger codeWrite bulletproof trigger code
Write bulletproof trigger code
 
Automate Processes Visually with the Lightning Process Builder
Automate Processes Visually with the Lightning Process BuilderAutomate Processes Visually with the Lightning Process Builder
Automate Processes Visually with the Lightning Process Builder
 
Intro to Apex - Salesforce Force Friday Webinar
Intro to Apex - Salesforce Force Friday Webinar Intro to Apex - Salesforce Force Friday Webinar
Intro to Apex - Salesforce Force Friday Webinar
 

Similar a Salesforce.com API Series: Service Cloud Console Deep Dive

Spring '14 Release Developer Preview Webinar
Spring '14 Release Developer Preview WebinarSpring '14 Release Developer Preview Webinar
Spring '14 Release Developer Preview Webinar
Salesforce Developers
 
Building JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 PlatformBuilding JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 Platform
Salesforce Developers
 

Similar a Salesforce.com API Series: Service Cloud Console Deep Dive (20)

Spring '14 Release Developer Preview Webinar
Spring '14 Release Developer Preview WebinarSpring '14 Release Developer Preview Webinar
Spring '14 Release Developer Preview Webinar
 
Force.com Canvas: 2 Case Studies and a Roadmap
Force.com Canvas: 2 Case Studies and a RoadmapForce.com Canvas: 2 Case Studies and a Roadmap
Force.com Canvas: 2 Case Studies and a Roadmap
 
Customizing the Salesforce Console with the Integration Toolkit (DF13)
Customizing the Salesforce Console with the Integration Toolkit (DF13)Customizing the Salesforce Console with the Integration Toolkit (DF13)
Customizing the Salesforce Console with the Integration Toolkit (DF13)
 
Trailhead in a Box & Winter 20 Release
Trailhead in a Box & Winter 20 ReleaseTrailhead in a Box & Winter 20 Release
Trailhead in a Box & Winter 20 Release
 
Building Lightning Components for ISVs (Dreamforce 2015)
Building Lightning Components for ISVs (Dreamforce 2015)Building Lightning Components for ISVs (Dreamforce 2015)
Building Lightning Components for ISVs (Dreamforce 2015)
 
Building JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 PlatformBuilding JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 Platform
 
Salesforce Lightning workshop
Salesforce Lightning workshopSalesforce Lightning workshop
Salesforce Lightning workshop
 
Intro to Apex Programmers
Intro to Apex ProgrammersIntro to Apex Programmers
Intro to Apex Programmers
 
Building einstein analytics apps uk-compressed
Building einstein analytics apps   uk-compressedBuilding einstein analytics apps   uk-compressed
Building einstein analytics apps uk-compressed
 
Tech Enablement Webinar for ISVs (March 16, 2017)
Tech Enablement Webinar for ISVs (March 16, 2017)Tech Enablement Webinar for ISVs (March 16, 2017)
Tech Enablement Webinar for ISVs (March 16, 2017)
 
ISV Lightning Webinar Series - Part 2 (December 8, 2015)
ISV Lightning Webinar Series - Part 2 (December 8, 2015)ISV Lightning Webinar Series - Part 2 (December 8, 2015)
ISV Lightning Webinar Series - Part 2 (December 8, 2015)
 
Force.com Friday: Intro to Force.com
Force.com Friday: Intro to Force.comForce.com Friday: Intro to Force.com
Force.com Friday: Intro to Force.com
 
Suisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshopSuisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshop
 
Winter'18 Developer Preview Webinar
Winter'18 Developer Preview WebinarWinter'18 Developer Preview Webinar
Winter'18 Developer Preview Webinar
 
Hands-on Workshop: Intermediate Development with Heroku and Force.com
Hands-on Workshop: Intermediate Development with Heroku and Force.comHands-on Workshop: Intermediate Development with Heroku and Force.com
Hands-on Workshop: Intermediate Development with Heroku and Force.com
 
Webinar: Build Apps Customers Love as a Salesforce Developer
Webinar: Build Apps Customers Love as a Salesforce DeveloperWebinar: Build Apps Customers Love as a Salesforce Developer
Webinar: Build Apps Customers Love as a Salesforce Developer
 
Sandboxes: The Future of App Development by Evan Barnet & Pam Barnet
Sandboxes: The Future of App Development by Evan Barnet & Pam BarnetSandboxes: The Future of App Development by Evan Barnet & Pam Barnet
Sandboxes: The Future of App Development by Evan Barnet & Pam Barnet
 
Building Apps Faster with Lightning and Winter '17
Building Apps Faster with Lightning and Winter '17Building Apps Faster with Lightning and Winter '17
Building Apps Faster with Lightning and Winter '17
 
Lightning Workshop London
Lightning Workshop LondonLightning Workshop London
Lightning Workshop London
 
[MBF2] Plate-forme Salesforce par Peter Chittum
[MBF2] Plate-forme Salesforce par Peter Chittum[MBF2] Plate-forme Salesforce par Peter Chittum
[MBF2] Plate-forme Salesforce par Peter Chittum
 

Más de Salesforce Developers

Más de Salesforce Developers (20)

Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component Performance
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX India
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local Development
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web Components
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
 
Live coding with LWC
Live coding with LWCLive coding with LWC
Live coding with LWC
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCP
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in Salesforce
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data Capture
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
 
Get Into Lightning Flow Development
Get Into Lightning Flow DevelopmentGet Into Lightning Flow Development
Get Into Lightning Flow Development
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS Connect
 
Modern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesModern App Dev: Modular Development Strategies
Modern App Dev: Modular Development Strategies
 
Vs Code for Salesforce Developers
Vs Code for Salesforce DevelopersVs Code for Salesforce Developers
Vs Code for Salesforce Developers
 
Vs Code for Salesforce Developers
Vs Code for Salesforce DevelopersVs Code for Salesforce Developers
Vs Code for Salesforce Developers
 
Manage Massive Datasets with Big Objects & Async SOQL
Manage Massive Datasets with  Big Objects & Async SOQLManage Massive Datasets with  Big Objects & Async SOQL
Manage Massive Datasets with Big Objects & Async SOQL
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Último (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

Salesforce.com API Series: Service Cloud Console Deep Dive

  • 1. Salesforce.com API Series: Service Cloud Console Deep Dive August 28, 2013
  • 3. #forcewebinar Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non- salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended July 31, 2012. This documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 4. #forcewebinar Follow Developer Force for the Latest News @forcedotcom / #forcewebinar Developer Force – Force.com Community +Developer Force – Force.com Community Developer Force Developer Force Group
  • 5. #forcewebinar Have Questions? §  We have an expert support team at the ready to answer your questions during the webinar. §  Ask your questions via the GoToWebinar Questions Pane. §  The speakers will chose top questions to answer live at the end of the webinar. §  Please post your questions as we go along! §  Only post your question once; we’ll get to it as we go down the list.
  • 6. #forcewebinar Agenda §  Service Cloud Console Framework §  Integration Capabilities and Architecture §  UI integration Patterns –  Service Cloud Console Integration Toolkit –  Use Cases, Demonstration and Code Examples §  Q & A
  • 7. #forcewebinar World’s #1 Customer Service Application Social Profile Agent Console CommunitiesKnowledge Base EmailPhone Web Self- ServiceChat Analytics Partners Social Channels
  • 9. #forcewebinar Service Cloud Console Architecture App Header & Global Search Highlight Panel / Workspace Component Header Component Detail Record Right Side bar Left Side bar Detail Footer Component Pinned List Footer / Bottom Bar Highlight Panel / Workspace Component Right Side bar Left Side bar
  • 10. #forcewebinar Service Cloud Console Architecture App Header & Global Search Highlight Panel / Workspace Component Header Component Detail Record Right Side bar Left Side bar Detail Footer Component Pinned List Footer / Bottom Bar Highlight Panel / Workspace Component Right Side bar Left Side bar
  • 13. #forcewebinar Service Cloud Console Component Framework – Primary Tabs, Subtabs, Navigation Tab, Footer, Sidebar Components Integration Capabilities Service Cloud Console Integration Toolkit Standard Objects Custom Objects Visualforce 3rd Party web pages/ web tabs Open CTI Canvas Apps KeyboardShortcuts,PushNotifications Reports/ Dashboar ds Chatter Live Agent Standard Compone nts
  • 14. #forcewebinar Out of the Box UI Integration Patterns Approach Pros Cons Push Notifications • Managed via Configuration • Can subscribe by object/field • 10K events in a given 24 hours governor §  Demo Out of the Box Console
  • 15. #forcewebinar UI Integration Patterns Approach Pros Cons OOB Refresh of Custom Console Components • No coding of refresh required • No add’l coding required to reinstantiate page • Fast performance • Refresh only triggered on save of detail record • Complete re-execution of page controller constructor logic and page render §  Demonstration
  • 16. #forcewebinar UI Integration Patterns Approach Pros Cons Salesforce database persistence • Easy to Code • Data persists forever • Record Storage Required • Presentation on another screen requires DML query
  • 17. #forcewebinar UI Integration Patterns Approach Pros Cons Canvas App Events Canvas Events provide a javascript based way to send and receive events using a pub/sub pattern • Lightweight eventing model based entirely in JavaScript using JSON • Events are localized to the browser • Allows your apps to talk to other apps in an easy way • Authentication approach available via secure Connected Apps framework • Events are only sent in browser, so they do not work with apps off the page you are viewing • Parsing payload (e.g. JSON) is done by the app, not by canvas • Events are async, so you could not guarantee execution order (though you could chain event by saying the result from event 1 fires event 2, etc...)
  • 18. #forcewebinar Service Cloud Console Integration Toolkit §  What is the SCCIT? §  Why is it cool? §  What does it do? Primary Tabs and Subtabs Computer-Telephony Integration Communication b/t components openPrimaryTab() sendCTIEvent() fireEvent() addEventListener()
  • 19. #forcewebinar Integration Toolkit Customer Use Cases Challenge The solution must render a custom screen pop with several sub tabs Solution Use the SCCIT openPrimaryTab() method to launch one primary tab and use the openSubTab() method to launch one or many sub tabs within that console
  • 20. #forcewebinar Integration Toolkit Customer Use Cases Challenge The solution must uniquely identify the content by setting the tab title dynamically Solution Use the SCCIT setTabTitle() method to customize the title
  • 21. #forcewebinar Integration Toolkit Customer Use Cases Challenge The solution must prevent the user from closing a service cloud console tab when processing within the tab Solution Use the SCCIT setTabUnsavedChanges() method to flag the tab as dirty while the user is processing
  • 22. #forcewebinar UI Integration Patterns Approach Pros Cons fire event / add event listener (pub/sub) • Based on a library tested across multiple browser versions • Multiple listeners can process a given event • No Record Storage Required • Does not require full receiving Visualforce page refresh • Receiving page must be open • If multiple receiving pages are open state logic must be implemented • Does not persist once page is closed
  • 23. #forcewebinar Integration Toolkit Customer Use Cases Challenge The solution should allow the agent to easily associate activities to only Contact records viewed upon handling a call Solution Use the SCCIT fireEvent() method to publish Contact details upon Contact(s) being viewed and addEventListener() on the activity logging page to build a SelectList
  • 24. #forcewebinar Integration Toolkit Customer Use Cases Challenge When a change is made in one area of the application the solution must automatically refresh other area(s) of the solution Solution Use the SCCIT fireEvent() method to publish a request triggered by the desired behavior and addEventListener() to refresh the target component(s)
  • 25. #forcewebinar Bringing External Apps into the Service Cloud Console §  Can you customize your external app? §  Does your external application work when framed? Parameter passing §  www.bing.com/search?q={!case.subject}
  • 26. #forcewebinar Gotchas §  No initial type check on Javascript upon saving §  Test on multiple browsers §  Use alerts e.g. alert(’is this working?'); §  Don’t forget to include the resource in your visualforce page and mind the API version <apex:includeScript value="/support/console/28.0/integration.js"/> §  Leverage Google Chrome developer tools to debug javascript –  Ctrl + Shift + I (Mac: ⌥⌘I) keys to open
  • 27. #forcewebinar UI Integration Patterns Approach Pros Cons Browser Session storage persistence • Fast (No server script) • No Record Storage Required • Does not require receiving page to be open • Requires logic to manage state to determine which primary tab is applicable • Persists globally regardless of page close
  • 28. #forcewebinar Service Cloud Console Component Framework – Primary Tabs, Subtabs, Navigation Tab, Footer, Sidebar Components Integration Capabilities Service Cloud Console Integration Toolkit Standard Objects Custom Objects Visualforce 3rd Party web pages/ web tabs Open CTI Canvas Apps KeyboardShortcuts,PushNotifications Reports/ Dashboar ds Chatter Live Agent Standard Compone nts
  • 29. #forcewebinar Resources •  Service Cloud Integration Toolkit Developers Guide http://www.salesforce.com/us/developer/ docs/api_console/index.htm •  w3 Schools Javascript Reference http://www.w3schools.com/js •  Canvas Developer Guide http://www.salesforce.com/us/developer/ docs/platform_connectpre/ canvas_framework.pdf
  • 30. #forcewebinar Chad Kelly Salesforce Services @chadforce Clement Tussiot Salesforce Services @ctussiot Q & A