Adobe Sign for Salesforce

Size: px
Start display at page:

Download "Adobe Sign for Salesforce"

Transcription

1 for Salesforce Developer Guide (v18) 2016 Adobe Systems Incorporated. All Rights Reserved. Last Updated: October 20, 2016

2 Table of Contents Salesforce Consumer Integration Documentation Apex Services... 3 Agreement Template Service... 3 API Service Methods... 4 Inner Classes... 5 Apex Batch Services... 7 Action Batch Service... 7 Agreement Template Batch... 8 Agreement Template Service Batch... 9 REST Services Agreement Template Service Background Service Adobe Sign for Salesforce Developer Documentation 2

3 Salesforce Consumer Integration Documentation This document is designed to provide the services available to Salesforce developers when coding custom solutions using the Adobe Sign application. Apex Services Agreement Template Service The agreement template service is exposed as a Apex service by the managed package. This allows Apex code outside of the managed package to load agreements based on existing agreement templates. The class and all exposed methods are marked as to allow such access. The Apex service is exposed through the following invocation class: echosign_dev1.agreementtemplateservice Note: Loading an agreement template with esign Library Templates is currently not supported. Move the document templates to a Salesforce document library. Methods static Id load() Loads an agreement using an agreement template marked as default and which has no master object type. static Id load(string templateid) Loads an agreement using the specified agreement template ID, which has no master object type. static Id load(string templateid, String masterid) Loads an agreement using the specified agreement template ID and the specified master record ID, whose type must match the master object type configured in the specified agreement template. static Id load(string templateid, String masterid, Map<String,AgreementTemplateVariable> agreementtemplatevariables) Loads an agreement using the specified agreement template ID and the specified master record ID, whose type must match the master object type configured in the specified agreement template. Also passes in the specified runtime variables as name value pairs. Runtime Variables The echosign_dev1.agreementtemplatevariable class has two fields. name : The variable name, which must match a runtime variable name configured in the agreement template. Adobe Sign for Salesforce Developer Documentation 3

4 value : The value of that variable which will be used during the template load. The value depends on where the variable was used. For example, for a recipient it has to be a contact, lead, or user record ID or an . For a document variable, it must be an attachment record ID. Result Every method either return the ID of the newly created agreement record or throws an exception with a detailed error message if something went wrong during the load operation. API Service The Adobe esign API template service is exposed as a Apex service by the managed package. This allows Apex code outside of the managed package to invoke a set of Adobe esign API's through these wrappers. The wrappers greatly simplify the API invocation because consumers do not need to create request and response data model. Also consumers do not need to handle the transformation of Salesforce data into esign data models. Most of the complexity is abstracted from the consumer. For example, to send an agreement the consumer just passes in the agreement record ID, the service will handle querying it, extracting all of the relevant data, passing it on the API and parsing the result. The class and all exposed methods are marked as to allow such access. v17 and below invokes SOAP API's. v18 and above invokes REST API's. The Apex service is exposed through the following invocation class: echosign_dev1.echosignapiservice Methods static void canceldocument(id agreementid) Cancels the agreement with the specified agreement ID. static void delegatesigner(id agreementid, String delegated ) static void delegatesigner(id agreementid, String delegated , String message) static echsign_dev1.echosignapiservice.documentinfo getdocumentinfo(id agreementid) Delegate signing to the provided . Delegate signing to the provided with the specified message. Retrieves detailed information for the specified agreement ID. static List getsigningurls(id agreementid) Retrieves all signing URL's for the specified agreement ID. Adobe Sign for Salesforce Developer Documentation 4

5 static void removedocument(id agreementid) Cancels the agreement with the specified agreement ID and deletes the agreement record in Salesforce (the agreement is not removed from the Adobe esign account). static void replacesigner(id replacementrecipientid) static void replacesigner(id replacementrecipientid, String message) static echsign_dev1.echosignapiservice.sendd ocumentresult senddocument(id agreementid) Replaces the specified signer. Replaces the specified signer with the specified message. Sends out the agreement with the specified agreement ID, returns the result with the document key and URL's. static void sendreminder(id agreementid) Sends a reminder to the current signer for the specified agreement ID. Inner Classes class DocumentHistoryEvent Properties (2) Name String eventtype String participant Constructors (1) Signature DocumentHistoryEvent() class DocumentInfo Properties (5) Name Map<string,list> historyby Map participantsby Map participantsbyname String sender String status Adobe Sign for Salesforce Developer Documentation 5

