Setting Up Salesforce

Size: px
Start display at page:

Download "Setting Up Salesforce"

Transcription

1 Setting Up Salesforce

2 Contents 2 Contents Setting up the Salesforce Case Management Connector...3 System Requirements... 3 Configuring Salesforce for the Case Management Connector Add-On... 4 Installing and Configuring the Case Management Connector... 5 Configuring Notifications from Salesforce...6 Using Custom Fields & Attachments... 7

3 Setting up the Salesforce Case Management Connector 3 Setting up the Salesforce Case Management Connector Set up the Salesforce Case Management Connector to link your Salesforce tool to your Jive community. 1. First, configure your Salesforce org to for the Salesforce Connector. 2. Next, install and configure the Salesforce Connector in your Jive community. 3. Then, you can use the Case portal and tiles. 4. It is strongly recommended you setup notifications for new Case comments so your community members are alerted to check the community for a reply. 5. Use a custom page template for the integration user to show your customers standard and custom Salesforce fields to gather additional critical data for your support processes. Using Custom Fields & Attachments on page 7 System Requirements The Salesforce Case Management Connector works with the latest version of the Jive Cloud release. You will need a Salesforce organization. All editions other than Group Edition should work, as the Connector utilizes the API and the Case, Contact, and CaseComment objects. Note: If you have Record Types enabled for cases, Jive will only use the default Record Type. The case Record Type also cannot be changed in Jive. To install and configure the connector, you'll need: Jive-x Cloud Community manager rights to your Jive community A Salesforce org account to be used as a new service user, with permissions to setup a Connected App Salesforce org must be configured for Case Comments. See How does the Salesforce Case Management Connector Work? The Jive Recommender must be Enabled Have a Page Layout in Salesforce assigned to the Integration User. The Page Layout should be single column and contain all of the custom fields that you would like to display in Jive. See Using Custom Fields & Attachments on page 7. Note: The Page Layout should also include the Attachments detail subsection if you would like to allow users to utilize attachment functionality from the Case Management Connector. To add and configure a My Cases tile, you'll need: Jive-x Cloud The Salesforce Connector installed and configured Place owner permissions for the place where you want to add the tile To use the connector, you'll need:

4 Setting up the Salesforce Case Management Connector 4 Jive-x Cloud A user account for your Jive community (with access to the Jive places that the community manager specified when configuring the Salesforce Connector) Membership to a permission group that is configured for Case access. Salesforce Integration User Permission Requirements: Salesforce Standard User License. No API restrictions or login restrictions. If you have Sharing Rules set to anything other than Public Read/Write for the objects below, make sure to add Sharing Rules to give the Integration User the permissions to see all. Read/Write on Cases Read/Write on CaseComments Read/Write on Contacts Read/Write on Attachments Read/Write on all standard fields for these objects Read/Write on all custom fields that you wish to include on the Page Layout assigned to the Integration User. Configuring Salesforce for the Case Management Connector Add-On To set up the integration between your Jive site and Salesforce, you'll need to add a Connected App in Salesforce and install the Salesforce Connector Add-On in Jive. To install and configure the Salesforce Case Managaement Connector: 1. Log in to Salesforce and click the Setup link. 2. Select Build > Create > Apps. 3. Under "Connected Apps" click the New button. 4. Enter "Salesforce Case Management Connector for Jive" for the Connected App Name and enter a contact for the Contact Check "Enable oauth Settings". 6. Enter the callback URL: US: or EU: 7. Set the permissions for "Access and manage your data (API)" and "Perform requests on your behalf at any time (refresh_token, offline_access)". 8. Save the Connected App. 9. Note the Client ID and Consumer Secret (click the link to reveal it). These will be needed for configuration of the Jive Add-On. 10.Check to be sure that IP restrictions are relaxed for this app, and the Refresh Token policy is to refresh until revoked. 11.Create a new user for the integration to use. This will be the user that appears when there is any activity synced from Jive, and will appear in the Activity History. Creating a User in Salesforce. The user must

