Cloud Sherpas. SALESFORCE Simplified Deployment Strategy Google Partner of the Year

Size: px
Start display at page:

Download "Cloud Sherpas. SALESFORCE Simplified Deployment Strategy. 2011-2012 Google Partner of the Year"

Transcription

1 SALESFORCE Simplified Deployment Strategy Google Partner of the Year

2 Table of Contents SOFTWARE DEVELOPMENT LIFECYCLE 1 Simple development 1 A Simplified Software Development Lifecycle 2 Complex development 2 A Complex Software Development Lifecycle 3 THIRD PARTY SYSTEMS 4 Configuration changes in third-party systems 4 Configuration changes in middleware 4 Configuration changes in Salesforce 4 CONFIGURATION MANAGEMENT 5 External ID generation Cloud Inc. All Rights Reserved

3 SOFTWARE DEVELOPMENT LIFECYCLE Salesforce.com produces documented best practices and a recommended Software Development Lifecycle known as the SDLC. The SDLC requires developers to work in one or more sandboxes, promoting code to production only after a minimum level of successful test coverage has been achieved. A sandbox is an identical copy to the Production environment and they are available in three types: Configuration only (configuration and code only), Development (configuration and code, with additional development capabilities), and Full (configuration, code, and a complete copy of the data from Production). Sandboxes can be refreshed periodically to ensure a recent, exact copy for development, testing, and training. A minimum of 75% code coverage by line is required to deploy code to production. All tests must complete with no errors, and proper test design dictates that they also pass one or more assertions to demonstrate that the code is functioning as intended. These Unit Testing requirements do not apply to sandboxes, but best practice requires that unit tests written in the sandbox should succeed in Production with minimal configuration, with the possible exception of minor changes to enable Production side-effect. For this reason, a multi-stage testing and deployment process involving a current sandbox is critical. SIMPLE DEVELOPMENT Most small-to-medium projects are developed using a simplified SDLC model, in which all developers work in the same Salesforce sandbox. This model is appropriate when team members are co-located and the development tasks are limited to one or two developers per task. In such projects the coordination overhead is relatively low. Change Management in this such model is performed in team meetings, via , and using an issue tracking system such as Atlassian JIRA or a properly configured Salesforce org. Change Tracking is performed by periodically saving a copy of the shared Salesforce configuration and code to a source code management system such as GitHub or Subversion, usually with a reference to the issue or bug (in Atlassian JIRA) that prompted the change. A Simplified Software Development Lifecycle 2013 Cloud Inc. All Rights Reserved

4 A SIMPLIFIED SOFTWARE DEVELOPMENT LIFECYCLE 1. Create a fresh sandbox for development. In many projects, the development sandbox is a copy of the Legacy production org. 2. Commit to source control (JIRA) when development checkpoints or milestones are reached. 3. Create a deployment org. 4. Document the steps required to deploy from Development to Deployment, and perform a test deployment. Perform unit testing and basic functional testing in the Deployment org. a. Manual steps include configuring Sites, Portals, and other elements that cannot be migrated using the Salesforce.com-provided tools. b. Automatic steps include deploying objects, translations, labels, and development items (Triggers and Visualforce pages) using the Salesforce.com-provided deployment tools. c. Semi-automatic steps include configuring objects and fields to be deleted during the deployment process. 5. Once the deployment process is properly documented and the configuration and development are confirmed to pass unit and functional tests, create a new FULL sandbox (complete copy of Production, with data). 6. Follow the process from step 4 to deploy from Dev to Test, and perform Unit, Functional, and User Acceptance testing. 7. Follow the process from step 4 to deploy from Dev to Production, and perform Unit, Functional, and User Acceptance testing. Steps 3-6 may be repeated as many times as necessary to ensure that the deployment process is fully documented and that all tests are passed. If additional development is required to pass any tests or to support the deployment process, it may be done in the Development sandbox or the Deployment sandbox, in which case the deployment sandbox becomes the new Development sandbox and a new Deployment sandbox is created. It is critical that any issues encountered or fixed during deployment testing be tracked in the change control and change tracking systems. COMPLEX DEVELOPMENT An example Software Development Lifecycle (SDLC) 2013 Cloud Inc. All Rights Reserved