6 Constructors (1) Signature DocumentInfo() class ParticipantInfo Properties (5) Name String company String String name String status String title Constructors (1) Signature ParticipantInfo() class SendDocumentResult Properties (3) Name String documentkey Exception error String url Constructors (1) Signature SendDocumentResult() Adobe Sign for Salesforce Developer Documentation 6

7 class SigningUrl Properties (3) Name String String esignurl String simpleesignurl Constructors (1) Signature Global Apex Batch Services Action Batch Service Exposes the main esign agreement actions on a bulk level, allowing an operation to be performed on a set of agreements. This class implements the Salesforce Database.Batchable interface. It can process any number of records, which will be broken down into sets of 5 and processing each set as an individual transaction, which allows governor limits to be respected. The Apex batch service is exposed through the following invocation class: echosign_dev1.echosignactionbatch Parameters The following parameters must be specified to initialize a batch operation. A list of the agreement record ID's on which to perform the provided action. The action to perform, one of the following supported values: Remind Send Cancel Adobe Sign for Salesforce Developer Documentation 7

8 Delete Update Current user session ID. Only required for an update action type. Submitter user record, used to notify this user through an once the bulk processing completes. Usage Example User submitteruser = UserInfo.getUserId(); EchoSignActionBatch batch = new EchoSignActionBatch( agreementids, 'Remind', UserInfo.getSessionId(), submitteruser); syncprocessid = Database.executeBatch(batch, 5); Agreement Template Batch Takes in a SOQL query and an agreement template record ID. The query is executed to get a set of master object records, each of which is then run through the provided agreement template to generate an agreement record. This class implements the Salesforce Database.Batchable interface. It can process any number of records, which will be broken down into sets of 5 and processing each set as an individual transaction, which allows governor limits to be respected. The record types returned by the SOQL query must match the provided agreement template master object type. For each record, the agreement template service is invoked. The Apex batch service is exposed through the following invocation class: echosign_dev1.agreementtemplatebatch Parameters The following parameters must be specified to initialize a batch operation. SOQL query to execute, must contain the record ID as a selected field. Any other field is optional. Agreement template record ID, which will be used in conjunction with the master record ID to load an agreement. Usage Example String agreementtemplateid = [SELECT Id from echosign_dev1 Agreement_Template c where Name = 'Default Template']; String soqlquery = 'SELECT Id from Contact where Account.IsActive = true'; Adobe Sign for Salesforce Developer Documentation 8

9 AgreementTemplateBatch batch = new AgreementTemplateBatch(soqlQuery, agreementtemplateid); syncprocessid = Database.executeBatch(batch, 5); Agreement Template Service Batch Takes in a list of master object record ID's and the master object type, which are then queried, and each of which is then run through the provided agreement template to generate an agreement record. This class implements the Salesforce Database.Batchable interface. It can process any number of records, which will be broken down into sets of 5 and processing each set as an individual transaction, which allows governor limits to be respected. The master object type provided must match the provided agreement template master object type. For each record, the agreement template service is invoked. The Apex batch service is exposed through the following invocation class: echosign_dev1.agreementtemplateservicebatch Parameters The following parameters must be specified to initialize a batch operation. List of master record ID's. Master object name to query for the master records. Agreement template record ID, which will be used in conjunction with the master records to load an agreement. Usage Example String agreementtemplateid = [SELECT Id from echosign_dev1 Agreement_Template c where Name = 'Default Template']; AgreementTemplateBatch batch = new AgreementTemplateServiceBatch(new List<Id>{'01p HoMB'}, 'Contact', agreementtemplateid); syncprocessid = Database.executeBatch(batch, 5); Adobe Sign for Salesforce Developer Documentation 9