5 Setting up the Salesforce Case Management Connector 5 have a Type of "Salesforce", this allows API and login access. An External Chatter type user will not work. 12.Ensure that the Role for the integration user has permission to create and own Cases; and can read and write to Contacts; and has API access. You are now ready to install and configure the Salesforce Case Management Connector. Note: You can use a Salesforce Profile to ensure that the integration user has limited permissions. At a minimum the Case Connector needs to be able to use the API to view, update, and create cases as well as have access to oauth. If you do not want to use a Profile specific to this user, assign the profile with the lowest permissions and use a new Permission Set to ensure that the right API, Contact, and Case permissions are set. Installing and Configuring the Case Management Connector After adding an oauth Client in Salesforce, you'll need to install the Salesforce Case Management Connector in Jive and specify the connection and case closure configurations. 1. In Jive, click the menu under your name or avatar and select Add-ons. 2. Make sure the Available tab is selected. 3. Search for the Salesforce Case Management Connector from the list of add-ons. Click Install. 4. Decide whether you want to preview this add-on or immediately install it in your community: Option Install now Preview Description Selecting this will make the feature available to your entire community. Selecting this will make the feature available to you only. Make this selection if you would like to test this feature before making it available to your community. 5. After installation completes, click Configure Now Enter the Client ID and Client Secret that you stored from the Salesforce Connected App that you created in your Salesforce org. See Configuring Salesforce for the Add-On for details. 7. Select whether you are logging into Test (for a Salesforce Sandbox) or Production, for your regular Salesforce org. 8. Click "Connect". A Salesforce login window will pop up. Make sure that your browsers popup blocker has not blocked the window from opening. 9. Login to your Salesforce org with the integration user that you setup. This will complete the oauth handshake and allow Jive to read and write to the cases in your Salesforce org. 10.Click "Accept" 11.The Salesforce Connector should now be connected. Click Save.

