Administrator Guide. v Decisions on Demand, Inc. - All Rights Reserved

Size: px
Start display at page:

Download "Administrator Guide. v Decisions on Demand, Inc. - All Rights Reserved"

Transcription

1 Administrator Guide v Decisions on Demand, Inc. - All Rights Reserved

2 Table of Contents Table of Contents Introduction Pre-requisites Additional resources Document outline Architecture overview Decision Server Policy Management Server Salesforce AppExchange app Developer Toolkit Planning your integration Installing and configuring policies Installing policy templates Configuring a policy Setting up policy invocation Invoking a business policy manually Using a custom button on a record detail page Using a custom list view button Running a batch job manually Invoking a business policy programatically Running a batch job programatically Invoking a business policy from a trigger Setting up an APEX trigger to call the Decisions on Demand API Activating triggers for a business policy Invoking a business policy from Visual Workflow Managing policy lifecycle Archiving and restoring business policies Deleting business policies User access rights Application components Functionality Decisions on Demand, Inc. - All Rights Reserved

3 Introduction This document is intended for Salesforce system administrators and developers, and explains how to integrate the Decisions on Demand AppExchange app into your Salesforce org. Pre-requisites It is assumed you have successfully installed the app from the AppExchange into your Salesforce org. If not, you can download the app from our AppExchange listing: An Installation Guide is also available from the listing page. You will need Salesforce System administrator access rights for many of the tasks described in this guide. Certain steps also require some APEX coding. Additional resources For an introduction to Decisions on Demand please refer to the Getting Started tutorial at It provides a step-by-step tutorial walking you through the basic functionality of the app. For any additional questions, you can reach us at the following locations: Web site: info@decisionsondemand.com Document outline This document contains the following sections: Architecture overview shows the main components and their connections Planning your integration questions to ask before starting integration Installing and configuring policies make customized policies available for use Setting up policy invocation set up manual or automatic invocation of policies Assigning user access rights allow users to author and view policies Decisions on Demand, Inc. - All Rights Reserved

4 Architecture overview This section gives an overview of the architecture of the Decisions on Demand product, and describes the main components. Decision Server The Decision Server applies a business policy to a stateless request received through a REST API. The REST API may be called from within Salesforce using APEX API, or from a VisualForce page using a custom controller/controller extension. See the Setting up policy invocation section for details on the usage and API of relevant components included with the app. Behind the scenes, the Decision Server obtains business policies in binary executable format from the Policy Management Server. Policy Management Server The Policy Management Server stores, and provides access to, versions of policy spreadsheets. It also compiles the spreadsheets into an executable format and makes them available to the Decision Server. The server is also accessible through a REST API, which is wrapped by the components of the AppExchange app. To compile the policy spreadsheet the Policy Management Server requires a set of configuration files, packaged as a template. Commonly used templates are available for Decisions on Demand, Inc. - All Rights Reserved

5 use through the AppExchange app (see Install and configure policy templates). Custom templates can be created using the Developer Toolkit. Salesforce AppExchange app The Decisions on Demand AppExchange app provides convenient access to the Decision and Policy Management server from within Salesforce. The main components include: VisualForce pages and associated controllers for invoking business policies Policy management pages and supporting classes APEX classes that provide simple access to the REST APIs for the servers, as well as extension points. Developer Toolkit The Developer Toolkit is used to customize standard policy templates, or create new ones from scratch. The Developer Toolkit is currently only available to Decisions on Demand implementation partners. We plan to make the toolkit available to customers in a future release. If you have a current need to create a custom policy please contact us at support@decisionsondemand.com -- we offer flat-fee consulting services, and your first custom policy is free with your annual subscription. Planning your integration Before starting the integration of the app into your Salesforce org, it is helpful to discuss the following questions with the application users: Which decisions to automate? Decisions on Demand is best suited to repeatable decisions with well-defined logic that changes frequently. We provide a library of business policy templates for common use cases, including: o o o Lead Assignment Case Assignment Opportunity Discounts Additional templates can be provided upon request to support@decisionsondemand.com. When and how to apply automated decision logic? Business policies can be applied manually from a custom button (on Detail page or List view), or automatically from a trigger, batch APEX or VisualWorkflow Decisions on Demand, Inc. - All Rights Reserved