10 REST Services Agreement Template Service The agreement template service is exposed as a Salesforce REST web service by the managed package. This allows external systems outside of the Salesforce org to load agreements based on existing agreement templates. Please refer to the Creating REST APIs using Apex REST article for more details on how to access and invoke custom REST Apex services from within Salesforce. Invocations must provide a valid session ID for authentication and authorization. The web service is exposed from the following URL: d>?masterid=<master_id>&varname1=var Value1&varName2=varValue2 Note: The instance name will vary depending on your org instance. Template ID The last part of the URL is the ID of the agreement template record in the current Salesforce organization which should be used to load the agreement. This part of the URL is optional. If omitted, the agreement template marked as the default will be loaded. If the template ID is omitted and no default agreement template ID exists, an error will be returned. The template ID can be in the 15 or 18 character format. Master ID The masterid parameter specifies which master record should be used to load the agreement from the specific agreement template. This parameter is optional, but must be specified for any agreement template which specifies a master object type and references that master object in the template. The template ID can be in the 15 or 18 character format. Runtime Variables Any additional parameters are used as runtime variables, as name value pairs, used to populate any runtime variables specified in the agreement template. Result The REST web service returns a LoadResult object which contains the following fields: Adobe Sign for Salesforce Developer Documentation 10

11 agreementid : If the agreement load operation was successful, this contains the ID of the newly created agreement record. error : If there was any error during the loading of the agreement, this field will contain a detailed error message. Background Service The background service capability allows package consumers to invoke various actions on an agreement object by updating the Background Action (echosign_dev1 Background_Actions c) field to the corresponding value. Once the field value is changed from a blank value or another value to one of the following values, the action is kicked off from a trigger which is part of the esign managed package. Remind Send Cancel Delete Update All of the actions execute in an asynchronous future mode, so the status will be stored in the Error field on the agreement. Adobe Sign for Salesforce Developer Documentation 11

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

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

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

Administrator Guide. v Decisions on Demand, Inc. - All Rights Reserved Administrator Guide v1.14 2015 Decisions on Demand, Inc. - All Rights Reserved Table of Contents Table of Contents Introduction Pre-requisites Additional resources Document outline Architecture overview

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

Use Case: Publishing an orchestration as a REST API

Use Case: Publishing an orchestration as a REST API 1 Use Case: Publishing an orchestration as a REST API 2 High-level scenario Client sends a request via RESTful API to get a Patient profile by sending a Patient ID and receives a derived result back from

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

Adobe Sign for Microsoft Dynamics

Adobe Sign for Microsoft Dynamics for Microsoft Dynamics User Guide (v6) Last Updated: September 1, 2017 2017 Adobe Systems Incorporated. All rights reserved Table of Contents Overview... 3 Gaining Access to Adobe Sign... 3 Sending for

More information

Adobe Sign for MS Dynamics 365 CRM

Adobe Sign for MS Dynamics 365 CRM Adobe Sign for MS Dynamics 365 CRM User Guide v7 Last Updated: May 31, 2018 2018 Adobe Systems Incorporated. All rights reserved Contents Overview... 3 Gaining Access to Adobe Sign...4 Sending for Signature...

More information

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

TRAINING & CERTIFICATION. Salesforce.com Certified Force.com Advanced Developer Study Guide Salesforce.com Certified Force.com Advanced 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

SpringCM Release Notes. January 2018

SpringCM Release Notes. January 2018 SpringCM Release Notes January 2018 Contents Announcements... 3 Global Navigation header coming in 2018... 3 Redefining the Admin and User Experiences... 4 Workflows... 4 E-Signature Changes... 4 Enhancements...

More information

How to 2esign with AAR esign

How to  2esign with AAR esign How to email2esign with AAR esign Before Beginning: Your sending as email address must be the same as your AAR esign email address in order to properly authenticate, receive documents, start a session

More information

The data and time the envelope was voided.

The data and time the envelope was voided. Service Pack Notes Service Pack Notes for October 3, 2014 This document provides information about the updates deployed to the DocuSign Production environment as part of October 3, 2014 Service Pack. There

More information

Pepperdine esign. User Guide

Pepperdine esign. User Guide Pepperdine esign User Guide Last Updated: September 5, 2014 Contents 1 How to Sign a Document with esign 1 1.1 Initial Email........................................... 1 1.2 Signing a Document.......................................

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

Salesforce Developer Limits Quick Reference

Salesforce Developer Limits Quick Reference Salesforce Developer Limits Quick Reference Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

SpringCM. Release Notes December 2017

SpringCM. Release Notes December 2017 SpringCM Release Notes December 2017 Contents Enhancements... 3 Workflow Designer... 3 Reports (Closed Beta)... 3 Doc Launcher Forms... 4 Internationalization... 4 E-Signature... 5 Search... 5 Fixes...

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

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

