SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
Building Help and Training to Make
Every User an Expert
Andrea Leszek, salesforce.com, VP, Technology Communications, @aleszek, @salesforcedocs
Alice Becker, TrainTheCrowd, Founder, @trainthecrowd
Andrew Fawcett, Financialforce, CTO, @andyinthecloud
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 any
litigation, risks associated with completed and any 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-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent
fiscal quarter. These 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.
Agenda
▪ Benefits of adding custom help
▪ Declarative custom help options
▪ Programmatic custom help options
▪ AppExchange apps
▪ Open source options
▪ Q&A
Alice Becker
Founder, TrainTheCrowd
@trainthecrowd
What would you like to be an expert at?
The journey to becoming an expert…

Beginner

Intermediate

Expert!
What value do experts bring?
Experts will…

This will…

• Help streamline processes

• Increase productivity

• Generate new ideas

• Increase efficiency

• Set example to follow

• Improve data quality

• Support other users

• Reduce support cost
What will take your users from zero to hero?

How to Videos

Instructor Led Training

Ask an Expert

User Manual

Buddy System
Custom Help
“Clicks, Not Code”
Declarative Custom Help Options
Field-Level Help
Add help bubbles to fields to give tips and info to your users.
▪ Works for both standard fields and custom fields!
Override “Help for this Page” Links
For when you really need to provide your own documentation.
▪ Affects only “Help for this Page” links, not “Help & Training” link
“Getting Started” Web Tab
Web Tab in Application

HTML Page on Website
Splash Page for Custom Object Tab
Give users a short orientation when they first go to a tab.
Create Content
HTML, Image, Zip, PDF, etc.

Upload as Static
Resource
Setup → Develop → Static
Resources

Create VF Page
To show the static resource
using the URLFOR action.
Setup → Develop → Pages

<apex:page sidebar="false" showHeader="false"
standardStylesheets="false"
action="{!URLFOR($Resource.orderssplashhtm)}">
</apex:page>

Create Home Page
Custom Link
To display the VF page.
Setup → Customize → Home
→ Custom Links

Set Splash Page
Custom Link
For the desired tab.
Setup → Create → Tabs
“Let’s Code!”
Programmatic Custom Help Options
Andrew Fawcett
CTO, Financialforce
@andyinthecloud
Object-Level Help
Override Help for
▪ List View page
▪ Detail page

Object Help
▪ Object Home Help Topic
• Describe object purpose,
buttons, cross References
• Describe fields
Configuring Object-Level Help
Visualforce Page
“helporder”
Using Visualforce Pages to Link to External Help
Each Object has its own Visualforce Page for its help
▪ Unique help topic, redirects to a single “help” Visualforce page
• /helporder, /helpinvoice, /helplineitem
<apex:page action="{!URLFOR('/apex/help?topicid=1006')}"/>

The “help” page finally redirects the browser to the help topic
▪ Handles building the URL to the help location, including topic Id
• /help?topicId=XXXX
<apex:page controller="HelpController" action="{!doRedirect}"/>
▪ Apex Controller ‘doRedirect’ calculates full help URL to external location
• Including user locale for translation
Visualforce Page-Level Help
Page Level
▪ Link via Section Header
▪ Help Link can be
contextual
▪ Describe workflow of
the page, cross
references
<apex:sectionHeader title="Create Invoice from Order"
subtitle="Create an Invoice"
help="{!URLFOR('/apex/help?topicid=1006')}"/>
Example External Help URL
http://en-us.help.mydomain.com/myapp/2x/Default_CSH.htm#1321
Demo of Object- and Page-Level Help
▪ Help Hosted on Google Drive
▪ Order Object-Level Help
• List View
• Detail View

▪ Create Invoice from Order Button
• Page Help

▪ Sample Code
• See Chatter Feed in Dreamforce Org for link
Third-Party Tools
AppExchange and More
Using AppExchange Tools
If you don’t want to build your own solution, other options include:

Dynamic Inline
Help – User
Adoption Tool

BlackboardLearn
- LMS

CrowdGuide Training &
Adoption Tool
Dynamic Inline Help
Features include:
▪ Provide inline help on Opportunity, Case, Lead, Campaign, Account or
Contact page layout
▪ View business process diagrams (e.g. sales process) when record
status changes
Blackboard Learn (LMS)
Features include:
▪ Course management and completion tracking
▪ Testing and assessment tools
▪ Dashboard reports to measure impact of training
CrowdGuide
Features include:
▪ 20+ standard user guides
▪ Easy to update content
▪ Context sensitive
▪ User guides stored in one location
▪ Supports rich-text, images, YouTube, URL links
▪ Say goodbye to printed training materials!
Open Source – Guiders-JS from Optimizely
An open source JavaScript library to add your own guided tours
to Visualforce pages.
Available at https://github.com/jeff-optimizely/Guiders-JS
Open Source - Salesforce.com Doc Portal on Heroku
Mobile-ready doc portal.
▪ Built on Heroku
• Apache CouchDB
• Written in Ruby