5 A COMPLEX SOFTWARE DEVELOPMENT LIFECYCLE 1. Create a fresh sandbox to act as a staging and consolidation area for multiple development tracks. At the same time, create one or more development sandboxes to serve each development track. 2. Commit to source control (JIRA) when development checkpoints or milestones are reached. 3. Document the steps required to deploy from source control to Development, and configure unattended (repeatable) processes for deployment using a continuous integration tool and/or the Force.com Ant deployment tool. Perform unit testing and basic functional testing in the Development org. a. Manual deployment steps include configuring Sites, Portals, and other elements that cannot be migrated using the Salesforce.com-provided tools. b. Automatic deployment steps include deploying objects, translations, labels, and development items (Triggers and Visualforce pages) using the Salesforce.com-provided deployment tools. c. Semi-automatic deployment steps include configuring objects and fields to be deleted during the deployment process. 4. Once the deployment process is properly documented and the configuration and development are confirmed to pass unit and functional tests, create a new Deployment sandbox (complete copy of production, without data). 5. Follow the documented deployment process to deploy the configuration and development in Source Control to the Deployment sandbox, and perform Unit, Functional, and User Acceptance testing. 6. Once the deployment process is properly documented and the configuration and development are confirmed to pass unit and functional tests, create a new FULL sandbox (complete copy of production, with data). 7. Follow the process from step 5 to deploy from Source Control to a Test sandbox, and perform Unit, Functional, and User Acceptance testing. 8. Follow the process from step 5 to deploy from Source Control to Production, and perform Unit, Functional, and User Acceptance testing. Steps 2 and 3 may be repeated as many times as necessary to ensure that the deployment process is fully documented and that all tests are passed. If additional development is required to pass any tests or to support the deployment process, a new development sandbox can be created and the configuration and code from the Development sandbox may be deployed, at which point the new sandbox becomes a development track like the existing sandboxes. Steps 4-7 may be repeated as many times as necessary to ensure a clean and error-free deployment process Cloud Inc. All Rights Reserved

6 THIRD PARTY SYSTEMS The Salesforce Software Development Lifecycle (SDLC), as enforced by the Force.com Platform, is unique in that it not only encourages, but also mandates testing using an exact replica of the production system. As a result, there are fewer differences between Development, Test, and Production, resulting in more reliable tests and fewer surprises during and following deployment. When deploying and testing Salesforce changes that impact external or third-party systems, there are a number of factors that must be taken into account: CONFIGURATION CHANGES IN THIRD-PARTY SYSTEMS Whether testing occurs with a configuration sandbox (configuration only, no data) or a Full Sandbox (with a copy of the Production data), it is important to configure the third-party systems to connect to the sandbox and not to the production system. This means that the third-party development and test sandboxes must have: The ability to change the SOAP endpoint (if they connect directly to Salesforce) used to connect to Salesforce. Production systems use login.salesforce.com as the authentication endpoint, while all sandboxes use test.salesforce.com. The ability to function with test data (for configuration sandboxes) or the ability to function properly with production data (including real customer data) without accidentally sending s or otherwise taking actions that should not occur in a test environment. The ability to change the authentication credentials to those used by the test sandbox. CONFIGURATION CHANGES IN MIDDLEWARE Similar to the changes required for third-party systems, any integration or middleware tools must be modified to point to both the Salesforce sandbox and the third-party software sandbox. When deploying changes to middleware, it is important to have a deployment process that easily accommodates: Replicating existing integration orchestrations Changing the endpoints and credentials to point to Dev and Test systems Disabling side-effects (such as s) that should not be sent by test orchestrations Testing and debugging Replacing the running orchestration with the changed version, and updating endpoints as appropriate Most middleware tools and third-party systems are not as tightly bound as Salesforce, and so are easier to configure to support complex testing and deployment environments, but they are also usually more complex. CONFIGURATION CHANGES IN SALESFORCE Because Salesforce sandboxes are exact replicas of production Salesforce environments, with or without production data, a number of steps must be taken to ensure that tests are safe and accurate: Test data in Full Sandboxes may need to be masked to hide personally identifiable information. This may be performed manually, or with tools like Informatica Data Mask. Test data may need to be created in configuration-only sandboxes (only Full sandboxes come with a copy of the Production data). Third-party credentials and endpoints may need to be changed. This implies that credentials and endpoints should be stored in Salesforce Custom Settings as much as possible rather than hard-coded. Configuration data that is stored in Salesforce objects, such as Rules Engine configuration tables, may need to be replicated from Production to a development sandbox in order for even limited testing to occur. Outbound messaging endpoints may need to be changed to reference the correct third-party test systems or middleware Cloud Inc. All Rights Reserved