6 Which users should have access, and to which policies? Standard profiles and permission sets are provided to provide read/write or read-only access. In addition, standard sharing rules can be applied to grant or restrict access to individual policies. The following sections explain how to configure and integrate the app based on the answers to these questions. Installing and configuring policies In Decisions on Demand a set of business rules is referred to as a Business Policy. There are two options to create a new business policy: Install it from the library of predefined templates The library is a growing collection of templates for common use cases. If you don t find the template you are looking for, please contact us at support@decisionsondemand.com to submit a suggestion for a new template. Request a custom policy For policies linked to a custom object model or domain-specific decision point, we ll work with you to implement a policy that meets your specific needs the process usually takes at most a few days. Please send requests for new templates or custom policies to support@decisionsondemand.com. The remainder of this section explains how to create a new policy from a template. Installing policy templates To create a new policy from a template, follow these steps: 1. Open the Decisions on Demand app Decisions on Demand, Inc. - All Rights Reserved

7 2. Navigate to the Business Policies tab 3. Click the Install button next to the template of your choice 4. Confirm template is installed The template should appear under the list of installed business policies. You can then click the policy name to be taken to the detail page where you can edit the business rules. Configuring a policy After the policy is installed you can optionally configure it to: Add, configure or remove actions Show, hide, add or remove columns Re-order columns Change column titles and width To configure a policy click on the name in the Available Business policies list. This will open the policy detail page Decisions on Demand, Inc. - All Rights Reserved

8 On the policy detail page click the gear icon at the top right of the decision tables view top open the configuration dialog. Editing of the policy is not in scope for this document. Please refer to the Getting Started tutorial or online help for details Decisions on Demand, Inc. - All Rights Reserved

9 Setting up policy invocation Invoking a business policy involves making a call out to the Decisions on Demand server passing one or more Salesforce objects, in order to obtain a business decision. The results of that decision are returned to Salesforce as a list of actions, which are then applied to Salesforce objects. Examples of actions include assigning a new owner, updating fields, creating new records or sending an . This section shows how to configure the various ways in which business policies can be invoked: Manually o Using a custom button on a detail page o Using a custom button on a list view o By running a batch job Automatically o Through a trigger o Using Scheduled APEX o Using Batch APEX o From a custom VisualForce page o From Visual Workflow Invoking a business policy manually You can invoke a business policy manually in three ways: Using a custom button on a detail page Using a custom button on a list view By running a batch job Using a custom button on a record detail page The simplest way to invoke a business policy is by adding a custom button to a record detail page. Predefined custom buttons are included in the app for the standard policy templates: Assign (for Lead or Case), Discounts (for Opportunity). You can simply drag these buttons onto a page layout Decisions on Demand, Inc. - All Rights Reserved

10 You can also create your own custom buttons. Your button should use URL as the content source, and Invoke the pre-built DecsOnD ApplyPolicy VisualForce page. The configuration will look like this: Where the URL has the basic form: {!URLFOR("../apex/DecsOnD ApplyPolicy", "")}? ID={!<object type>.id}& policy=<policy name> The full set of supported URL parameters is: ID : the identifier of the main object to be passed to the decision server policy : the name of the policy to invoke mode (optional, default to auto ): auto: policy actions are automatically applied review : user will be asked to review any changes before they are applied log : if true (the default), a Policy Execution Record will be created for the main object with every decision service invocation. The level of detail for the execution Decisions on Demand, Inc. - All Rights Reserved