Release Notes May 2017

Release Notes May 2017 Release Notes May 2017 About the Release Notes... 3 Release Overview... 3 Other Announcements... 4 SpringCM Login name change... 4 Workflow Step and Workflows Initiated Reports are being deprecated...

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

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

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

Adobe Sign for Microsoft Dynamics

Adobe Sign for Microsoft Dynamics Adobe Sign for Microsoft Dynamics Installation & Configuration Guide (v6) Last Updated: September 1, 2017 2017 Adobe Systems Incorporated. All rights reserved Table of Contents Overview... 3 Prerequisites...

More information

Idaho Form Simplicity Course Outline

Idaho Form Simplicity Course Outline Idaho Form Simplicity Course Outline Optimizing Your Workflow with Form Simplicity Leveraging Form Simplicity s Management Tools for the Broker Optimizing Your Workflow with Form Simplicity Setting Up

More information

Step by Step Instructions using esign from Zipform

Step by Step Instructions using esign from Zipform Step by Step Instructions using esign from Zipform 1 1. From the File tab menu in your Zipform transaction, click PRINT and select the forms you want to have signed. Be sure the documents you are printing

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

Visual Workflow Guide

Visual Workflow Guide Version 42.0, Spring 18 @salesforcedocs Last updated: March 8, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other

More information

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Version Control Version Number Date Changes 2.1 MAR 2017 New Template applied Anaplan 2017 i Document Version 2.1 1 Introduction... 1 1.1.

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

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 : 00063866

More information

This section covers new and updated features and functionality delivered in the Classic DocuSign Experience.

This section covers new and updated features and functionality delivered in the Classic DocuSign Experience. Service Pack Notes Service Pack Notes for November 6, 2015 (updated Nov 13, 2015) This document provides information about the updates deployed to the DocuSign Production environment as part of November

More information

Cloud Flow Designer Guide PREVIEW

Cloud Flow Designer Guide PREVIEW Version 44.0, Winter 19 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 announces

More information

SignNow 2.0 for Salesforce User Guide

SignNow 2.0 for Salesforce User Guide SignNow 2.0 for Salesforce User Guide Follow this guide to install, configure and use the SignNow application for your Salesforce organization REQUIREMENTS Salesforce account and working knowledge of Salesforce.

More information

Salesforce Limits Quick Reference Guide

Salesforce Limits Quick Reference Guide Salesforce Limits Quick Reference Guide Version 35.0, Winter 16 @salesforcedocs Last updated: December 3, 2015 Copyright 2000 2015 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

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson SedonaOffice Users Conference San Francisco, CA January 21 24, 2018 SedonaEmail Presented by: Jim Mayes Carolyn Johnson This Page Intentionally Left Blank Page 2 of 50 Table of Contents Overview... 4 What

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

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

Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform

Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform Data Virtualization Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform Introduction Caching is one of the most important capabilities of a Data Virtualization

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

Oracle Cloud Using the DocuSign Adapter. Release 17.3

Oracle Cloud Using the DocuSign Adapter. Release 17.3 Oracle Cloud Using the DocuSign Adapter Release 17.3 E72739-06 September 2017 Oracle Cloud Using the DocuSign Adapter, Release 17.3 E72739-06 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

SUN. Java Platform Enterprise Edition 6 Web Services Developer Certified Professional

SUN. Java Platform Enterprise Edition 6 Web Services Developer Certified Professional SUN 311-232 Java Platform Enterprise Edition 6 Web Services Developer Certified Professional Download Full Version : http://killexams.com/pass4sure/exam-detail/311-232 QUESTION: 109 What are three best

More information

Create OData API for Use With Salesforce Connect

Create OData API for Use With Salesforce Connect Create OData API for Use With Salesforce Connect The following steps describe how to set up and configure Jitterbit LIVE API Platform to expose data in an easy to consume, secure form so that Salesforce

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

Link to Download FlexiDoc Server preactivated

Link to Download FlexiDoc Server preactivated Link to Download FlexiDoc Server preactivated Download FlexiDoc Server with licence code FlexiDoc Server last edition of windows XP x32&64 For the product update process, see ⠌ Product version: 3.1.6.0

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 37.0, Summer 16 @salesforcedocs Last updated: July 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 42.0, Spring 18 @salesforcedocs Last updated: January 18, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

AuraPlayer Server Manager User Guide