7 CONFIGURATION MANAGEMENT Most Salesforce implementations use a combination of static settings (hard-coded or stored in Custom Settings) and lookup tables (e.g. reseller lookup tables, product lists) as configuration for business logic. These often include: Mapping tables to perform complex conversions between input values and values stored in Salesforce Product and Price book tables Employee tables Production and Testing endpoints and credentials (usually stored in Custom Settings) And more Although in many cases (as with Product tables) these tables can and should be edited directly in production, there are circumstances when business logic changes frequently enough to require a complex data model stored in Custom Objects rather than hard-coded or stored in Customer Settings. Changes to these tables should be made first in a Full Sandbox and subjected to functional and unit testing before being migrated to Production. The recommended architecture permits records to be edited in a sandbox, and then migrated to production by migrating records and record hierarchies using an ETL tool. A configuration-management environment In this diagram, a Configuration sandbox is periodically refreshed with configuration and data from Production (step 1), and configuration changes are synchronized using Informatica Cloud. Once the configuration changes are finalized, the Training sandbox and Support sandbox are synchronized to ensure that the live rules are used for employee training and support. This model can be extended in the same way as the SDLC model to support dev/deploy/ test/train configurations as well Cloud Inc. All Rights Reserved

8 EXTERNAL ID GENERATION To support this deployment model, configuration tables must all contain an External ID designed to be unique within the Salesforce ecosystem. This allows configuration from one Salesforce org (i.e. a Sandbox) to be migrated to another Salesforce org (i.e. Production) safely without the risk of accidental duplication, and ensures that changes made to a record are copied over to the same record in the other org. This does not eliminate the need to ensure that changes being migrated from multiple Sandboxes to Production (or bi-directionally between a Sandbox and Production) are timed to avoid inconsistencies. For example: Changes should never be made first in Production and then synchronized to a Sandbox unless care is taken to ensure that the Sandbox is already identical to the Production org. Globally unique external IDs are created using a Trigger on each of the configuration objects: 1. The External ID field will not be a required field. 2. A trigger on each object will be used to populate this field after insert with a GUID composed of the organization ID and the record ID (Organization. ID + : + record.id). Using both the Organization ID and the Record ID ensures that records created in two orgs will never have the same ID (because they will have different Organization ID components) and that records created in the same org will never have the same ID (because they will have different record ID components). For consistency, it is recommended that External IDs created for this purpose be named consistently. Whether you re looking for a simple or complex development or a configuration with third-parties or within Salesforce, be sure to follow the appropriate strategy. To learn more about Salesforce deployment strategy, including salesforce.com s documented best practices and recommended software development cycle, visit Cloud online at or Cloud Inc. All Rights Reserved

Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company

Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company Brief Description Client Project Project type Type of activity Technology Status Salesforce integration company

More information

Development Lifecycle Guide

Development Lifecycle Guide Development Lifecycle Guide Enterprise Development on the Force.com Platform Version 34.0, Summer 15 @salesforcedocs Last updated: July 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved.

More information

Cloud MDM Person Accounts

Cloud MDM Person Accounts Cloud MDM Person Accounts 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without prior

More information

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce Table of Contents Before You Begin... 3 First Time Installing Access Hoover s... 3 Updating Access Hoover s... 3 Note

More information

Consolidating Multiple Salesforce Orgs: A Best Practice Guide. White Paper

Consolidating Multiple Salesforce Orgs: A Best Practice Guide. White Paper Consolidating Multiple Salesforce Orgs: A Best Practice Guide White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

White paper. Planning for SaaS Integration

White paper. Planning for SaaS Integration White paper Planning for SaaS Integration KEY PLANNING CONSIDERATIONS: Business Process Modeling Data Moderling and Mapping Data Ownership Integration Strategy Security Quality of Data (Data Cleansing)

More information

Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM?

Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM? Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM? Chapter 2 Introduction to Cloud Computing & Salesforce.com Cloud Computing - Overview What is Software-as-a-Service

More information

Salesforce Certified Force.com Developer Study Guide

Salesforce Certified Force.com Developer Study Guide Salesforce Certified Force.com Developer Study Guide Summer 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

DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015

DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 Copyright Copyright 2003-2015 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights

More information

Sage Integration Cloud Technology Whitepaper

Sage Integration Cloud Technology Whitepaper Sage Integration Cloud Technology Whitepaper Sage Christian Rubach July 21, 2016 Abstract Sage is committed to providing businesses around the world the information, insight and tools they need to succeed.

More information

Cloud to Cloud Integrations with Force.com. Sandeep Bhanot Developer Evangelist @cloudysan