1. Get it on github at
https://github.com/forcedotcom/doc-portal

2. Create your HTML doc files.
3. Write TOC file.
4. Update metadata file.
5. Deploy.
Custom Help Option

Pros

Cons

Field-level help bubbles

Easy to do. Keeps user in app.

Annoying if overdone.

Override Help & Training

Best for heavy customizations.

Potentially confusing for users.

Getting Started tab

Packaged with app. Content externally
maintained.

Extra tab visible unless manually removed.

Custom object splash page

Great for tab intro. Various methods to
deploy content.

Requires multiple setup steps.

Custom object help with VF

General help for object.

Requires VF development skills.

Visualforce page help link

Contextual per page.

Requires VF development skills.

Static resources

Easy to deliver content on the platform.

Content embedded in app. Harder to update
once packaged.

AppExchange apps

No development necessary.

Relies on external vendor.

Heroku doc portal

Mobile-ready. Easy delivery.

Requires some setup.
Andrea Leszek

Alice Becker

Andrew Fawcett

VP, Technology Communications,
salesforce.com
@aleszek
@salesforcedocs

Founder, TrainTheCrowd
@trainthecrowd

CTO, Financialforce
@andyinthecloud
We want to hear
from YOU!
Please take a moment to complete our
session survey
Surveys can be found in the “My Agenda”
portion of the Dreamforce app
Building Help and Training to Make Every User an Expert

Weitere ähnliche Inhalte

Mehr von Salesforce Developers

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 ComponentsSalesforce Developers
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsSalesforce Developers
 
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 TestingSalesforce Developers
 
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 InteroperabilitySalesforce Developers
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce dataSalesforce Developers
 
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 IntroductionSalesforce Developers
 
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 JSQCPSalesforce Developers
 
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 SalesforceSalesforce Developers
 
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 CaptureSalesforce Developers
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DXSalesforce Developers
 
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 ConnectSalesforce Developers
 
Modern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesModern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesSalesforce 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 SOQLSalesforce Developers
 

Mehr von Salesforce Developers (20)

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 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
 
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
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce data
 
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
 
Introduction to MuleSoft
Introduction to MuleSoftIntroduction to MuleSoft
Introduction to MuleSoft
 
Modern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesModern App Dev: Modular Development Strategies
Modern App Dev: Modular Development Strategies
 
Dreamforce Developer Recap
Dreamforce Developer RecapDreamforce Developer Recap
Dreamforce Developer Recap
 
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
 
Introduction to Einstein Bots
Introduction to Einstein Bots Introduction to Einstein Bots
Introduction to Einstein Bots
 