AuraPlayer Server Manager User Guide AuraPlayer Server Manager User Guide AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 39.0, Spring 17 @salesforcedocs Last updated: February 16, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by:

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by: Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015 Prepared by: Table of Contents Module 5: Notification Center This module covers the email

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

1Z Oracle. Java Platform Enterprise Edition 6 Web Services Developer Certified Expert

1Z Oracle. Java Platform Enterprise Edition 6 Web Services Developer Certified Expert Oracle 1Z0-897 Java Platform Enterprise Edition 6 Web Services Developer Certified Expert Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-897 QUESTION: 113 Which three statements

More information

API Security Management SENTINET

API Security Management SENTINET API Security Management SENTINET Overview 1 Contents Introduction... 2 Security Models... 2 Authentication... 2 Authorization... 3 Security Mediation and Translation... 5 Bidirectional Security Management...

More information

vfire 9.8 Release Notes Version 1.5

vfire 9.8 Release Notes Version 1.5 9.8 Release Notes 9.8 Release Notes Table of Contents Version Details for 9.8 Release Notes 4 Copyright 5 About this Document 6 Intended Audience 6 Standards and Conventions 6 Introducing 9.8 7 Installation

More information

DESIGN PATTERN - INTERVIEW QUESTIONS

DESIGN PATTERN - INTERVIEW QUESTIONS DESIGN PATTERN - INTERVIEW QUESTIONS http://www.tutorialspoint.com/design_pattern/design_pattern_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Design Pattern Interview Questions

More information

1.1 Observer Pattern for Web Services