Cloud to Cloud Integrations with Force.com. Sandeep Bhanot Developer Evangelist @cloudysan Cloud to Cloud Integrations with Force.com Sandeep Bhanot Developer Evangelist @cloudysan Safe Harbor Salesforce.com Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This

More information

SpringCM Integration Guide. for Salesforce

SpringCM Integration Guide. for Salesforce SpringCM Integration Guide for Salesforce January 2013 Introduction You are minutes away from fully integrating SpringCM into your Salesforce account. The SpringCM Open Cloud Connector will allow you to

More information

TRAINING & CERTIFICATION

TRAINING & CERTIFICATION Course Catalog The following provides a summary of our entire course catalog. This list changes with every new addition. Some titles may be under development. All titles and availability are subject to

More information

Appendix A: Case Studies

Appendix A: Case Studies Appendix A: Case Studies 1. CiscoServiceOne (CSOne) Project Salesforce Service Cloud Implementation Background Currently the majority of service operations for Cisco are handled through Oracle ebusiness

More information

How To Use Salesforce Identity Features

How To Use Salesforce Identity Features Identity Implementation Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

ISVforce Guide. Version 35.0, Winter 16. @salesforcedocs

ISVforce Guide. Version 35.0, Winter 16. @salesforcedocs ISVforce Guide Version 35.0, Winter 16 @salesforcedocs Last updated: vember 12, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Table of Contents. Copyright 2010-2015 Symphonic Source, Inc. All rights reserved. Salesforce is a registered trademark of salesforce.

Table of Contents. Copyright 2010-2015 Symphonic Source, Inc. All rights reserved. Salesforce is a registered trademark of salesforce. DupeCatcher is a real-time deduplication app designed specifically for Salesforce. It is a 100% APEX developed and deployed managed package, and is installed via the Salesforce AppExchange, eliminating

More information

Course Outline. Module 1: Introduction to Data Warehousing

Course Outline. Module 1: Introduction to Data Warehousing Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing solution and the highlevel considerations you must take into account

More information

SpringCM Integration Guide. for Salesforce

SpringCM Integration Guide. for Salesforce SpringCM Integration Guide for Salesforce September 2014 Introduction You are minutes away from fully integrating SpringCM into your Salesforce account. The SpringCM Open Cloud Connector will allow you

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Welcome to the Force.com Developer Day

Welcome to the Force.com Developer Day Welcome to the Force.com Developer Day Sign up for a Developer Edition account at: http://developer.force.com/join Nicola Lalla nlalla@saleforce.com n_lalla nlalla26 Safe Harbor Safe harbor statement under

More information

Enterprise Territory Management Implementation Guide

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

More information

Course 10777A: Implementing a Data Warehouse with Microsoft SQL Server 2012

Course 10777A: Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777A: Implementing a Data Warehouse with Microsoft SQL Server 2012 OVERVIEW About this Course Data warehousing is a solution organizations use to centralize business data for reporting and analysis.

More information

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide December 2014 Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide Doc version 1.0 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved.

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777A: Implementing a Data Warehouse with Microsoft SQL Server 2012 Length: Audience(s): 5 Days Level: 200 IT Professionals Technology: Microsoft SQL Server 2012 Type: Delivery Method: Course Instructor-led

More information

W H IT E P A P E R. Salesforce CRM Security Audit Guide

W H IT E P A P E R. Salesforce CRM Security Audit Guide W HITEPAPER Salesforce CRM Security Audit Guide Contents Introduction...1 Background...1 Security and Compliance Related Settings...1 Password Settings... 2 Audit and Recommendation... 2 Session Settings...

More information

WHITEPAPER. Integrating Salesforce.com Applications and Oracle e-business Suite

WHITEPAPER. Integrating Salesforce.com Applications and Oracle e-business Suite Integrating Salesforce.com Applications and Oracle e-business Suite Contents Introduction... 2 Integration: Easier Than Ever... 2 Multitenancy and Integration...3 Integration as a Service...3 Productized

More information

salesforce Integration with SAP Process Integration / SAP Process Orchestration

salesforce Integration with SAP Process Integration / SAP Process Orchestration salesforce Integration with SAP Process Integration / SAP Process Orchestration Scenario More and more companies are opting for software-as-a-service (SaaS) and managing a subset of their business processes

More information

Integrating Remedyforce