11 record can be set on the policy through its detail page. Note : to enable a related list of policy execution records on the main object, a lookup relation must be created from the Policy Execution Record object to the main object. Pre-built relations exist for Lead, Case, Opportunity, Account and Contact. For example: If you need related lists of policy execution records for other objects, you will need to create a similar relationship with the name of the object (such as Product2 c or MyObject c ). Using a custom list view button It is also possible to execute a business policy on a list of objects from a list view. Pre-defined buttons are included for the standard policy templates. You can add them from the Search Layouts section of the relevant Salesforce object. The select the view you want to add the button to, and add it to the Selected buttons When you next open the selected view, the button should be visible: Decisions on Demand, Inc. - All Rights Reserved

12 The user can then select multiple objects in this view and invoke the policy on them in a single action. The list buttons use the DecsOnD ApplyPolicyToList VisualForce page. An example configuration looks like: To create your own, edit the objectname and policyname values, and optionally the mode and log parameters. Running a batch job manually On the business policy detail page, you will find a Run Batch button Decisions on Demand, Inc. - All Rights Reserved

13 Note: the button is greyed out when the selected version is a draft. A dialog appears that allows you to specify the parameter of the batch job You can enter the following Where Clause This allows you to select a subset of records to which the policy will be applied. For example, Industry = Technology will select only records with the Industry field set to Technology. The format of the where clause is defined by the SOQL language, see e_api_calls_soql_select_conditionexpression.htm for details. To validate the syntax of your where clause, press the Tab key or click outside of the text box. This will also display the number of records that match the condition. Batch Size This is a number up to 2000 that specifies the number of records to process in one go. This is optional -- use it only if you encounter issues related to Salesforce governor limits. Lower values will avoid these issues, at the expense of slowing down you batch job somewhat. Send on completion Whether you would like to receive an on completion of the batch, only on failure, or not at all Decisions on Demand, Inc. - All Rights Reserved

14 Click Run Batch to launch the job. You will see a confirmation as follows: To track progress of the job, go to Setup/Monitor/Jobs/APEX jobs Invoking a business policy programatically You can invoke a business policy programatically from: A trigger Batch APEX Scheduled APEX A custom VisualForce page Visual Workflow Invoking a business policy from a trigger You can invoke a business policy automatically when records in Salesforce are created or updated. To do this, follow these steps: Call the Decisions on Demand API from an APEX trigger on all relevant objects Activate the trigger for all relevant policies Setting up an APEX trigger to call the Decisions on Demand API To apply a business policy when records are created or updated, you need to invoke the Decisions on Demand API from an APEX trigger for each object that should trigger a re-evaluation of the rules. That typically includes the main object to which the policy applies, but may also include related objects. For instance, to reassign an account when an associated opportunity is created, updated or deleted, you would need to create a trigger on the Opportunity object. The Decisions on Demand API call may be embedded in an existing trigger, or you can create a new trigger. The code below shows a complete trigger for the Lead object. To modify it for another object simply replace all occurrences of Lead with the name of the object in question -- which can be standard or custom Decisions on Demand, Inc. - All Rights Reserved

15 Note that a Decisions on Demand policy: Will be invoked asynchronously -- any actions will not be applied until after the trigger completes Should only be applied on after events for insert, update or delete -- API calls from a before or undelete triggers are ignored. If you have an existing trigger, you can embed the calls to the TriggerExecutionHandler methods into your existing code. Activating triggers for a business policy Setting up the trigger in the step above will call the Decisions on Demand API whenever relevant insert,update or delete events occur. This can result in the invocation of zero or more business policies Decisions on Demand, Inc. - All Rights Reserved