1.1 Observer Pattern for Web Services A pre-release (version 2004-07-26) of a section from a masters thesis by Tomas Johansson, tojo@kth.se 1/5 1.1 Observer Pattern for Web Services 1.1.1 Name and Source Observer pattern ( for Web Services

More information

Adobe Sign. User Guide

Adobe Sign. User Guide User Guide Copyright 2017 Adobe Systems Incorporated. All Rights Reserved. Last Updated: February 6, 2017 Table of Contents Welcome to!... 4 Personalize your Account... 5 Page by Page Overview... 7 Dashboard

More information

CCH esign User Guide December

CCH esign User Guide December CCH esign User Guide December 2013 123456 Copyright 2012, CCH INCORPORATED, a part of Wolters Kluwer. All rights reserved. Material in this publication may not be reproduced or transmitted, in any form

More information

Adobe Sign for Microsoft Dynamics

Adobe Sign for Microsoft Dynamics Adobe Sign for Microsoft Dynamics Installation & Configuration Guide (v5) Last Updated: March 16, 2017 2017 Adobe Systems Incorporated. All rights reserved Table of Contents Overview... 3 Prerequisites...

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 35.0, Winter 16 @salesforcedocs Last updated: December 17, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

DocVerify E-Signature Salesforce Application How to Create a New E-Signature Document. Versions 4.0 and above.

DocVerify E-Signature Salesforce Application How to Create a New E-Signature Document. Versions 4.0 and above. DocVerify E-Signature Salesforce Application How to Create a New E-Signature Document Versions 4.0 and above www.docverify.com Table of Contents Prerequisites... 3 Step 1 (E-Signature Tab):... 4 Step 2

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

Integrating AEM with Adobe Campaign

Integrating AEM with Adobe Campaign Integrating AEM with Adobe Campaign Venkat Vedagiri, AEM Technical Architect, Overview This whitepaper illustrates the Adobe Campaign 6.1 and Adobe Experience Manager 6.1/6.2 integration and best practices.

More information

Microsoft Dynamics Road To Repeatability Technical Deep Dive Server Extensibility in Microsoft Dynamics NAV. Vjekoslav Babić, MVP

Microsoft Dynamics Road To Repeatability Technical Deep Dive Server Extensibility in Microsoft Dynamics NAV. Vjekoslav Babić, MVP Microsoft Dynamics Road To Repeatability Technical Deep Dive Server Extensibility in Microsoft Dynamics NAV Vjekoslav Babić, MVP About the Presenter Vjekoslav Babić consultant, trainer, blogger, author

More information

Programming by Delegation

Programming by Delegation Chapter 2 a Programming by Delegation I. Scott MacKenzie a These slides are mostly based on the course text: Java by abstraction: A client-view approach (4 th edition), H. Roumani (2015). 1 Topics What

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Using the electronic Summary Disclosure of Financial Interests (esdfi) Form

Using the electronic Summary Disclosure of Financial Interests (esdfi) Form Using the electronic Summary Disclosure of Financial Interests (esdfi) Form The Office of Sponsored Programs has replaced the paper SDFI form with the online esdfi form. The esdfi is available at: http://w3.umassmed.edu/researchforms/sdfi

More information

F O U N D A T I O N. OPC Unified Architecture. Specification. Part 1: Concepts. Version 1.00

F O U N D A T I O N. OPC Unified Architecture. Specification. Part 1: Concepts. Version 1.00 F O U N D A T I O N Unified Architecture Specification Part 1: Concepts Version 1.00 July 28, 2006 Unified Architecture, Part 1 iii Release 1.00 CONTENTS Page FOREWORD... vi AGREEMENT OF USE... vi 1 Scope...

More information

EXAM - ADM-211. Administration Essentials for Experienced Admin. Buy Full Product.

EXAM - ADM-211. Administration Essentials for Experienced Admin. Buy Full Product. Salesforce EXAM - ADM-211 Administration Essentials for Experienced Admin Buy Full Product http://www.examskey.com/adm-211.html Examskey Salesforce ADM-211 exam demo product is here for you to test the

More information

Adobe Document Cloud esign Services

Adobe Document Cloud esign Services Adobe Document Cloud esign Services Integration for Microsoft Dynamics CRM 2015 Installation Guide Last Updated: July 16, 2015 Copyright 2015 Adobe Systems Incorporated. All rights reserved. Table of Contents

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

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Apex

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Apex i About the Tutorial Apex is a proprietary language developed by Salesforce.com. It is a strongly typed, objectoriented programming language that allows developers to execute flow and transaction control

More information

Forms Printer User Guide

Forms Printer User Guide Forms Printer User Guide for Dynamics GP 2015 Forms Printer Build Version: 14.00.149 System Requirements Microsoft Dynamics GP 2015 (desktop client, web client) Microsoft SQL Server 2005 or Higher Reporting

More information

icontact for Salesforce Installation Guide

icontact for Salesforce Installation Guide icontact for Salesforce Installation Guide For Salesforce Enterprise and Unlimited Editions Lightning Experience Version 2.3.4 Last updated October 2016 1 WARNING DO NOT SKIP ANY PART OF THIS GUIDE. EVERY

More information

Oracle Cloud Using the Adobe esign Adapter. Release 17.3

Oracle Cloud Using the Adobe esign Adapter. Release 17.3 Oracle Cloud Using the Adobe esign Adapter Release 17.3 E71395-07 September 2017 Oracle Cloud Using the Adobe esign Adapter, Release 17.3 E71395-07 Copyright 2016, 2017, Oracle and/or its affiliates. All

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

DocuSign Spring '16 Release Notes

DocuSign Spring '16 Release Notes DocuSign Spring '16 Release Notes Published March 17, 2016 UPDATE This document provides information about the updates deployed to the DocuSign Production environment on March 10, 2016 as part of the DocuSign

More information

The QMF Family Newsletter 1 st Quarter 2012 Edition

The QMF Family Newsletter 1 st Quarter 2012 Edition The QMF Family Newsletter 1 st Quarter 2012 Edition In this Issue QMF Classic perspective Latest Tip using the ISPF editor with QMF queries and procedures A message from the developers of QMF Want to see

More information

Connect Your Clouds with Force.com

Connect Your Clouds with Force.com Connect Your Clouds with Force.com Developer Track Jeff Douglas, Senior Technical Consultant, Appirio Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This

More information

Analytics Platform Setup Guide

Analytics Platform Setup Guide Salesforce, Spring 18 @salesforcedocs Last updated: February 22, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are

More information

FTPCONNECT USER, ADMINISTRATION AND DEVELOPER GUIDE

FTPCONNECT USER, ADMINISTRATION AND DEVELOPER GUIDE F FTPCONNECT USER, ADMINISTRATION AND DEVELOPER GUIDE Guide for setting up and using FTPConnect Abstract This document serves as both a guide and reference manual for installing FTPConnect, building processes

More information

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport, 10g Release 3 (10.3) Copyright 2007, 2008, Oracle and/or

More information

CDBG. Community Development Block Grant. Adobe Professional/Standard Versions 7 and up

CDBG. Community Development Block Grant. Adobe Professional/Standard Versions 7 and up CDBG Community Development Block Grant Participating Agencies Online Digital Signature Instructions Adobe Professional/Standard Versions 7 and up COMM UNITY DEVELOPM EN T COM M ISSION Digital Signature

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

Authorize.Net Magento 2.x Payment Module

Authorize.Net Magento 2.x Payment Module Authorize.Net Magento 2.x Payment Module User Guide Revision 1.0.1 September 17, 2018 Sep 17 2018 Authorize.Net Global Payment Management for Magento 2.x 1 Contents Document History... 4 1. Introduction...

More information

Database &.NET Basics: Take what you know about SQL and apply that to SOQL, SOSL, and DML in Apex.

Database &.NET Basics: Take what you know about SQL and apply that to SOQL, SOSL, and DML in Apex. Database &.NET Basics: Take what you know about SQL and apply that to SOQL, SOSL, and DML in Apex. Unit 1: Moving from SQL to SOQL SQL & SOQL Similar but Not the Same: The first thing to know is that although

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

New Dashboard - Help Screens

New Dashboard - Help Screens New Dashboard - Help Screens Welcome to the new Panacea Dashboard. This document aims to provide you with concise explanations of the menu system and features available to you as a Panacea user account

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

Marketo Integration Setup Guide

Marketo Integration Setup Guide 1 1 Table of Contents About the RingLead Integration with Marketo Getting Started Create the Marketo Webhook Considerations Response Mapping Configure Webhook Response Mapping Create the Marketo Program

More information

How to Login Transaction Management

How to Login Transaction Management How to Login Transaction Management 1. 2. 1. Open a web browser and go to https://www.bvonesource.com/wps/portal 2. Input User ID and Password, then press Login. In case forget your password, please press

More information

DQIAGILITY RELEASE NOTES. Subject: DQIAgility v7.1.30

DQIAGILITY RELEASE NOTES. Subject: DQIAgility v7.1.30 DQIAGILITY RELEASE NOTES Subject: DQIAgility v7.1.30 JULY 6, 2018 DQIAgility v7.1.30 New version available in downloads DQIAgility vr7.1.30 (20180418) 1. Majure writeback new option to use the trip_tbl.routename

More information

Visual Workflow Guide

Visual Workflow Guide Visual Workflow Guide Version 32.0, Winter 15 @salesforcedocs Last updated: January 3, 2015 Copyright 2000 2014 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.)

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) INTRODUCTION TO.NET Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In-