Integrating Remedyforce White Paper Integrating Remedyforce Robert Monton (BMC Software) Shikha Jaiswal (Persistent Systems) 06 March 2015 Welcome to the Getting Started with BMC Remedyforce Series Today s IT departments must

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777 : Implementing a Data Warehouse with Microsoft SQL Server 2012 Page 1 of 8 Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777: 4 days; Instructor-Led Introduction Data

More information

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

Increasing Business Efficiency and Agility for ATGbased. Systems. the business challenge: upgrading the development pipeline

Increasing Business Efficiency and Agility for ATGbased. Systems. the business challenge: upgrading the development pipeline Increasing Business Efficiency and Agility for ATGbased ecommerce Systems This case study follows a Tier 1 retailer migrating to an ATG-based ecommerce platform and upgrading its software development process

More information

Genius in Salesforce.com Pre- Installation Setup

Genius in Salesforce.com Pre- Installation Setup Genius in Salesforce.com Pre- Installation Setup Contents Introduction... 3 License Level... 3 Salesforce Profile Permission... 3 Administration Permissions:... 3 General User Permissions:... 4 Standard

More information

Salesforce Certified Data Architecture and Management Designer. Study Guide. Summer 16 TRAINING & CERTIFICATION

Salesforce Certified Data Architecture and Management Designer. Study Guide. Summer 16 TRAINING & CERTIFICATION Salesforce Certified Data Architecture and Management Designer Study Guide Summer 16 Contents SECTION 1. PURPOSE OF THIS STUDY GUIDE... 2 SECTION 2. ABOUT THE SALESFORCE CERTIFIED DATA ARCHITECTURE AND

More information

From Open Source to Open Platform for HCM Applications: Database.com throws down the gauntlet

From Open Source to Open Platform for HCM Applications: Database.com throws down the gauntlet From Open Source to Open Platform for HCM Applications: Database.com throws down the gauntlet On the 7th of December 2010, at the Dreamforce conference in San Francisco, Salesforce.com s Chief Executive

More information

Secure Coding SSL, SOAP and REST. Astha Singhal Product Security Engineer salesforce.com

Secure Coding SSL, SOAP and REST. Astha Singhal Product Security Engineer salesforce.com Secure Coding SSL, SOAP and REST Astha Singhal Product Security Engineer salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may

More information

Identity Implementation Guide

Identity Implementation Guide Identity Implementation Guide Version 37.0, Summer 16 @salesforcedocs Last updated: May 26, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Microsoft SharePoint Architectural Models

Microsoft SharePoint Architectural Models Microsoft SharePoint This topic is 1 of 5 in a series Introduction to Fundamental SharePoint This series is intended to raise awareness of the different fundamental architectural models through which SharePoint

More information

Enterprise Data Integration for Microsoft Dynamics CRM

Enterprise Data Integration for Microsoft Dynamics CRM Enterprise Data Integration for Microsoft Dynamics CRM Daniel Cai http://danielcai.blogspot.com About me Daniel Cai Developer @KingswaySoft a software company offering integration software and solutions

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Implementing a Data Warehouse with Microsoft SQL Server 2012 Module 1: Introduction to Data Warehousing Describe data warehouse concepts and architecture considerations Considerations for a Data Warehouse

More information

WHITE PAPER. Understanding Transporter Concepts

WHITE PAPER. Understanding Transporter Concepts WHITE PAPER Understanding Transporter Concepts Contents Introduction... 3 Definition of Terms... 4 Organization... 4 Administrator... 4 Organization User... 4 Guest User... 4 Folder Hierarchies... 5 Traditional

More information

Salesforce1 Mobile Security Guide

Salesforce1 Mobile Security Guide Salesforce1 Mobile Security Guide Version 1, 1 @salesforcedocs Last updated: December 8, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Setting Up Person Accounts

Setting Up Person Accounts Setting Up Person Accounts Salesforce, Summer 15 @salesforcedocs Last updated: June 30, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Top 5 reasons to move Lotus Notes apps to the cloud with Force.com

Top 5 reasons to move Lotus Notes apps to the cloud with Force.com Top 5 reasons to move Lotus Notes apps to the cloud with Force.com WHITE PAPER Contents 5 reasons to move Lotus Notes apps to Force.com... 1 1. Force.com apps provide a better user experience...1 2. Force.com

More information

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

salesforce Integration with SAP NetWeaver PI/PO

salesforce Integration with SAP NetWeaver PI/PO salesforce Integration with SAP NetWeaver PI/PO Scenario More and more companies are opting for software-as-a-service (SaaS) and managing a subset of their business processes and applications in the cloud.

More information