16 To activate and configure trigger-based invocation for a specific policy, go to the Triggers section on the policy detail page. There, you can select the objects and events that shoudl trigger a re-evaluation of the rules. You can also indicate in which cases you would like an Execution record to be created, and whether to send you an on trigger failure. For instance, to invoke a policy only on creation of a new Lead, configure the triggers as follows: Or to invoke a policy only on creation or update of an account, as well as any events on associated Opportunities and create or update events on Contacts, use the following settings: Invoking a policy from Batch APEX Use the BatchExecu tepolicy class, which implements the Database.Batchable APEX interface. BatchExecutePolicy has two constructors: PolicyInvocationContext describes the parameters of the policy invocation: Salesforce object type Policy name whereconditions or whereclause are used to specify which instances of the Salesforce object type to include in the batch Decisions on Demand, Inc. - All Rights Reserved

17 For instance, the following code would create a batch that applies the Assignment policy to all the leads located in the USA: Invoking a policy from Scheduled APEX To invoke a policy from Scheduled APEX, create a class that implements the System.Schedulable interface, then implement the execute method to call BatchExecutePolicy as described in the previous section. Invoking a business policy from a custom VisualForce page To invoke a policy from a custom VisualForce page, add the DecsonD.ApplyPolicyControllerExtension class to an existing VisualForce page with a standard controller and invoke it from a custom button as described above under Using a custom button on a record detail page. Invoking a business policy from Visual Workflow The app includes a custom VisualWorkflow plugin: The plugin has the following parameters: Decisions on Demand, Inc. - All Rights Reserved

18 The meanings of the input parameters are the same as described under Invoking a business policy from a detail page above. Only the sobjid and policyname parameters are required. Note that the object type is inferred from the object ID. Possible resultstatus parameter values are OK, FAIL or NO_ACTION. Managing policy lifecycle Archiving and restoring business policies When a policy is no longer needed, you can archive it. An archived policy is still visible, but can no longer be invoked. To archive a policy, edit the Status field by clicking the Change link next to the Status value. and confirm the action: Archived policies can be viewed from the Policies tab by choosing the All view. To restore an archived policy open its detail page and change the status back to Active Decisions on Demand, Inc. - All Rights Reserved

19 Deleting business policies Only Salesforce system administrators can delete a policy, since this will remove it from the Decisions on Demand server as well as from Salesforce, and all version history will be lost. It is recommended to Archive policies that have associated version history instead Decisions on Demand, Inc. - All Rights Reserved

20 User access rights The app includes the following profiles and permission sets: Decisions on Demand Administrator Decisions on Demand Reviewer Decisions on Demand User The profiles can be assigned to existing user profiles when the app is installed. The permission sets can be used to grant access to individual users at any time after installation. In both cases, the profiles determine access to the main components and functionalities of the app: Application components Decisions on Demand app Administrator Reviewer User Yes Yes No Welcome tab Yes Yes Business Policies tab Yes Yes Policy Execution Records tab Yes No N/A Functionality Administrator Reviewer User Install template Yes No No Edit policy Yes Sharing (RW) No Change active version Yes Sharing No View policy meta-data Yes Sharing Sharing View policy execution log Yes Sharing Sharing View policy audit trail Yes Sharing No View policy content Yes Sharing No Apply policy Yes Yes Yes Archive/restore policy Yes No No Delete policy No No No Decisions on Demand, Inc. - All Rights Reserved

21 In the table above, Sharing means that the access to individual policies is controlled by standard Salesforce sharing rules. Only a Salesforce Administrator can delete a policy but a Decisions on Demand administrator can archive it as explained under Managing policy lifecycle above Decisions on Demand, Inc. - All Rights Reserved

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

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

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

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

Document revision 1.0

Document revision 1.0 Document revision 1.0 Contents Installing the Application... 3 Basic Setup... 4 Lightning New/Edit Page Configuration... 6 Lightning App Page Configuration... 8 Standardization Options... 12 Enabling and

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

AGENDA. DEX450: Programmatic Development Using Apex and Visualforce. Day One