More information

DREAMFACTORY SOFTWARE INC. Snapshot User Guide. Product Usage and Best Practices Guide. By Sathyamoorthy Sridhar June 25, 2012

DREAMFACTORY SOFTWARE INC. Snapshot User Guide. Product Usage and Best Practices Guide. By Sathyamoorthy Sridhar June 25, 2012 DREAMFACTORY SOFTWARE INC Snapshot User Guide Product Usage and Best Practices Guide By Sathyamoorthy Sridhar June 25, 2012 This document describes Snapshot s features and provides the reader with notes

More information

02 Features of C#, Part 1. Jerry Nixon Microsoft Developer Evangelist Daren May President & Co-founder, Crank211

02 Features of C#, Part 1. Jerry Nixon Microsoft Developer Evangelist Daren May President & Co-founder, Crank211 02 Features of C#, Part 1 Jerry Nixon Microsoft Developer Evangelist Daren May President & Co-founder, Crank211 Module Overview Constructing Complex Types Object Interfaces and Inheritance Generics Constructing

More information

Apex REST API. SUMMER OF APIs. Sandeep Bhanot Developer Alex Toussaint Senior Product

Apex REST API. SUMMER OF APIs. Sandeep Bhanot Developer Alex Toussaint Senior Product SUMMER OF APIs Apex REST API Sandeep Bhanot Developer Evangelist @cloudysan Alex Toussaint Senior Product Manager @alextoussaint Got Twitter? @forcedotcom / #forcewebinar Facebook? facebook.com/forcedotcom

More information

16-Dec-10. Consider the following method:

16-Dec-10. Consider the following method: Boaz Kantor Introduction to Computer Science IDC Herzliya Exception is a class. Java comes with many, we can write our own. The Exception objects, along with some Java-specific structures, allow us to

More information