Creating a Public Knowledge Base with Salesforce Knowledge

Creating a Public Knowledge Base with Salesforce Knowledge Salesforce.com: Spring 13 Creating a Public Knowledge Base with Salesforce Knowledge Last updated: February 1, 2013 Copyright 2000 2013 salesforce.com, inc. All rights reserved. Salesforce.com is a registered

More information

Group-Based Policy for OpenStack

Group-Based Policy for OpenStack Group-Based Policy for OpenStack Introduction Over the past four years, OpenStack has grown from a simple open source project to a major community-based initiative including thousands of contributors in

More information

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Course Outline: Course: Implementing a Data with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This 5-day instructor-led course describes

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Force.com Sites Implementation Guide

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

More information

Examples with.net & PHP. Martin Haagen, QlikTech, Systems Manager; CRM @sehaagen

Examples with.net & PHP. Martin Haagen, QlikTech, Systems Manager; CRM @sehaagen Integrations using Web Services Examples with.net & PHP Martin Haagen, QlikTech, Systems Manager; CRM @sehaagen Martin Haagen Systems Manager; CRM @sehaagen Introduction Martin Haagen, QlikTech What We

More information

License Management and Support Guide

License Management and Support Guide License Management and Support Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 8, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Administrator's Guide Version 1.7. Administrators Guide

Administrator's Guide Version 1.7. Administrators Guide Administrator's Guide Version 1.7 1 Administrator's Guide Table of Contents Velocify for Salesforce Basic Overview The Velocify Guided Selling Process Actions Statuses Milestones Conversions Velocify Priority

More information

Virtualized Hadoop. A Dell Hadoop Whitepaper. By Joey Jablonski. A Dell Hadoop Whitepaper

Virtualized Hadoop. A Dell Hadoop Whitepaper. By Joey Jablonski. A Dell Hadoop Whitepaper Virtualized Hadoop A Dell Hadoop Whitepaper By Joey Jablonski A Dell Hadoop Whitepaper Introduction to Virtualized Hadoop Hadoop has become a standard within many organizations and data centers for its

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Single Sign-On Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: November 4, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Zendesk + Salesforce. Step-by-Step Guide to Integrating Zendesk and Salesforce. www.zendesk.com

Zendesk + Salesforce. Step-by-Step Guide to Integrating Zendesk and Salesforce. www.zendesk.com Zendesk + Salesforce Step-by-Step Guide to Integrating Zendesk and Salesforce www.zendesk.com 2 Table of Contents Introduction Getting Started Page 1 Step 1: Installing the Zendesk for Salesforce App in

More information

1 Building an Identity Management Business Case. 2 Agenda. 3 Business Challenges

1 Building an Identity Management Business Case. 2 Agenda. 3 Business Challenges 1 Building an Identity Management Business Case Managing the User Lifecycle Across On-Premises and Cloud-Hosted Applications Justifying investment in identity management automation. 2 Agenda Business challenges

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Single Sign-On Implementation Guide Salesforce, Summer 15 @salesforcedocs Last updated: July 1, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Match My Email. Set-Up Guide for Professional and Group Editions of Salesforce.com. MultiMatch Version 2.8.4