6 Setting up the Salesforce Case Management Connector 6 12.Click "Save and Activate" to complete the setup. It is very important to click this button to finalize the process. 13.Now the next time users login the Salesforce features will be available to them. You may configure this Add-On to work for only specific Security Groups if you would like to limit access to this functionality. 14.Be sure that you have Contacts available in Salesforce with the same address as your community users. See How does the Salesforce Case Management Connector Work? Configuring Notifications from Salesforce For the best experience, Salesforce should be configured to notify your community users when a support case of theirs has a new comment to read. The recommended way to accomplish this is with a Salesforce APEX Trigger on the CaseComment object. If you use the APEX code example as a template, please remember to change the URL away from the placeholder example URL. Note: If you would prefer to use declarative Salesforce functionality instead of APEX another possible approach is a Workflow Rule or Flow to run anytime a new Case comment is added that would update a custom field on your parent Case and send an notification to the Contact the case is attached to. trigger NewCaseCommentTrigger on CaseComment (before insert, before update) { for (CaseComment t: Trigger.new) { // ignore private comments if (!t.ispublished) { continue; } List<Case> lstcase=[select CaseNumber,Contact.Name,Contact from case where Id = :t.parentid]; if (lstcase.size() == 1) { Case c = lstcase.get(0); // ignore this message if it is from the contact who created the case final String filtertext = ' Posted on behalf of ' + c.contact.name; if (t.commentbody.startswith(filtertext)) { continue; } Messaging.Single Message message = new Messaging.Single Message(); String subject = 'Your case ID ' + c.casenumber; if (Trigger.isInsert) { subject += ' has a new comment.'; } else { subject += ' has an updated comment.'; } message.setsubject( subject); message.setoptoutpolicy('filter'); message.settoaddresses(new String[] {c.contact }); String body = (Trigger.isInsert? 'A new comment was posted to the' : 'A comment was updated on the') + ' case ID: ' + c.casenumber; body += '\n

7 Setting up the Salesforce Case Management Connector 7 \n \n\n'; body += t.commentbody; body += '\n\n \n\n'; body += 'Go to case: YOURURLHERE.jiveon.com/apps/sfdc-case-management-connector#canvas:{"ref":"/cases/' + c.casenumber + '"}'; message.setplaintextbody( body); Messaging.Single Message[] messages = new List<Messaging.Single Message> {message}; Messaging.Send Result[] results = Messaging.send (messages); if (results[0].success) { System.debug('The was sent successfully.'); } else { System.debug('The failed to send: '+ results[0].errors[0].message); } } else { System.debug('No case associated with comment.'); } }} Using Custom Fields & Attachments Custom Fields in Salesforce allow your organization to store additional information specific to your company or processes to be used informationally by your support team, or to be used for automation and workflow rules. Using a custom page template applied to the integration user account you can surface custom Salesforce fields to your customers in the Jive community Case Management Connector. To show Salesforce fields (both standard and custom fields on the Case object): 1. Create a new Page Layout in Salesforce. See details in the Salesforce documentation. Only single column layouts are supported. Any fields placed into a second column will not appear in Jive. 2. Assign the new Page Layout to the integration users profile. This should be the same user that you used to setup for the Jive Case Management integration. If you don't know which user was used, it is listed on the connector setup console configuration page. See details in the Salesforce documentation. 3. Note: Supported fields include Picklists (including Dependent Picklists and Multi-Select Picklists); Text; Textarea; Textarea (Long); Checkbox. Add fields to the Page Layout. These are the fields that will be surfaced to end users in your Jive community when they create or update a case. 4. If you would like to send and receive attachments in your cases, add the Attachments related list to the layout. If you would like Attachments functionality off, make sure the Related List for Attachments is not in the layout assigned to the integration user. Attachment size is limited by Salesforce (25MB) and only valid file types will be accepted. For security reasons, the following types of files are not allowed:.html,.htt,.mht,.svg,.swf,.thtml, and.xhtml. 5. Note: Special Salesforce fields like Internal Comments and the Web/ to Case fields should be excluded from use due to their special purposes and properties. Make sure your custom Salesforce fields have good Descriptions. The help text from Salesforce (if any) will be shown in Jive to assist your community users in filling out the correct details. 6. Save the Page Layout. Changes will sync to Jive in a few minutes.

8 Setting up the Salesforce Case Management Connector 8 After a few minutes, the fields will show in Jive during case creation and update. Note: Only show fields that you want customers to view and update. Internal fields should not be on this page layout, or they will be visible to your customers. Note: Limit the amount of fields you show, customers may become frustrated if they see a large form with many fields to fill out. Ask for the minimum amount of information needed for your support team to be effective.

for Salesforce Question-to-Case Connector

for Salesforce Question-to-Case Connector for Salesforce Question-to-Case Connector Contents 2 Contents Cloud Help for Community Managers... 3 What is the Salesforce Question-to-Case Connector... 4 Setting up the Salesforce Question-to-Case Connector...5

More information

Setting up the Zendesk Connector...3

Setting up the Zendesk Connector...3 Setting Up Zendesk Contents 2 Contents Setting up the Zendesk Connector...3 System Requirements... 3 Configuring Zendesk for the Connector...3 Installing and Configuring the Connector...4 Configuring Unanswered

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Case Management Implementation Guide

Case Management Implementation Guide Case Management Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Contents Release Notes System Requirements Using Jive for Office

Contents Release Notes System Requirements Using Jive for Office Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Using Jive for Office... 5 What is Jive for Office?...5 Working with Shared Office Documents... 5 Get set up...6 Get connected

More information

S-Drive Installation Guide v1.28

S-Drive Installation Guide v1.28 S-Drive Installation Guide v1.28 Important Note This installation guide contains basic information about S-Drive installation. Refer to the S-Drive Advanced Configuration Guide for advanced installation/configuration

More information

License Management and Support Guide

License Management and Support Guide License Management and Support Guide Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Salesforce.com Summer '10 Release Notes

Salesforce.com Summer '10 Release Notes Salesforce.com: Summer '10 Salesforce.com Summer '10 Release Notes Last updated: July 20, 2010 Copyright 2000-2010 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of

More information

Salesforce Admin & Development Training

Salesforce Admin & Development Training Salesforce Admin & Development Training Configuration CRM Overview Introduction to Cloud Computing Salesforce Basics Understanding SFDC UI Personal Setup Reset Person Info ~ Password ~ Security Token Understanding

More information

8.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5

8.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5 for Google Docs Contents 2 Contents 8.0 Help for Community Managers... 3 About Jive for Google Docs...4 System Requirements & Best Practices... 5 Administering Jive for Google Docs... 6 Understanding Permissions...6

More information

USER S MANUAL. TryBooking Salesforce Integration Page 2

USER S MANUAL. TryBooking Salesforce Integration Page 2 User s Manual USER S MANUAL 1.0 Overview... 3 2.0 Getting Started... 3 2.1 Installation and Logging In... 3 2.2 Connecting your TryBooking Account... 6 2.2.1 Salesforce Account Settings... 6 2.2.2 Connecting

More information

Setting Up Jive for SharePoint Online and Office 365. Introduction 2

Setting Up Jive for SharePoint Online and Office 365. Introduction 2 Setting Up Jive for SharePoint Online and Office 365 Introduction 2 Introduction 3 Contents 4 Contents Setting Up Jive for SharePoint Online and Office 365...5 Jive for SharePoint Online System Requirements...5

More information

Set Up and Manage Salesforce Communities

Set Up and Manage Salesforce Communities Set Up and Manage Salesforce Communities Salesforce, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Install Guide WINTER '15 REVISION C. C o p y r i g h t C l o u d A p p s L t d

Install Guide WINTER '15 REVISION C. C o p y r i g h t C l o u d A p p s L t d Install Guide WINTER '15 REVISION C C o p y r i g h t 2 0 1 4 C l o u d A p p s L t d 1 Table of Contents Introduction... 3 Version History... 4 Requirements... 5 Salesforce Organisation Types... 5 Salesforce

More information

Package and Distribute Your Apps

Package and Distribute Your Apps Package and Distribute Your Apps Salesforce, Summer 18 @salesforcedocs Last updated: July 30, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 TeamViewer User Guide for Microsoft Dynamics CRM Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 1 P a g e Table of Contents TeamViewer User Guide for Microsoft Dynamics CRM 1 Audience

More information

Sync to a Secondary Salesforce Organization

Sync to a Secondary Salesforce Organization Sync to a Secondary Salesforce Organization Salesforce, Summer 17 @salesforcedocs Last updated: August 9, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Zephyr Cloud for HipChat

Zephyr Cloud for HipChat June 25 Zephyr Cloud for HipChat Z e p h y r, 7 7 0 7 G a t e w a y B l v d S t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A 1 - Overview How this guide will help Zephyr Cloud for HipChat guide will guide

More information

Salesforce Lead Management Implementation Guide

Salesforce Lead Management Implementation Guide Salesforce Lead Management Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: October 1, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Summer 18 @salesforcedocs Last updated: July 26, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ.

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. Contents Sertifi for Salesforce CPQ Prerequisites... 2 Section 1: Sertifi for Salesforce installation and setup...

More information

Account Plan Pro Set Up Guide

Account Plan Pro Set Up Guide Account Plan Pro Set Up Guide Version 7 PLAN2WIN SOFTWARE TABLE OF CONTENTS INSTALLING THE APPLICATION 4 SET UP CUSTOM PROFILE 4 SET PERMISSIONS 5 ENABLE VISUALFORCE PAGE ACCESS 7 MANAGE LICENSES/ SET

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: October 13, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5 for Google Docs Contents 2 Contents 9.0 Help for Community Managers... 3 About Jive for Google Docs...4 System Requirements & Best Practices... 5 Administering Jive for Google Docs... 6 Quick Start...6

More information

Adding Disclaimer Text Field to your Salesforce Org

Adding Disclaimer Text Field to your Salesforce Org Adding Disclaimer Text Field to your Salesforce Org Table of Contents 1 Introduction... 3 2 Add Disclaimer Text Field to goalgamipro Settings, Plan, and Report Page Layouts... 3 3 Make Sure Disclaimer

More information

Admin Table is oftr Caoto ntr e s U ntsser Guide Table of Contents Introduction Accessing the Portal

Admin Table is oftr Caoto ntr e s U ntsser Guide Table of Contents Introduction Accessing the Portal Administrator s Table of Contents User Guide Table of Contents Introduction 3 Accessing the Portal 3 Create User Accounts 4 Enable / Disable User Accounts 5 Manage Users from an LDAP Server 5 User Roles

More information

Integrating Salesforce and SharePoint Netwoven Inc.

Integrating Salesforce and SharePoint Netwoven Inc. Integrating Salesforce and SharePoint 2013 Netwoven Inc. Audience Background How many have some experience with: Salesforce.com: basic Sales or other Apps SharePoint 2013 Apps (SP or Cloud hosted) Development

More information

Set Up Salesforce Files Sync

Set Up Salesforce Files Sync Set Up Salesforce Files Sync Salesforce, Spring 18 @salesforcedocs Last updated: April 25, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Summer 16 @salesforcedocs Last updated: June 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

RingCentral for Salesforce Classic. UK Administrator Guide

RingCentral for Salesforce Classic. UK Administrator Guide RingCentral for Salesforce Classic UK Administrator Guide 1 RingCentral for Salesforce Classic UK Administrator Guide Introduction Contents Introduction... 3 About RingCentral for Salesforce.................................................

More information

Package and Distribute Your Apps

Package and Distribute Your Apps Package and Distribute Your Apps Salesforce, Summer 17 @salesforcedocs Last updated: August 9, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Volunteers for Salesforce Installation & Configuration Guide Version 3.79

Volunteers for Salesforce Installation & Configuration Guide Version 3.79 Volunteers for Salesforce Installation & Configuration Guide Version 3.79 January 1, 2016 Djhconsulting.com 1 CONTENTS 1. Overview... 4 2. Installation Instructions... 4 2.1 Requirements Before Upgrading...

More information

RingCentral for Salesforce. Administrator Guide

RingCentral for Salesforce. Administrator Guide RingCentral for Salesforce Administrator Guide 1 RingCentral for Salesforce Administrator Guide Introduction Contents Introduction...3 About RingCentral for Salesforce..................................................

More information

Mobile Android Configuration Guide

Mobile Android Configuration Guide Mobile Android Configuration Guide Version 21 SP-WX-MBLAND-CG-201801--R021.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed,

More information

S-Drive Installation Guide v1.25

S-Drive Installation Guide v1.25 S-Drive Installation Guide v1.25 Important Note This installation guide contains basic information about S-Drive installation. Refer to the S-Drive Advanced Configuration Guide for advanced installation/configuration

More information

Set Up and Configure Salesforce Advisor Link

Set Up and Configure Salesforce Advisor Link Set Up and Configure Salesforce Advisor Link Examples and illustrations throughout this document are for illustrative purposes only and not to be considered guidance on proper or required configurations.

More information

Salesforce Enterprise Edition Upgrade Guide

Salesforce Enterprise Edition Upgrade Guide Salesforce Enterprise Edition Upgrade Guide Salesforce, Spring 16 @salesforcedocs Last updated: February 11, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Adobe Volume Licensing

Adobe Volume Licensing Adobe Volume Licensing VIP Customer Admin Console User Guide for Value Incentive Plan (VIP) Version 2.5 November 11, 2013 Contents What is the VIP Customer Admin Console?... 4 Getting started with VIP...

More information

Installation & Configuration Guide Enterprise/Unlimited Edition

Installation & Configuration Guide Enterprise/Unlimited Edition Installation & Configuration Guide Enterprise/Unlimited Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Salesforce Lead Management Implementation Guide

Salesforce Lead Management Implementation Guide Salesforce Lead Management Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 7, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

BLOOMBERG VAULT FOR FILES. Administrator s Guide

BLOOMBERG VAULT FOR FILES. Administrator s Guide BLOOMBERG VAULT FOR FILES Administrator s Guide INTRODUCTION 01 Introduction 02 Package Installation 02 Pre-Installation Requirement 02 Installation Steps 06 Initial (One-Time) Configuration 06 Bloomberg

More information

Lightning Knowledge Guide

Lightning Knowledge Guide Lightning Knowledge Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 13, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Administering Jive Mobile Apps

Administering Jive Mobile Apps Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Custom App Wrapping for ios... 4 Native App Caching: Android...4 Native App

More information

Salesforce.com Spring '11 Release Notes

Salesforce.com Spring '11 Release Notes Salesforce: Spring '11 Salesforce.com Spring '11 Release Notes Last updated: May 2, 2011 Copyright 2000-2011 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com,

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Administering Jive Mobile Apps for ios and Android

Administering Jive Mobile Apps for ios and Android Administering Jive Mobile Apps for ios and Android TOC 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios...3 Custom App Wrapping for ios...3 Authentication with Mobile

More information

Microsoft Office SharePoint. Reference Guide for Contributors

Microsoft Office SharePoint. Reference Guide for Contributors Microsoft Office SharePoint Reference Guide for Contributors SharePoint: Reference Guide for Contributors Table of Contents INTRODUCTION... 3 FOLLOWING A SITE... 3 NAVIGATION... 4 LISTS AND LIBRARIES...

More information

ClickMeeting for Salesforce. User Manual

ClickMeeting for Salesforce. User Manual ClickMeeting for Salesforce User Manual Table of Contents Introduction... 2 Admin Manual... 3 Installation Package... 3 Installing and Configuring the Application... 4 Syncing Events... 5 Access to Historical

More information

Salesforce.com Winter 18 Release

Salesforce.com Winter 18 Release Salesforce.com Winter 18 Release October 2017 Copyright 2017 Veeva Systems Inc., all rights reserved veeva.com 1 Table of Contents SFDC Release Schedule and Deck Intentions Summary of Enhancements and

More information

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018 RSA NetWitness Logs Event Source Log Configuration Guide Salesforce Last Modified: Wednesday, February 14, 2018 Event Source Product Information: Vendor: Salesforce Event Source: CRM Versions: API v1.0

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Mobile ios Configuration Guide

Mobile ios Configuration Guide Mobile ios Configuration Guide Version 21 SP-WX-MBLIOS-CG-201801--R021.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed, or

More information

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

MIGRATING FROM PORTALS TO COMMUNITIES

MIGRATING FROM PORTALS TO COMMUNITIES MIGRATING FROM PORTALS TO COMMUNITIES Introduction Have a partner portal or customer portal in your org? You can set up a community as well, to take advantage of the great new features that Salesforce

More information

SETTING UP SALESFORCE KNOWLEDGE

SETTING UP SALESFORCE KNOWLEDGE SETTING UP SALESFORCE KNOWLEDGE Summary Salesforce Knowledge enhances your customer service. A knowledge base lets you create and manage custom articles that can be easily shared with your Salesforce Knowledge

More information

Integrate Salesforce. EventTracker v8.x and above

Integrate Salesforce. EventTracker v8.x and above EventTracker v8.x and above Publication Date: March 27, 2019 Abstract This guide provides instructions to configure Salesforce, to report its logs to EventTracker Enterprise. Scope The configurations detailed

More information

The Admin's Guide to Entitlement Management

The Admin's Guide to Entitlement Management The Admin's Guide to Entitlement Management Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

PREVIEW. Salesforce Limits. Salesforce, Winter

PREVIEW. Salesforce Limits. Salesforce, Winter Salesforce Limits Salesforce, Winter 18 PREVIEW Note: This release is in preview. Features described in this document don t become generally available until the latest general availability date that Salesforce

More information

Salesforce Classic Mobile Implementation Guide

Salesforce Classic Mobile Implementation Guide Salesforce Classic Mobile Implementation Guide Version 42.0, Spring 18 @salesforcedocs Last updated: April 6, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Salesforce Classic Mobile Implementation Guide

Salesforce Classic Mobile Implementation Guide Salesforce Classic Mobile Implementation Guide Version 40.0, Summer @salesforcedocs Last updated: August 9, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

12d Synergy V4 Release Notes. 12d Synergy V4 Release Notes. Prerequisites. Upgrade Path. Check Outs. Scripts. Workspaces

12d Synergy V4 Release Notes. 12d Synergy V4 Release Notes. Prerequisites. Upgrade Path. Check Outs. Scripts. Workspaces 12d Synergy V4 Release Notes V4 contains a large number of features. Many of these features are listed in this document, but this list may not be exhaustive. This document also contains pre-requisites

More information

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired...

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired... WEB MESSAGE CENTER END USER GUIDE The Secure Web Message Center allows users to access and send and receive secure messages via any browser on a computer, tablet or other mobile devices. Introduction...

More information

HANDS-ON ACTIVITIES IDENTITY & ACCESS MANAGEMENT FEBRUARY, Hands-on Activities: Identity & Access Management 1

HANDS-ON ACTIVITIES IDENTITY & ACCESS MANAGEMENT FEBRUARY, Hands-on Activities: Identity & Access Management 1 HANDS-ON ACTIVITIES IDENTITY & ACCESS MANAGEMENT FEBRUARY, 2018 Hands-on Activities: Identity & Access Management 1 1. AN INTRODUCTION TO OAUTH FLOWS Incorporate the right SSO components in an overall

More information

Salesforce Limits. Salesforce, Spring

Salesforce Limits. Salesforce, Spring Salesforce Limits Salesforce, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-09-25 Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

More information

Identity Implementation Guide

Identity Implementation Guide Identity Implementation Guide Version 36.0, Spring 16 @salesforcedocs Last updated: March 3, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Entitlement Management Implementation Guide

Entitlement Management Implementation Guide Entitlement Management Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: October 16, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

Salesforce Console Implementation Guide

Salesforce Console Implementation Guide Salesforce Console Implementation Guide Salesforce, Summer 16 @salesforcedocs Last updated: August 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

itools Delegated Tasks Management Configuration Guide

itools Delegated Tasks Management Configuration Guide itools Delegated Tasks Management Configuration Guide Last Revised: June 15, 2016 Copyright 2009-2016 Insitu Software LLC. All rights reserved. This document may be reprinted without permission. Salesforce.com

More information

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English Kaseya v2 Integration of VSA with Vorex Configuration Guide Requires Vorex version 3.9 or later and VSA version 9.3.0.11 or later English September 15, 2017 Copyright Agreement The purchase and use of

More information

The Admin's Guide to Entitlement Management

The Admin's Guide to Entitlement Management The Admin's Guide to Entitlement Management Salesforce, Spring 17 @salesforcedocs Last updated: March 11, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Syncing Between Pardot and Salesforce

Syncing Between Pardot and Salesforce Syncing Between Pardot and Salesforce Salesforce, Summer 16 @salesforcedocs Last updated: July 13, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Health Cloud Implementation Guide

Health Cloud Implementation Guide Health Cloud Implementation Guide Salesforce, Winter 17 @salesforcedocs Last updated: December 20, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Identity Implementation Guide

Identity Implementation Guide Identity Implementation Guide Version 39.0, Spring 17 @salesforcedocs Last updated: January 11, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Administering Gamification

Administering Gamification Administering Gamification Contents 2 Contents Administering Gamification...3 Starting the Gamification Console... 3 Gamification Console Permissions...3 Missions... 3 Modifying the Default Missions...

More information

Identity Implementation Guide

Identity Implementation Guide Identity Implementation Guide Version 36.0, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Red Hat JBoss Fuse 7.0-TP

Red Hat JBoss Fuse 7.0-TP Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions for Creating Sample Integrations Last Updated: 2018-04-03 Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions

More information

8.0 Help for End Users About Jive for SharePoint System Requirements Using Jive for SharePoint... 6

8.0 Help for End Users About Jive for SharePoint System Requirements Using Jive for SharePoint... 6 for SharePoint 2010/2013 Contents 2 Contents 8.0 Help for End Users... 3 About Jive for SharePoint... 4 System Requirements... 5 Using Jive for SharePoint... 6 Overview of Jive for SharePoint... 6 Accessing

More information

Salesforce Limits. Salesforce, Winter

Salesforce Limits. Salesforce, Winter Salesforce Limits Salesforce, Winter 18 @salesforcedocs Last updated: December 6, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Salesforce Console Implementation Guide for Salesforce Classic

Salesforce Console Implementation Guide for Salesforce Classic Salesforce Console Implementation Guide for Salesforce Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is

More information

Using the Events Module

Using the Events Module Using the Events Module Contents 2 Contents Using Events... 3 Creating Events... 3 Inviting People... 4 Event Visibility and Attendance...6 Viewing Events in a Place... 6 Displaying Events in a Place...

More information

Complete Guide to Salesforce Knowledge

Complete Guide to Salesforce Knowledge Complete Guide to Salesforce Knowledge Salesforce, Summer 18 @salesforcedocs Last updated: May 25, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

The Admin's Guide to Entitlement Management

The Admin's Guide to Entitlement Management The Admin's Guide to Entitlement Management Salesforce, Spring 16 @salesforcedocs Last updated: February 4, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Microsoft Office SharePoint Reference Guide for Site Owners

Microsoft Office SharePoint Reference Guide for Site Owners Microsoft Office SharePoint Reference Guide for Site Owners Table of Contents INTRODUCTION...3 REQUESTING A NEW SITE...3 FOLLOWING A SITE...4 NAVIGATION...5 LISTS AND LIBRARIES...6 ADDING PEOPLE TO A SITE...6

More information

Contents. Managing Places...3. Contents 2

Contents. Managing Places...3. Contents 2 Managing Places Contents 2 Contents Managing Places...3 Creating a Site Structure...3 Managing Spaces...4 Designing Space Hierarchies... 5 Changing the Name of the Root Space...5 Space Creation Options...

More information

GETTING TO KNOW CASE FEED

GETTING TO KNOW CASE FEED GETTING TO KNOW CASE FEED Case Feed introduces a new way of creating, reviewing, and updating cases. It s designed for support agents in fast-paced environments who interact with customers through multiple

More information

Set Up and Maintain Sales Tools

Set Up and Maintain Sales Tools Set Up and Maintain Sales Tools Salesforce, Spring 16 @salesforcedocs Last updated: February 18, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

More information

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT SETTING UP YOUR.NET DEVELOPER ENVIRONMENT Summary Configure your local dev environment for integrating with Salesforce using.net. This tipsheet describes how to set up your local environment so that you

More information

ServiceMax Suite of Applications List of Fixed/Known Defects

ServiceMax Suite of Applications List of Fixed/Known Defects of Applications List of Fixed/Known Defects Copyright 2016 ServiceMax, Inc. All Rights Reserved. Designated trademarks and brands are the property of their respective owners. Fixed Issues For : 00054694

More information

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT SETTING UP YOUR.NET DEVELOPER ENVIRONMENT Summary Configure your local dev environment for integrating with Salesforce using.net. This tipsheet describes how to set up your local environment so that you

More information

CLOUD EXPLORER DATALOADER USER S GUIDE UC INNOVATION, INC. April 07, 2017

CLOUD EXPLORER DATALOADER USER S GUIDE UC INNOVATION, INC. April 07, 2017 CLOUD EXPLORER DATALOADER USER S GUIDE April 07, 2017 UC INNOVATION, INC. 230 Commerce, Suite 110 Irvine, CA 92602 Phone: 949-415-8246 Fax: 866-890-7874 Email: info@ucinnovation.com http://www.ucinnovation.com

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Upgrade Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Upgrade Guide Adobe Document Cloud esign Services for Salesforce Version 17 Upgrade Guide 2015 Adobe Systems Incorporated. All Rights Reserved. Last Updated: August 25, 2015 Table of Contents Upgrading from a previous

More information

Adobe Volume Licensing

Adobe Volume Licensing Adobe Volume Licensing VIP Customer Admin Console User Guide for Value Incentive Plan (VIP) Version 1.0 February 25, 2013 Contents What is the VIP Customer Admin Console?... 3 Getting Started with VIP...

More information

Oracle Express CPQ for Salesforce.com. What s New in Spring 16

Oracle Express CPQ for Salesforce.com. What s New in Spring 16 Oracle Express CPQ for Salesforce.com What s New in Spring 16 February 2016 Revised: June 2016 TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 Give Us Feedback... 4 POST-UPGRADE REQUIREMENTS... 5

More information