AGENDA. DEX450: Programmatic Development Using Apex and Visualforce. Day One Day One 15 minutes Introductions 60 minutes Welcome to AW Computing Watch Me 1-1 (5 min): Explore the Certification App Join Me 1-2 (5 min): Prepare Your Training Org Join Me 1-3 (5 min): Create a Sandbox

More information

How to Integrate Salesforce with Your Constant Contact Account FOR PROFESSIONAL & GROUP EDITIONS

How to Integrate Salesforce with Your Constant Contact Account FOR PROFESSIONAL & GROUP EDITIONS How to Integrate Salesforce with Your Constant Contact Account FOR PROFESSIONAL & GROUP EDITIONS INSIGHT PROVIDED BY www.constantcontact.com 1-866-876-8464 This guide is to help you install Constant Contact

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

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

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

Ascendix Search Admin Guide

Ascendix Search Admin Guide Ascendix Search Admin Guide Updated: 11/03/2017 Version: 1.0.9 www.ascendix.com support@ascendix.com Table of Contents What is Ascendix Search?... 2 Preparing Salesforce for Ascendix Search... 3 Defining

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

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE Summary Find the most critical limits for developing Lightning Platform applications. About This Quick Reference This quick reference provides

More information

QuickStart Guide 2 - Normalisation

QuickStart Guide 2 - Normalisation QuickStart Guide 2 - Normalisation Document Version: v1.5 Product Version: v3.13 Date: 16 th November 2018 This document provides an overview and Step-by-Step implementation instructions for the clearmdm

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

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

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

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

MassMailer Configuration Guide

MassMailer Configuration Guide MassMailer Configuration Guide Modified on: Fri, 22 Aug, 2014 at 3:41 AM MassMailer Configuration Guide Contents MassMailer Overview SendGrid Prerequisite Installing the MassMailer App Steps to Install

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

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

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

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

Enhance Your Sales Cloud Implementation

Enhance Your Sales Cloud Implementation Enhance Your Sales Cloud Implementation Salesforce, Winter 18 @salesforcedocs Last updated: November 2, 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

Set Up and Configure Volunteers for Salesforce

Set Up and Configure Volunteers for Salesforce Set Up and Configure Volunteers for Salesforce @salesforcedocs Last updated: September 7, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE Summary Find the most critical limits for developing Lightning Platform applications. About This Quick Reference This quick reference provides

More information

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE

SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE SALESFORCE DEVELOPER LIMITS AND ALLOCATIONS QUICK REFERENCE Summary Find the most critical limits for developing Lightning Platform applications. About This Quick Reference This quick reference provides

More information

goalgamipro Salesforce App

goalgamipro Salesforce App 1 Modify Existing Account and Contact Page Layouts to Work with goalgamipro Instead of using the custom Account and Contact page layouts that come with the goalgamipro Salesforce application, you can modify

More information

SITE DESIGN & ADVANCED WEB PART FEATURES...

SITE DESIGN & ADVANCED WEB PART FEATURES... Overview OVERVIEW... 2 SITE DESIGN & ADVANCED WEB PART FEATURES... 4 SITE HIERARCHY... 4 Planning Your Site Hierarchy & Content... 4 Content Building Tools... 5 Pages vs Sites... 6 Creating Pages... 6

More information

QuickStart Guide 6 - Data Quality

QuickStart Guide 6 - Data Quality QuickStart Guide 6 - Data Quality Document Version: v1.2 Product Version: v2.9 Date: 9 th September 2017 This document provides an overview and Step-by-Step implementation instructions for the clearmdm

More information

NPSP Advanced User's Guide to Importing Data

NPSP Advanced User's Guide to Importing Data NPSP Advanced User's Guide to Importing Data @salesforcedocs Last updated: January 15, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

About this Integration

About this Integration About this Integration The Ambassador App for Salesforce does the following: Adds ambassadors as contacts OR custom objects Syncs ambassador, commission & group data Automatically creates commission workflows

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