Kürzlich hochgeladen

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
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 MenDelhi Call girls
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
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 Nanonetsnaman860154
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
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 MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
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 slidevu2urc
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Kürzlich hochgeladen (20)

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
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
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Building Help and Training to Make Every User an Expert

  • 1. Building Help and Training to Make Every User an Expert Andrea Leszek, salesforce.com, VP, Technology Communications, @aleszek, @salesforcedocs Alice Becker, TrainTheCrowd, Founder, @trainthecrowd Andrew Fawcett, Financialforce, CTO, @andyinthecloud
  • 2. 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 any litigation, risks associated with completed and any 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-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These 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.
  • 3. Agenda ▪ Benefits of adding custom help ▪ Declarative custom help options ▪ Programmatic custom help options ▪ AppExchange apps ▪ Open source options ▪ Q&A
  • 5. What would you like to be an expert at?
  • 6. The journey to becoming an expert… Beginner Intermediate Expert!
  • 7. What value do experts bring? Experts will… This will… • Help streamline processes • Increase productivity • Generate new ideas • Increase efficiency • Set example to follow • Improve data quality • Support other users • Reduce support cost
  • 8. What will take your users from zero to hero? How to Videos Instructor Led Training Ask an Expert User Manual Buddy System Custom Help
  • 10. Field-Level Help Add help bubbles to fields to give tips and info to your users. ▪ Works for both standard fields and custom fields!
  • 11. Override “Help for this Page” Links For when you really need to provide your own documentation. ▪ Affects only “Help for this Page” links, not “Help & Training” link
  • 12. “Getting Started” Web Tab Web Tab in Application HTML Page on Website
  • 13. Splash Page for Custom Object Tab Give users a short orientation when they first go to a tab. Create Content HTML, Image, Zip, PDF, etc. Upload as Static Resource Setup → Develop → Static Resources Create VF Page To show the static resource using the URLFOR action. Setup → Develop → Pages <apex:page sidebar="false" showHeader="false" standardStylesheets="false" action="{!URLFOR($Resource.orderssplashhtm)}"> </apex:page> Create Home Page Custom Link To display the VF page. Setup → Customize → Home → Custom Links Set Splash Page Custom Link For the desired tab. Setup → Create → Tabs
  • 16. Object-Level Help Override Help for ▪ List View page ▪ Detail page Object Help ▪ Object Home Help Topic • Describe object purpose, buttons, cross References • Describe fields
  • 18. Using Visualforce Pages to Link to External Help Each Object has its own Visualforce Page for its help ▪ Unique help topic, redirects to a single “help” Visualforce page • /helporder, /helpinvoice, /helplineitem <apex:page action="{!URLFOR('/apex/help?topicid=1006')}"/> The “help” page finally redirects the browser to the help topic ▪ Handles building the URL to the help location, including topic Id • /help?topicId=XXXX <apex:page controller="HelpController" action="{!doRedirect}"/> ▪ Apex Controller ‘doRedirect’ calculates full help URL to external location • Including user locale for translation
  • 19. Visualforce Page-Level Help Page Level ▪ Link via Section Header ▪ Help Link can be contextual ▪ Describe workflow of the page, cross references <apex:sectionHeader title="Create Invoice from Order" subtitle="Create an Invoice" help="{!URLFOR('/apex/help?topicid=1006')}"/>
  • 20. Example External Help URL http://en-us.help.mydomain.com/myapp/2x/Default_CSH.htm#1321
  • 21. Demo of Object- and Page-Level Help ▪ Help Hosted on Google Drive ▪ Order Object-Level Help • List View • Detail View ▪ Create Invoice from Order Button • Page Help ▪ Sample Code • See Chatter Feed in Dreamforce Org for link
  • 23. Using AppExchange Tools If you don’t want to build your own solution, other options include: Dynamic Inline Help – User Adoption Tool BlackboardLearn - LMS CrowdGuide Training & Adoption Tool
  • 24. Dynamic Inline Help Features include: ▪ Provide inline help on Opportunity, Case, Lead, Campaign, Account or Contact page layout ▪ View business process diagrams (e.g. sales process) when record status changes
  • 25. Blackboard Learn (LMS) Features include: ▪ Course management and completion tracking ▪ Testing and assessment tools ▪ Dashboard reports to measure impact of training
  • 26. CrowdGuide Features include: ▪ 20+ standard user guides ▪ Easy to update content ▪ Context sensitive ▪ User guides stored in one location ▪ Supports rich-text, images, YouTube, URL links ▪ Say goodbye to printed training materials!
  • 27. Open Source – Guiders-JS from Optimizely An open source JavaScript library to add your own guided tours to Visualforce pages. Available at https://github.com/jeff-optimizely/Guiders-JS
  • 28. Open Source - Salesforce.com Doc Portal on Heroku Mobile-ready doc portal. ▪ Built on Heroku • Apache CouchDB • Written in Ruby 1. Get it on github at https://github.com/forcedotcom/doc-portal 2. Create your HTML doc files. 3. Write TOC file. 4. Update metadata file. 5. Deploy.
  • 29. Custom Help Option Pros Cons Field-level help bubbles Easy to do. Keeps user in app. Annoying if overdone. Override Help & Training Best for heavy customizations. Potentially confusing for users. Getting Started tab Packaged with app. Content externally maintained. Extra tab visible unless manually removed. Custom object splash page Great for tab intro. Various methods to deploy content. Requires multiple setup steps. Custom object help with VF General help for object. Requires VF development skills. Visualforce page help link Contextual per page. Requires VF development skills. Static resources Easy to deliver content on the platform. Content embedded in app. Harder to update once packaged. AppExchange apps No development necessary. Relies on external vendor. Heroku doc portal Mobile-ready. Easy delivery. Requires some setup.
  • 30. Andrea Leszek Alice Becker Andrew Fawcett VP, Technology Communications, salesforce.com @aleszek @salesforcedocs Founder, TrainTheCrowd @trainthecrowd CTO, Financialforce @andyinthecloud
  • 31. We want to hear from YOU! Please take a moment to complete our session survey Surveys can be found in the “My Agenda” portion of the Dreamforce app