Match My Email. Set-Up Guide for Professional and Group Editions of Salesforce.com. MultiMatch Version 2.8.4 Match My Email Set-Up Guide for Professional and Group Editions of Salesforce.com MultiMatch Version 2.8.4 MultiMatch Set-Up Guide RAE Internet Inc. 2013 1 Copyright 2011-2013, RAE Internet Inc. (dba Match

More information

Force.com: Secure Cloud Development. Varun Badhwar Force.com Security Manager

Force.com: Secure Cloud Development. Varun Badhwar Force.com Security Manager Force.com: Secure Cloud Development Varun Badhwar Force.com Security Manager Safe Harbor Statement Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may

More information

White Paper. Enterprise Enabler and SharePoint 2010 Or Why SharePoint Needs Enterprise Enabler. Pamela Szabó Stone Bond Technologies

White Paper. Enterprise Enabler and SharePoint 2010 Or Why SharePoint Needs Enterprise Enabler. Pamela Szabó Stone Bond Technologies White Paper Enterprise Enabler and SharePoint 2010 Or Why SharePoint Needs Enterprise Enabler Pamela Szabó Stone Bond Technologies Copyright 2014 Stone Bond Technologies, L.P. All rights reserved. The

More information

Introduction to SAML

Introduction to SAML Introduction to THE LEADER IN API AND CLOUD GATEWAY TECHNOLOGY Introduction to Introduction In today s world of rapidly expanding and growing software development; organizations, enterprises and governments

More information

Course Details V1.0. Selinis Technologies Pvt Ltd. 2012, All Rights Reserved

Course Details V1.0. Selinis Technologies Pvt Ltd. 2012, All Rights Reserved Salesforce.com CRM Administration & Development Course Details V1.0 Selinis Pvt Ltd. 2012, All Rights Reserved Salesforce.com Administration Course Details V1.0 CRM Overview Introduction to CRM? Why CRM?

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide Release 8 This installation guide will walk you through how to install and deploy Conga Composer, including recommended settings for the application. Contact Support:

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

Bridge Development and Operations for faster delivery of applications

Bridge Development and Operations for faster delivery of applications Technical white paper Bridge Development and Operations for faster delivery of applications HP Continuous Delivery Automation software Table of contents Application lifecycle in the current business scenario

More information

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity:

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Automate and simplify Syncplicity user/group management tasks EMC Global Solutions Abstract Make the most of your existing EMC

More information

License Management App 2.1 Administration and User Guide

License Management App 2.1 Administration and User Guide Salesforce.com: Winter '11 License Management App 2.1 Administration and User Guide Last updated: November 30, 2010 Copyright 2000-2010 salesforce.com, inc. All rights reserved. Salesforce.com is a registered

More information

Force.com Migration Tool Guide

Force.com Migration Tool Guide Force.com Migration Tool Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 29, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost

5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost 5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost WHITE PAPER Contents Introduction... 2 Why choose cloud computing?... 2 1. Delivers faster

More information

I D C T E C H N O L O G Y S P O T L I G H T

I D C T E C H N O L O G Y S P O T L I G H T I D C T E C H N O L O G Y S P O T L I G H T U n i fied Cloud Management Increases IT- as- a - S e r vi c e Ag i l i t y November 2013 Adapted from VMware Unifies Cloud Management Portfolio with a Focus

More information

Salesforce: MFS-S2S Extension

Salesforce: MFS-S2S Extension Salesforce: MFS-S2S Extension Introduction: Data migration in Salesforce is certainly a sensitive thing and it can be achieved in various ways using various Data Migration tools. There is another mode

More information

How To Integrate With Salesforce

How To Integrate With Salesforce Integration Patterns and Practices Version 34.0, Summer 15 @salesforcedocs Last updated: June 30, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Parasoft and Skytap Deliver 24/7 Access to Complete Test Environments

Parasoft and Skytap Deliver 24/7 Access to Complete Test Environments Parasoft and Skytap Deliver 24/7 Access to Complete Test Environments The ability to accurately assess the risk of a release candidate for today's composite applications is becoming a tall order. You have

More information

NetSuite Certified SuiteCloud Developer Exam. Study Guide: April 7, 2016

NetSuite Certified SuiteCloud Developer Exam. Study Guide: April 7, 2016 1 NetSuite Certified SuiteCloud Developer Exam Study Guide: April 7, 2016 2 Contents About the NetSuite Developer Exam... 2 Description of a Qualified Candidate:... 3 Maintaining Your Certification...

More information

Entitlement Management Implementation Guide

Entitlement Management Implementation Guide Entitlement Management Implementation Guide Salesforce, Summer 15 @salesforcedocs Last updated: July 13, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

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 29, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Build Your Mobile Strategy Not Just Your Mobile Apps

Build Your Mobile Strategy Not Just Your Mobile Apps Mobile Cloud Service Build Your Mobile Strategy Not Just Your Mobile Apps Copyright 2015 Oracle Corporation. All Rights Reserved. What is is it? Oracle Mobile Cloud Service provides everything you need

More information

Requirements Management

Requirements Management MS Excel / Word, and ReqIF Export / Import and Round-trip Medical & Automotive Requirements and Risk (FMEA, IEC 62304, IEC 61508, ISO 26262...) Enterprise Architect and Atlassian JIRA integration Requirements

More information

Table of Contents. 1 Executive Summary... 2 2. SOA Overview... 3 2.1 Technology... 4 2.2 Processes and Governance... 8

Table of Contents. 1 Executive Summary... 2 2. SOA Overview... 3 2.1 Technology... 4 2.2 Processes and Governance... 8 Table of Contents 1 Executive Summary... 2 2. SOA Overview... 3 2.1 Technology... 4 2.2 Processes and Governance... 8 3 SOA in Verizon The IT Workbench Platform... 10 3.1 Technology... 10 3.2 Processes

More information

Getting Started with Clearlogin A Guide for Administrators V1.01

Getting Started with Clearlogin A Guide for Administrators V1.01 Getting Started with Clearlogin A Guide for Administrators V1.01 Clearlogin makes secure access to the cloud easy for users, administrators, and developers. The following guide explains the functionality

More information

5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost

5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost 5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost Contents Introduction... 2 Why Choose Cloud Computing?... 2 1. Delivers Faster Time to

More information

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications White Paper Table of Contents Overview...3 Replication Types Supported...3 Set-up &

More information

SpringCM Troubleshooting Guide for Salesforce

SpringCM Troubleshooting Guide for Salesforce SpringCM Troubleshooting Guide for Salesforce July 2013 TABLE OF CONTENTS FAQS:... 3 WHY DID I NOT RECEIVE A SPRINGCM ACTIVATION EMAIL?... 3 WHY DON T MY SALESFORCE USERS HAVE ACCESS TO SPRINGCM?... 3

More information

Entitlement Management Implementation Guide

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

More information

Highmark Unifies Identity Data With Oracle Virtual Directory. An Oracle White Paper January 2009

Highmark Unifies Identity Data With Oracle Virtual Directory. An Oracle White Paper January 2009 Highmark Unifies Identity Data With Oracle Virtual Directory An Oracle White Paper January 2009 Highmark Unifies Identity Data With Oracle Virtual Directory Executive Summary... 3 The Challenge: A Single

More information

Cisco Intercloud Fabric Security Features: Technical Overview

Cisco Intercloud Fabric Security Features: Technical Overview White Paper Cisco Intercloud Fabric Security Features: Technical Overview White Paper May 2015 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

IBM WebSphere Cast Iron Cloud Integration for JD Edwards EnterpriseOne

IBM WebSphere Cast Iron Cloud Integration for JD Edwards EnterpriseOne IBM WebSphere Cast Iron Cloud Integration for JD Edwards EnterpriseOne Integrate JD Edwards EnterpriseOne in days Highlights Uses a configuration, not coding approach which helps reduce implementation

More information

White Paper on the Use of Team Calendars with the JIRA Issue Tracking System and Confluence Collaboration Tools for the xlpr Project

White Paper on the Use of Team Calendars with the JIRA Issue Tracking System and Confluence Collaboration Tools for the xlpr Project Page 1 of 11 White Paper on the Use of Team Calendars with the JIRA Issue Tracking System and Confluence Collaboration Tools for the xlpr Project by P. T. Williams, H. B. Klasky, and B. R. Bass Executive

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Version 27.0: Spring 13 Single Sign-On Implementation Guide Last updated: February 1, 2013 Copyright 2000 2013 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com,

More information

WHITEPAPER SECUREAUTH AND CAC HSPD-12 AUTHENTICATION TO WEB, NETWORK, AND CLOUD RESOURCES

WHITEPAPER SECUREAUTH AND CAC HSPD-12 AUTHENTICATION TO WEB, NETWORK, AND CLOUD RESOURCES WHITEPAPER SECUREAUTH AND CAC HSPD-12 AUTHENTICATION TO WEB, NETWORK, AND CLOUD RESOURCES Executive Overview U.S. Federal mandates dictates that personal with defense related initiatives must prove access

More information

Disaster Recovery White Paper

Disaster Recovery White Paper Introduction Remote access plays a critical role in successfully executing a business recovery plan both in terms of providing access for existing remote users and accommodating the potential increase

More information

SmartConnect User Credentials 2012

SmartConnect User Credentials 2012 User Credentials Used When The SmartConnect client connects to Microsoft Dynamics GP When connecting to the Microsoft Dynamics GP the credentials of the current AD user are used to connect to Dynamics

More information

Best Practices in Leveraging a Staging Area for SaaS-to-Enterprise Integration

Best Practices in Leveraging a Staging Area for SaaS-to-Enterprise Integration white paper Best Practices in Leveraging a Staging Area for SaaS-to-Enterprise Integration David S. Linthicum Introduction SaaS-to-enterprise integration requires that a number of architectural calls are

More information

Implementing Software- Defined Security with CloudPassage Halo

Implementing Software- Defined Security with CloudPassage Halo WHITE PAPER Implementing Software- Defined Security with CloudPassage Halo Introduction... 2 Implementing Software-Defined Security w/cloudpassage Halo... 3 Abstraction... 3 Automation... 4 Orchestration...

More information