Certification Exam Guide SALESFORCE CERTIFIED SHARING AND VISIBILITY DESIGNER. Spring Salesforce.com, inc. All rights reserved.

Certification Exam Guide SALESFORCE CERTIFIED SHARING AND VISIBILITY DESIGNER. Spring Salesforce.com, inc. All rights reserved. Certification Exam Guide SALESFORCE CERTIFIED SHARING AND VISIBILITY DESIGNER Spring 18 2018 Salesforce.com, inc. All rights reserved. S ALESFORCE CERTIFIED SHARING AND VISIBILITY DESIGNER CONTENTS About

More information

Selectica Contract Lifecycle Management. Release Notes. Selectica CLM Release 6.1. January 2014 v3.0

Selectica Contract Lifecycle Management. Release Notes. Selectica CLM Release 6.1. January 2014 v3.0 Selectica Contract Lifecycle Management Release Notes Selectica CLM Release 6.1 January 2014 v3.0 Selectica CLM R.6.1 Release Notes Introduction... 3 Notable Changes... Error! Bookmark not defined. Certification

More information

Complete Guide to Salesforce Knowledge

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

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

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

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

Complete Guide to Salesforce Knowledge

Complete Guide to Salesforce Knowledge Complete Guide to Salesforce Knowledge Salesforce, Spring 17 @salesforcedocs Last updated: March 12, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

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

DBSync Integration Salesforce and QuickBooks Online (Bi-directional)

DBSync Integration Salesforce and QuickBooks Online (Bi-directional) DBSync Integration Salesforce and QuickBooks Online (Bi-directional) Page 1 of 24 Contents Overview:... 3 Data Flow:... 3 Process Map:... 4 Pre-requisites for Integration:... 5 DBSync package (QuickBooks

More information

Tutorial 1: Simple Parameterized Mapping

Tutorial 1: Simple Parameterized Mapping Tutorial 1: Simple Parameterized Mapping 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

BMC Remedyforce Troubleshooting Document

BMC Remedyforce Troubleshooting Document Troubleshooting Document BMC Remedyforce Troubleshooting Document September 2015 Table of Contents 1.0 Salesforce Apex Governor Limits Overview 2 2.0 SOQL Queries Limits 3 3.0 Triggers and Order of Execution

More information

SharePoint 2010 Tutorial

SharePoint 2010 Tutorial SharePoint 2010 Tutorial TABLE OF CONTENTS Introduction... 1 Basic Navigation... 2 Navigation Buttons & Bars... 3 Ribbon... 4 Library Ribbon... 6 Recycle Bin... 7 Permission Levels & Groups... 8 Create

More information

Release Notes October 2016

Release Notes October 2016 Release Notes October 2016 About the Release Notes... 3 Release Overview... 3 Other Announcements... 3 Enhancements... 4 External Review Improvements... 4 In-browser Editing using Microsoft 365... 6 Doc

More information

Snapshot Best Practices: Continuous Integration

Snapshot Best Practices: Continuous Integration Snapshot Best Practices: Continuous Integration Snapshot provides sophisticated and flexible tools for continuously keeping Salesforce accounts, developer projects, and content repositories synchronized.

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

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

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

Fairsail Recruit: Guide for Administrators

Fairsail Recruit: Guide for Administrators Fairsail Recruit: Guide for Administrators Version 16.01 FS-R-XXX-AG-201610--R016.01 Fairsail 2016. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Talent Acquisition: Guide for Administrators

Talent Acquisition: Guide for Administrators Talent Acquisition: Guide for Administrators Version 22 SP-R-XXX-AG-201803--R022.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed,

More information

Complete Guide to Salesforce Knowledge

Complete Guide to Salesforce Knowledge Complete Guide to Salesforce Knowledge Salesforce, Summer 16 @salesforcedocs Last updated: June 9, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

QuickStart Guide 2 - Normalisation

QuickStart Guide 2 - Normalisation QuickStart Guide 2 - Normalisation Document Version: v1.4 Product Version: v2.26 Date: 14 th April 2018 This document provides an overview and Step-by-Step implementation instructions for the clearmdm

More information

Tyler Dashboard. User Guide Version 6.0. For more information, visit

Tyler Dashboard. User Guide Version 6.0. For more information, visit Tyler Dashboard User Guide Version 6.0 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Browse... 5 Page... 5 Dashboard... 5 Views...

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

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Salesforce Mobile App URL Schemes

Salesforce Mobile App URL Schemes Salesforce Mobile App URL Schemes Version 2, 2 @salesforcedocs Last updated: November 2, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce 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

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

SALESFORCE CERTIFIED PLATFORM DEVELOPER I

SALESFORCE CERTIFIED PLATFORM DEVELOPER I Certification Exam Guide SALESFORCE CERTIFIED PLATFORM DEVELOPER I Winter 19 2018 Salesforce.com, inc. All rights reserved. S ALESFORCE CERTIFIED PLATFORM DEVELOPER I CONTENTS About the Salesforce Certified

More information

Set Up and Maintain Collaboration Tools

Set Up and Maintain Collaboration Tools Set Up and Maintain Collaboration Tools Salesforce, Winter 18 @salesforcedocs Last updated: December 6, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

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

Adobe Sign for Salesforce

Adobe Sign for Salesforce for Salesforce Developer Guide (v18) 2016 Adobe Systems Incorporated. All Rights Reserved. Last Updated: October 20, 2016 Table of Contents Salesforce Consumer Integration Documentation... 3... 3 Apex

More information

Salesforce Certified Force.com Developer Study Guide

Salesforce Certified Force.com Developer Study Guide Salesforce Certified Force.com Developer Study Guide Spring 15 STUDY GUIDE 0 Contents ABOUT THE SALESFORCE CERTIFIED FORCE.COM DEVELOPER PROGRAM... 1 SECTION 1. PURPOSE OF THIS STUDY GUIDE... 1 SECTION

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

Tyler Dashboard. User Guide Version 5.8. For more information, visit

Tyler Dashboard. User Guide Version 5.8. For more information, visit Tyler Dashboard User Guide Version 5.8 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Tyler Dashboard Ribbon... 4 User Views... 5 Tools...

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

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

SPANNING BACKUP. for Salesforce. Installation Guide

SPANNING BACKUP. for Salesforce. Installation Guide SPANNING BACKUP for Salesforce Installation Guide Table of Contents Welcome 3 About this guide 3 Who was the guide written for? 3 What s in this guide 3 Installation Overview 4 Install the Spanning Backup

More information

Introduction Setup Install package Amazon S3 sign up Add remote site Connect to Amazon S Create S3 bucket...

Introduction Setup Install package Amazon S3 sign up Add remote site Connect to Amazon S Create S3 bucket... Setup Guide Contents Introduction... 1 Setup... 2 Install package... 2 Amazon S3 sign up... 6 Add remote site... 8 Connect to Amazon S3... 9 Create S3 bucket... 11 Default S3 bucket... 12 Parent Record

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

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

SPANNING BACKUP for Office 365. Admin Guide

SPANNING BACKUP for Office 365. Admin Guide SPANNING BACKUP for Office 365 Admin Guide Welcome 3 About this guide 3 Audience 3 What s in this guide 3 Configuration 3 Prerequisites 3 Installation 3 Service Overview 4 Licensing 5 Add licenses via

More information

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO MICROSOFT LABS JANUARY 10, 2019 DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO A Solution to create a Microsoft VISIO template by consuming the configured entity values from the CRM entity record.

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

How-to: SharePoint Web Forms

How-to: SharePoint Web Forms How-to: SharePoint Web Forms Contents Overview:... 3 Create Web Form Site... 3 Web Form Components:... 4 Web Form page... 4 Confirmation page... 5 Responses list:... 6 Views:... 6 Form design... 7 Web

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

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

Vela Web User Guide Vela Systems, Inc. All rights reserved.

Vela Web User Guide Vela Systems, Inc. All rights reserved. The Vela Systems Web application is designed to enable the administration, management, and reporting of the Vela Field Management Suite, as well as give project teams the ability to collaborate on issues,

More information

SharePoint 2013 Power User EVALUATION COPY. (SHP version 1.0.1) Copyright Information. Copyright 2013 Webucator. All rights reserved.

SharePoint 2013 Power User EVALUATION COPY. (SHP version 1.0.1) Copyright Information. Copyright 2013 Webucator. All rights reserved. SharePoint 2013 Power User (SHP2013.2 version 1.0.1) Copyright Information Copyright 2013 Webucator. All rights reserved. The Authors Bruce Gordon Bruce Gordon has been a Microsoft Certified Trainer since

More information

2007, 2008 FileMaker, Inc. All rights reserved.

2007, 2008 FileMaker, Inc. All rights reserved. Bento User s Guide 2007, 2008 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo are either

More information

If you encounter any problems with this please contact us at

If you encounter any problems with this please contact us at This guide assumes that you have successfully installed and deployed the PhoneTools application from the Salesforce AppExchange. For more information on how to install PhoneTools please see our installation

More information

LinkedIn Sales Navigator for Salesforce Installation Guide: Lightning View

LinkedIn Sales Navigator for Salesforce Installation Guide: Lightning View LinkedIn Sales Navigator for Salesforce Installation Guide: Lightning View The installation process will take less than 30 minutes. Note: This guide is for Salesforce Lightning. If you need to install

More information

SharePoint 2013 Site Owner

SharePoint 2013 Site Owner SharePoint 2013 Site Owner Effective Content and Document Collaboration with Axalta Teams 9 May 2014 Instructor: Jason Christie Site Owner Course Topics to be Covered Content Management Creating and configuring

More information

Document Management System GUI. v6.0 User Guide

Document Management System GUI. v6.0 User Guide Document Management System GUI v6.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

W H IT E P A P E R. Salesforce Security for the IT Executive

W H IT E P A P E R. Salesforce Security for the IT Executive W HITEPAPER Salesforce Security for the IT Executive Contents Contents...1 Introduction...1 Background...1 Settings Related to Security and Compliance...1 Password Settings... 1 Session Settings... 2 Login

More information

Certification Exam Guide SALESFORCE CERTIFIED A DVANCED ADMINISTRATOR. Winter Salesforce.com, inc. All rights reserved.

Certification Exam Guide SALESFORCE CERTIFIED A DVANCED ADMINISTRATOR. Winter Salesforce.com, inc. All rights reserved. Certification Exam Guide SALESFORCE CERTIFIED A DVANCED ADMINISTRATOR Winter 19 2018 Salesforce.com, inc. All rights reserved. S ALESFORCE CERTIFIED ADVANCED ADMINISTRATOR CONTENTS About the Salesforce

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2016 POWER USER

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2016 POWER USER SHAREPOINT 2016 POWER USER SharePoint 2016 Power User (SHP2016.2 version 1.0.0) Copyright Information Copyright 2016 Webucator. All rights reserved. Accompanying Class Files This manual comes with accompanying

More information

TRAINING & CERTIFICATION. Salesforce.com Certified Force.com Developer Study Guide

TRAINING & CERTIFICATION. Salesforce.com Certified Force.com Developer Study Guide Salesforce.com Certified Force.com Developer Study Guide Contents About the Force.com Certification Program... 1 Section 1. Purpose of this Study Guide... 2 Section 2. Audience Description: Salesforce.com

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

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

Getting Started with Relationship Groups

Getting Started with Relationship Groups Getting Started with Relationship Groups Understanding & Implementing Salesforce, Winter 17 @salesforcedocs Last updated: October 31, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved.

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

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

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information