Salesforce ID of the Feature record is stored in the Product Option record to maintain the relationship.

Size: px
Start display at page:

Download "Salesforce ID of the Feature record is stored in the Product Option record to maintain the relationship."

Transcription

1 01 INTRODUCTION Welcome to the first edition of Manual Migration Training. In this video we ll take a high-level look at the steps necessary to perform a successful migration of SteelBrick content. In later videos we ll investigate each step in detail so that you will be prepared to perform migrations as part of your implementation process. These videos are designed for learners who are familiar with SteelBrick functionality and the relationships between SteelBrick custom objects. Also, manual migration requires the use of Salesforce Change Sets, as well as a data loading tool such as dataloader.io. These tools and concepts have their own dedicated training resources should you need them. With that disclaimer, lets move on. For our training example we imagine that SteelBrick was installed into Production and the Sandbox was then immediately refreshed. The project was implemented in the Sandbox, data and metadata was cleaned up, and the customer has signed off on user acceptance testing. We are now ready to migrate our work into Production. Migration is the process of moving Sandbox data into a Production environment. This includes moving both data and metadata related to the SteelBrick Implementation. Example metadata would be custom fields, page layouts, and field sets. Example data would be records for every Quote Template. The migration process can be represented by three, high-level stages. First, we will prepare the Sandbox data so it contains information that facilitates the migration process, and then export Sandbox data. Second, we will move metadata from Sandbox into the Production environment. Third, we will import Sandbox data into Production and verify that Production functions as expected. Each stage involves many nuances specific to SteelBrick implementations, which we will investigate in the following videos. Occasionally we ll reference a migration cheat sheet that includes a summary of the concepts seen during this training, as well as granular details that will be helpful in future migrations. You can find this cheat sheet in the class materials. We re now ready to move to our next video, where we ll learn how to prepare Sandbox data for deployment. 02 PREPARING SANDBOX DATA The first stage in the migration process is to prepare Sandbox data so it can be successfully imported into Production, maintaining all relationships between related records. For example, imagine we need to migrate Features and Product Option records. As we know, Product Options have a lookup field which references a Feature record. The

2 Salesforce ID of the Feature record is stored in the Product Option record to maintain the relationship. As the data loader tool inserts Feature records into Production, the records will be given new Salesforce IDs. This presents a problem when inserting Product Option records. These records still contain the Salesforce IDs for the Sandbox versions of Features, IDs that do not exist in Production! This results in an orphaned record, which will cause any number of issues. To successfully migrate we must ensure that as Product Option records are created, they reference the new Feature Salesforce IDs. This is done with the help of External IDs that we create prior to migrating data. External IDs are text fields created on every object we intend to migrate; each record will have a unique value. For example Feature records will be assigned FE0001, FE0002, and so on. When we export Product Option data, we ll include a column that contains the External ID value for the related Feature record. As the data loader tool creates Product Option records, it will query the Production database to find the Salesforce ID of the Feature record based on the known External ID. It will then populate the lookup field on the Product Option record using the found Salesforce ID, effectively recreating the original relationship. As admins, we must create and populate an External ID field for nearly every object we intend to migrate. This is done in four steps. First, create the External ID field for an object. Second, export the object s records. Third, use Excel to generate values for the External ID. Fourth, upsert the modified data. For our example we ll create an External ID field for the Feature object. External ID will be a text field with a length long enough to support unique values for every record. We will check External ID before clicking next, but we will not check the option to make unique since this could present problems with the Clone with Related action on the Product object. When a Product is cloned the related Features are cloned too. Cloned Features will have the same External ID as the original records, causing the subsequent Save to fail. Now that the Feature object contains the External ID field, we will export all Feature records in CSV format. It is best practice to only export the id and External ID fields so as to avoid inadvertent changes to the data when we later upsert the modified data. Open the CSV file in Excel and type a value for the first External ID. Our recommendation is to abbreviate the object name, followed by a four-digit number starting at This convention can help identify what object the External ID is referencing, even without context. Dragging the cell corner will cause Excel to increment the numeric portion of the cell, giving each record a unique value.

3 Finally, after saving our changes we can upsert the data back into Sandbox. The Features object is now prepared for migration. We must now repeat the process for all other objects that we intend to migrate, with the possible exception of Products. In the next section we ll investigate options for preparing Product data to ensure a successful migration. 03 PREPARING PRODUCTS Products are prepared for migration in various ways depending on the specifics of the implementation. For example, products may not yet exist in Production, but oftentimes they do. In this section we ll discuss approaches for preparing Product data for migration under differing business scenarios. If products exist in Production, the ideal scenario is to refresh Sandbox before starting a project so all products are present and accounted for. This results in identical Salesforce IDs, which greatly simplifies migration if no additional products are created as part of the implementation. When SteelBrick records are moved into Production, any relationships to Products automatically remain intact. In this scenario there is no need for an External ID on the Product object. Some implementations require new products to be created in the Sandbox after a refresh. This may occur if products are created to act as bundle containers, or when Production has no products to start with. Either way, we must have some method of uniquely identifying each record to reestablish relationships between related records. Sometimes the customer will have a pre-existing External ID field, in which case we can simply use that. If they do not already have and External ID field, we can create one just as we did for the SteelBrick objects. The most challenging scenario is when there is nothing similar between the products in Production and the products in Sandbox. This might occur when Sandbox is not refreshed before beginning the project, and products have been created separately in both Sandbox and Production. If the Product Names are not unique, you may have to work with the customer to establish an External ID that is carefully populated in both Production and Sandbox environments. This scenario requires more effort; thankfully it is the exception. Whatever the scenario, we can only proceed if we are certain that products can be uniquely identified through either Salesforce IDs or External IDs, at which point all Sandbox data will be ready to migrate. The next step is to export the Sandbox data, which is the topic of the following section. 04 EXPORTING SANDBOX DATA

4 After Sandbox data has been prepared with External IDs, we can export that data for later importing into Production. We will eventually export all SteelBrick records created as part of the implementation, as well as Product records and Price Book entries if necessary. This process is fairly straightforward, with just a few nuances to account for our External IDs. We ll demonstrate the steps for exporting Product Options because this object references multiple other objects with which we need to maintain relationships. As we learned in an earlier video, the External ID field is used to reestablish relationships between related objects. For example, imagine Features have already been imported. They will have new Salesforce IDs and our known External IDs. As the data loader creates Product Option records, it will lookup the new Salesforce ID of the related Feature by using the External ID field. Our exported Product Option records must include the External IDs of the related Features. We must also include External ID columns for the other related objects of Configured SKU, Optional SKU, and Discount Schedule. The dataloader.io tool makes this process easy since related objects automatically appear in the export interface. After clicking the Select All checkbox, we ll expand the first related object so we can check the External ID field. We ll select the External ID fields for the remaining related objects as well. After downloading, a quick look at the CSV file will show that the External ID fields appear to the far right. We must repeat the export process for many other objects, some which have their own related objects. See the migration cheat sheet for a full list of objects commonly included in the migration process, along with their related objects needing External ID fields. Note that some implementations may not utilize all SteelBrick functionality. Those unused components may be skipped. Once we ve exported all records from the required objects we can move to the next stage of the migration process, which is to prepare Production so it is ready to receive Sandbox data. This is the topic of our next video. 05 PREPARING PRODUCTION Before any records can be migrated there are a few updates we must make to Production. For one, Production must be updated to account for the new External ID fields we created to prepare the Sandbox data. We must also move the custom fields we created during the implementation. At the same time we ll move other metadata such as workflow rules and page layouts. Lastly, we ll make a few manual changes in Production to account for new picklist values and Price Books.

5 To move metadata we ll create a Change Set in Sandbox. Creating a Change Set for SteelBrick metadata is accomplished in the same manner as any other Change Set. The most challenging aspect is in selecting every last piece of metadata created during the implementation. This is made easier by maintaining good documentation as the project progresses. Use this documentation as a checklist while assembling the Change Set. Commonly selected metadata includes custom fields, custom labels, workflow rules, field updates, approval processes, field sets, and page layouts. Once all metadata is selected, make profile selections as needed then upload the Change Set to Production. Once in Production it s best practice to validate the Change Set before deployment. After the Change Set successfully deploys, there are still a few manual changes we must eventually make to the Production environment. One change is to update the picklist values to match any that were modified in the Sandbox environment. Again, use documentation as a checklist during this process. Otherwise, carefully compare Production with Sandbox side-by-side, accounting for the commonly effected picklists such as the Tested Field on Rule Conditions. Lastly, we ll manually create Price Books to match those in Sandbox. Thankfully this is a relatively quick task. Once done, we will have a Production environment ready to import Sandbox data. This import step is the topic of our next section. 06 IMPORTING RECORDS INTO PRODUCTION At this point in the migration process our Production environment is ready to receive the Sandbox data we ve already exported. Importing the data must be done very carefully, as we must take steps to ensure that relationships between related objects are maintained. There is a specific sequence in which we will import Sandbox data to account for dependencies. For example, we absolutely must import Feature records before Product Option records, since each Product Option record references a Feature record. Reversing the order results in a reference to something that doesn t yet exist, which leads to potential issues. The migration cheat sheet defines the recommended order in which we should import Sandbox data. Use it as a checklist to track migration progress. Note that we will use the upsert operation when importing Products, and the insert operation for everything else. As we learned earlier, as the data loader tool creates Product Option records in Production, it will not use any Salesforce IDs found in the import file, as those IDs reference the Sandbox versions of related records, which are totally useless in the Production environment. Instead, the data loader tool will use our prepared External IDs as a means to lookup the new Salesforce IDs of the previously imported records.

6 This process requires a tool that can perform lookups while inserting new records. For our example we will use dataloader.io to demonstrate the exact steps necessary to successfully insert Product Option records. At this point we ve used dataloader.io to log into our Production environment. We ll start a new Import task, leaving the operation as Insert. We ll choose the Product Option object, and then click Next. Click Upload CSV to locate the previously exported Product Option file. Once found, we are brought to the most critical step in the import process. Here we determine how columns from our source data are mapped to fields in Production. For the most part, dataloader.io matches fields well. However there are very important changes we must make before continuing. For example, if we scroll down a bit we see that the data in the Feature column will be placed into the Feature field. This is a problem because the data contains a Salesforce ID that is only relevant to Sandbox. It must not be placed into the Production field, therefore we will click the trash icon to remove the mapping. This leads us to a second issue. The Feature field still needs data from somewhere so that the Product Option knows which Feature it s related to. Thankfully we know which Feature it s related to because of our External IDs. If we scroll to the bottom of the field mapping list we ll see the External ID columns we included as part of our Sandbox export. Here we find that this sample Product Option is related to the Feature with an External ID of FE0006. We ll tell the tool to lookup the Production Salesforce ID of Feature FE0006, and place that found Salesforce ID into the Feature field of this new Product Option record, effectively reestablishing the relationship. We set this up by clicking Select in the External ID row for the Feature object. Choose the unassigned Feature field from the popup, then check the Lookup via checkbox. Finally, we ll choose the ExternalID option from the drop-down menu to finish mapping the Feature field. If we forget to check the Lookup checkbox, dataloader.io will attempt to use the literal value of FE0006 in the Feature field, which of course is not a valid Salesforce ID, and will cause the insert to fail. We now must correctly map the remaining related fields using the same method of trashing the default mapping, then creating a new mapping based on a lookup. Once all related fields have been remapped, we can click Next, and then Save and Run to begin

7 importing records. After a few minutes, our Product Option records will have been moved, and we can continue importing records for the next object in the recommended sequence. As a side note, the process of moving Product data is very similar, except we re more likely to use the upsert operation since often Products already exist in Production. This requires us to identify which field will act as the external ID, so existing records can be matched with incoming data. The chosen field will depend on various factors, as discussed in the Preparing Products section of this class. In a real migration, we would follow the recommended sequence of import objects until all data is moved. Once completed we will spot-check our work by generating a quote in a test Opportunity. Verify rules fire as expected and that an output document can be generated successfully. Assuming no issues are discovered, we can consider our job complete. With that, we ve seen the entire process of manual migration between a Sandbox and Production environment. We at the training team hope you now feel prepared to perform your first migration. Please let us know if you have any questions or comments related to the material by sending us an at training@steelbrick.com. Thank you for watching.

Moover Salesforce CPQ Reference Data Deployment Guide

Moover Salesforce CPQ Reference Data Deployment Guide Moover Reference Data Deployment Guide Copyright 2018 Prodly, Inc. All rights reserved. Prodly and Moover are trademarks of Prodly, Inc., as are other names and marks. and other names are trademarks of

More information

Moover Salesforce CPQ Data Migration Guide

Moover Salesforce CPQ Data Migration Guide Moover Salesforce CPQ Data Migration Guide Table of Contents Overview 1 Data Migration 2 Deployment Considerations 2 Deployment Sequence 2 Salesforce CPQ Objects and Data Types 3 Template Access 6 Schema

More information

Set Up and Maintain Sales Tools

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

More information

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

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

More information

Salesforce Certified Force.com Developer Study Guide

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

More information

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

Moover Salesforce CPQ Reference Data Deployment Guide

Moover Salesforce CPQ Reference Data Deployment Guide Moover Reference Data Deployment Guide Copyright 2019 Prodly, Inc. All rights reserved. Prodly and Moover are trademarks of Prodly, Inc., as are other names and marks. and other names are trademarks of

More information

Moover Salesforce CPQ Data Migration Guide

Moover Salesforce CPQ Data Migration Guide Moover Data Migration Guide Table of Contents Overview 1 Data Migration 2 Deployment Considerations 2 Deployment Sequence Checklist 3 Pre-Deployment 3 Deployment 3 Post-Deployment 4 Objects and Data Types

More information

Publications Database

Publications Database Getting Started Guide Publications Database To w a r d s a S u s t a i n a b l e A s i a - P a c i f i c!1 Table of Contents Introduction 3 Conventions 3 Getting Started 4 Suggesting a Topic 11 Appendix

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

The Salesforce Migration Playbook

The Salesforce Migration Playbook The Salesforce Migration Playbook By Capstorm Table of Contents Salesforce Migration Overview...1 Step 1: Extract Data Into A Staging Environment...3 Step 2: Transform Data Into the Target Salesforce Schema...5

More information

FLIR Tools+ and Report Studio

FLIR Tools+ and Report Studio Creating and Processing Word Templates http://www.infraredtraining.com 09-20-2017 2017, Infrared Training Center. 1 FLIR Report Studio Overview Report Studio is a Microsoft Word Reporting module that is

More information

USER GUIDE for Salesforce

USER GUIDE for Salesforce for Salesforce USER GUIDE Contents 3 Introduction to Backupify 5 Quick-start guide 6 Administration 6 Logging in 6 Administrative dashboard 7 General settings 8 Account settings 9 Add services 9 Contact

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6 IBM Atlas Policy Distribution Administrators Guide: IER Connector for IBM Atlas Suite v6 IBM Atlas Policy Distribution: IER Connector This edition applies to version 6.0 of IBM Atlas Suite (product numbers

More information

Basic Service Request Management. BMC Remedyforce Winter 11

Basic Service Request Management. BMC Remedyforce Winter 11 Winter 11 Virginia Leandro 01 March 2012 Table of Contents Service Request Management 3 Preparation 4 Accounts (Vendors and Service Providers) 5 Users/Profiles 6 Business Hours (Service Hours) 7 Default

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

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

Using Report Builder in Total Grant Solution (TGS)

Using Report Builder in Total Grant Solution (TGS) Using Report Builder in Total Grant Solution (TGS) How to set up a new report (Note: The steps on pages 1 & 2 only need to be done the first time you create a new report; skip to the second step on page

More information

Sample A2J Guided Interview & HotDocs Template Exercise

Sample A2J Guided Interview & HotDocs Template Exercise Sample A2J Guided Interview & HotDocs Template Exercise HotDocs Template We are going to create this template in HotDocs. You can find the Word document to start with here. Figure 1: Form to automate Converting

More information

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced INTRODUCTION This guide will go over some of the more advanced topics involved with setting up your database. Every topic discussed in this guide is completely optional for your database none of the following

More information

Unit 8: Working with Actions

Unit 8: Working with Actions Unit 8: Working with Actions Questions Covered What are actions? How are actions triggered? Where can we access actions to create or edit them? How do we automate the sending of email notifications? How

More information

Workforce Management Classified Training. Topic Pages. Step by Step. Bob Martin

Workforce Management Classified Training. Topic Pages. Step by Step. Bob Martin Topic Pages Step by Step Bob Martin 23 March 2012 Topic Pages 1. Navigate to the Website and log in Open your web browser and enter the address, http://classifiedtraining.lausd.net/. Do not enter www.classifiedtraining.net

More information

Administration Essentials for New Admins (Managing Data) Exercise Guide

Administration Essentials for New Admins (Managing Data) Exercise Guide Administration Essentials for New Admins (Managing Data) Exercise Guide Table of Contents 6-1: Prepare the Import File... 1 6-2: Import Leads Using Wizard... 3 6-3: Export Using Data Loader... 4 6-4:

More information

Web Site Documentation Eugene School District 4J

Web Site Documentation Eugene School District 4J Eugene School District 4J Using this Documentation Revision 1.3 1. Instruction step-by-step. The left column contains the simple how-to steps. Over here on the right is the color commentary offered to

More information

Product Parts Finder for Magento 2

Product Parts Finder for Magento 2 Product Parts Finder for Magento 2 Magento Extension User Guide Official extension page: Product Parts Finder for Magento 2 Page 1 Table of contents: 1. Finder Creation......3 2. General Finder Options..4

More information

QUICK START GUIDE PLACING AN INDIVIDUAL ORDER STEP 2 STEP 3 STEP 4 PLACING AN INDIVIDUAL ORDER PAGE 1

QUICK START GUIDE PLACING AN INDIVIDUAL ORDER STEP 2 STEP 3 STEP 4 PLACING AN INDIVIDUAL ORDER PAGE 1 QUICK START GUIDE PLACING AN INDIVIDUAL ORDER PLACING AN INDIVIDUAL ORDER PAGE 1 1. Go to the store and SIGN in. 2. FRONT SIDE SELECTION To view templates, click on the store button. Choose from the categories

More information

Senior Technical Specialist, IBM. Charles Price (Primary) Advisory Software Engineer, IBM. Matthias Falkenberg DX Development Team Lead, IBM

Senior Technical Specialist, IBM. Charles Price (Primary) Advisory Software Engineer, IBM. Matthias Falkenberg DX Development Team Lead, IBM Session ID: DDX-15 Session Title: Building Rich, OmniChannel Digital Experiences for Enterprise, Social and Storefront Commerce Data with Digital Data Connector Part 2: Social Rendering Instructors: Bryan

More information

Shopping Cart: Queries, Personalizations, Filters, and Settings

Shopping Cart: Queries, Personalizations, Filters, and Settings Shopping Cart: Queries, Personalizations, Filters, and Settings on the Shopping Cart Home Page Use this Job Aid to: Learn how to organize the Shopping Cart home page so that it is easier to use. BEFORE

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

Managing GOTV Data on Election Day

Managing GOTV Data on Election Day Managing GOTV Data on Election Day This tutorial has been created to explain how we manage GOTV data on Election Day. We will be using calling services on Election Day in an attempt to get people out to

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

Convert Your JavaScript Buttons for Lightning Experience

Convert Your JavaScript Buttons for Lightning Experience Convert Your JavaScript Buttons for Lightning Experience Version 1, 1 @salesforcedocs Last updated: January 8, 2019 Copyright 2000 2019 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

NPSP Advanced User's Guide to Importing Data

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

More information

Getting Started with SSI Web v3 A 45-Minute Hands-On Tour

Getting Started with SSI Web v3 A 45-Minute Hands-On Tour Getting Started with SSI Web v3 A 45-Minute Hands-On Tour What is SSI Web? SSI Web is a software system for creating Web-based questionnaires. These questionnaires can include standard survey questions,

More information

Syncing Between Pardot and Salesforce

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

More information

Lightning Knowledge Guide

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

More information

MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i

MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i Tutorial 3: Version 6 Graphic Concepts Tutorial 3: Graphics Concepts Pg. 1 Welcome Welcome to Part 3 of the MarkMagic

More information

PROVAR QUICKSTART GUIDE

PROVAR QUICKSTART GUIDE PROVAR QUICKSTART GUIDE A simple, practical guide for getting started with Provar www.provartesting.com info@provartesting.com Introduction 4 How to use this guide 4 SECTION 1: Setup 5 What is Provar?

More information

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Once again, we are back with another tool tutorial. This time it s the Issue and Project Tracking Software Atlassian JIRA.

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

OrgChart Now Getting Started Guide. OfficeWork Software LLC

OrgChart Now Getting Started Guide. OfficeWork Software LLC OrgChart Now Getting Started Guide OfficeWork Software LLC Version 1.0.3 May 13, 2015 Introduction This guide provides step by step instruction on how to use OrgChart Now to create and maintain org charts

More information

Lesson 6: Modeling Basics

Lesson 6: Modeling Basics Lesson 6: Modeling Basics MyEducator Issues? So you did everything and received a zero Make sure you don t change the file name If you have done work in Filename(2) or Filename-2 Happens when you download

More information

How to use the Hofstra Webcrd Online Print Shop

How to use the Hofstra Webcrd Online Print Shop How to use the Hofstra Webcrd Online Print Shop First things first, we need to get to the online print shop. To do this open an Internet Explorer window and type into the bar labeled Address : exactly

More information

HID Walkthroughs and Use Case Training Manual

HID Walkthroughs and Use Case Training Manual HID Walkthroughs and Use Case Training Manual October 12, 2007 Function Biomedical Informatics Research Network www.nbirn.net i HID WALKTHROUGHS...1 LIST OF WALKTHROUGHS...1 Walkthrough 1: Complete Data

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

Importing vehicles into Glass-Net from ANY Dealer Management System

Importing vehicles into Glass-Net from ANY Dealer Management System Importing vehicles into Glass-Net from ANY Dealer Management System Step 1: Preparing your DMS CSV Ensure you download a Comma Separated Values (CSV) file from your Dealer Management System (DMS) and save

More information

Release Administrative Module Manual

Release Administrative Module Manual Release 2016.3.0 Administrative Module Manual Table of Contents PROCESS FOR OPENING A PROGRAM... 3 OVERVIEW... 3 NEW PROGRAMS... 3 RE-OPENING EXISTING PROGRAMS... 3 UPDATING CURRENTLY OPEN PROGRAMS...

More information

DreamTeam Suite User Guide

DreamTeam Suite User Guide DreamTeam Suite User Guide Product Usage and Best Practices Guide By Adam Buxbaum September 20, 2011 Table of Contents Introduction... 4 Project Manager... 6 Creating Projects... 9 Project Import/Export...

More information

Unit 10: Advanced Actions

Unit 10: Advanced Actions Unit 10: Advanced Actions Questions Covered What other action types are available? How can we communicate with users without sending an email? How can we clone a record, mapping just the fields we want?

More information

Salesforce Certified Administrator Study Guide

Salesforce Certified Administrator Study Guide Salesforce Certified Administrator Study Guide Summer 15 STUDY GUIDE 0 Contents ABOUT THE SALESFORCE CERTIFIED ADMINISTRATOR PROGRAM... 1 SECTION 1. PURPOSE OF THIS STUDY GUIDE... 1 SECTION 2. AUDIENCE

More information

FastAttach Release Notes

FastAttach Release Notes FastAttach Release Notes Release Summary Version 4.1 Main Screen. Redesigned to organize your work list and improve efficiency. A host of new features have been integrated into the FastAttach Main screen,

More information

eiconsole for Healthcare Getting Started Tutorial

eiconsole for Healthcare Getting Started Tutorial eiconsole for Healthcare Getting Started Tutorial https://cms.pilotfishtechnology.com/eiconsole-for-healthcare-getting-started-tutorial Welcome to the eiconsole for Healthcare Getting Started Tutorial.

More information

eiconsole for Healthcare Getting Started Tutorial

eiconsole for Healthcare Getting Started Tutorial eiconsole for Healthcare Getting Started Tutorial http://cms.pilotfishtechnology.com/eiconsole-for-healthcare-getting-started-tutorial Welcome to the eiconsole for Healthcare Getting Started Tutorial.

More information

Oracle Express CPQ for Salesforce.com. What s New in Summer 15

Oracle Express CPQ for Salesforce.com. What s New in Summer 15 Oracle Express CPQ for Salesforce.com What s New in Summer 15 8 June 2015 TABLE OF CONTENTS OVERVIEW... 3 Give Us Feedback... 3 POST-UPGRADE REQUIREMENTS... 3 PRE-UPGRADE TESTING... 4 RELEASE FEATURE SUMMARY...

More information

Breeding Guide. Customer Services PHENOME-NETWORKS 4Ben Gurion Street, 74032, Nes-Ziona, Israel

Breeding Guide. Customer Services PHENOME-NETWORKS 4Ben Gurion Street, 74032, Nes-Ziona, Israel Breeding Guide Customer Services PHENOME-NETWORKS 4Ben Gurion Street, 74032, Nes-Ziona, Israel www.phenome-netwoks.com Contents PHENOME ONE - INTRODUCTION... 3 THE PHENOME ONE LAYOUT... 4 THE JOBS ICON...

More information

EXCELLING WITH ANALYSIS AND VISUALIZATION

EXCELLING WITH ANALYSIS AND VISUALIZATION EXCELLING WITH ANALYSIS AND VISUALIZATION A PRACTICAL GUIDE FOR DEALING WITH DATA Prepared by Ann K. Emery July 2016 Ann K. Emery 1 Welcome Hello there! In July 2016, I led two workshops Excel Basics for

More information

Custom SharePoint Workflows

Custom SharePoint Workflows Custom SharePoint Workflows Using SharePoint Designer 2013 SharePoint Workflows Microsoft SharePoint, as a collaboration platform, contains a huge amount of business data - documents, contacts, meetings,

More information

MIS 0855 Data Science (Section 006) Fall 2017 In-Class Exercise (Day 15) Creating Interactive Dashboards

MIS 0855 Data Science (Section 006) Fall 2017 In-Class Exercise (Day 15) Creating Interactive Dashboards MIS 0855 Data Science (Section 006) Fall 2017 In-Class Exercise (Day 15) Creating Interactive Dashboards Objective: Create a dashboard with interactive data filtering using Tableau Learning Outcomes: Understand

More information

Understanding Remedyforce Sandboxes

Understanding Remedyforce Sandboxes White Paper Understanding Remedyforce Sandboxes Getting Started with Remedyforce Series Eric J Cobb 25 March 2015 Welcome to the Getting Started with BMC Remedyforce Series Today s IT departments must

More information

USER S MANUAL. TryBooking Salesforce Integration Page 2

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

More information

Warewolf User Guide 1: Introduction and Basic Concepts

Warewolf User Guide 1: Introduction and Basic Concepts Warewolf User Guide 1: Introduction and Basic Concepts Contents: An Introduction to Warewolf Preparation for the Course Welcome to Warewolf Studio Create your first Microservice Exercise 1 Using the Explorer

More information

FOUR SEASONS MARKETPLACE BUYER TRAINING

FOUR SEASONS MARKETPLACE BUYER TRAINING FOUR SEASONS MARKETPLACE BUYER TRAINING Table Of Contents 1. INTRODUCTION... 2 2. LOGIN SCREEN... 3 3. FRONT PAGE... 5 3.1 LOGO PANEL... 6 3.2. SEARCH PANEL... 9 3.3 FRONT PAGE TABS... 10 3.4 CATALOGS

More information

MultiSite Suite: Accounts Payable

MultiSite Suite: Accounts Payable MultiSite Suite: Accounts Payable User s Manual version 6 Copyright & Trademarks Copyright Notice and Trademarks 2010 MultiSite Systems, All rights reserved. Microsoft, Windows, Excel, and Outlook are

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

GiftWorks Import Guide Page 2

GiftWorks Import Guide Page 2 Import Guide Introduction... 2 GiftWorks Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards MIS0855: Data Science In-Class Exercise for Mar 25-27 Creating Interactive Dashboards Objective: Create a dashboard with interactive data filtering using Tableau Learning Outcomes: Understand how to create

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate (103-134) Building Access Databases Notes Quick Links Building Databases Pages AC52 AC56 AC91 AC93 Building Access Tables Pages AC59 AC67 Field Types Pages AC54 AC56 AC267 AC270

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Unit 6 - Data Integration Quick Links & Text References Overview Pages AC418 AC419 Showing Data on the Web Pages AC420 AC423 CSV Files Pages AC423 AC428 XML Files Pages

More information

Using Jive and SharePoint Together

Using Jive and SharePoint Together Using Jive and SharePoint Together Contents 2 Contents Using Jive and SharePoint Together... 3 Viewing SharePoint Content in Jive...3 Using Recent Activity Widgets... 3 Using SharePoint Sites Widgets...

More information

econnect Baccarat User Guide EC7 June 2017

econnect Baccarat User Guide EC7 June 2017 econnect Baccarat User Guide EC7 June 2017 Table of Contents Baccarat Camera View A. Card Displayed on Virtual Table B. Bet Session Recording C. How to open a camera D. What is displayed on Data View E.

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

How to Import Part Numbers to Proman

How to Import Part Numbers to Proman How to Import Part Numbers to Proman This is a brief document that outlines how to take an Excel spreadsheet and either load new parts numbers into Proman or update data on existing part numbers. Before

More information

econtracts for Tier1 partners COURSE CODE: COE01

econtracts for Tier1 partners COURSE CODE: COE01 econtracts for Tier1 partners COURSE CODE: COE01 April 2017 Introduction Welcome to the econtracts for Partners course. This course provides a brief overview of what the Zebra econtracts Portal is used

More information

Moving from FrameMaker to Blaze: Best Practices

Moving from FrameMaker to Blaze: Best Practices Moving from Adobe FrameMaker to MadCap Blaze is easy, although to get the best results you need to do some planning before you start. This document discusses suggestions and issues to make the import result

More information

Using Jive and SharePoint Together

Using Jive and SharePoint Together Using Jive and SharePoint Together Contents Using Jive and SharePoint Together... 3 Viewing SharePoint Content in Jive... 3 Using Recent Activity Widgets... 3 Using SharePoint Sites Widgets... 4 Using

More information

Content Matrix Organizer

Content Matrix Organizer Content Matrix Organizer User Guide February 05, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright International GmbH All rights reserved. No part or section of the contents

More information

Provider Portal Handbook

Provider Portal Handbook Provider Portal Handbook WELCOME! Welcome to AlphaMCS, a next generation Managed Care System designed specifically to meet the needs of Managed Care Organizations and the behavioral healthcare providers

More information

Visual Workflow Implementation Guide

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

More information

Pentaho Data Integration (PDI) Standards for Lookups, Joins, and Subroutines

Pentaho Data Integration (PDI) Standards for Lookups, Joins, and Subroutines Pentaho Data Integration (PDI) Standards for Lookups, Joins, and Subroutines Change log (if you want to use it): Date Version Author Changes 10/11/2017 1.0 Matthew Casper Contents Overview... 1 Before

More information

Knowledgebase Article. Queue Member Report. BMC Remedyforce

Knowledgebase Article. Queue Member Report. BMC Remedyforce Knowledgebase Article Queue Member Report John Patrick & Virginia Leandro 28 May 2013 Table of Contents Queue Report 3 Salesforce Apex Data Loader 3 Getting the Data Loader... 3 Getting your Security Token...

More information

Administrator Quick Guide

Administrator Quick Guide 1 Administrator Quick Guide Login Screen The first page employees will see when visiting their training site is the login screen. This is where employees must enter their username and password to access

More information

Who should use this manual. Signing into WordPress

Who should use this manual. Signing into WordPress WordPress Manual Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Pages vs. Posts... 5 Adding & Editing Your Web

More information

Configuring SharePoint 2007

Configuring SharePoint 2007 26636.book Page 77 Thursday, February 14, 2008 4:38 PM Chapter 3 Configuring SharePoint 2007 MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER: Manage Administration Manage Central Admin UI Manage the

More information

How to Make Your RooFolio

How to Make Your RooFolio How to Make Your RooFolio Table of Contents Contents Bar.1 Pages..3 Text Box 4 Slides. 4 Uploads... 5 Backgrounds...7 Publish & Share.8 Group Work.8 Publish 9 Contents bar The contents bar allows you to

More information

Workshop. Import Workshop

Workshop. Import Workshop Import Overview This workshop will help participants understand the tools and techniques used in importing a variety of different types of data. It will also showcase a couple of the new import features

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

Using the WorldCat Digital Collection Gateway

Using the WorldCat Digital Collection Gateway Using the WorldCat Digital Collection Gateway This tutorial leads you through the steps for configuring your CONTENTdm collections for use with the Digital Collection Gateway and using the Digital Collection

More information

Zip Code Locator Software Hosted Solution

Zip Code Locator Software Hosted Solution Zip Code Locator Software Hosted Solution USER S GUIDE / Documentation www.geosprawl.com Document Version Control Version Date Change Description 1.0 12/17/2008 Created 2008Reachoutside, LLC. Do not copy

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

SFSC Website Cheat Sheet

SFSC Website Cheat Sheet SFSC Website Cheat Sheet 1. Albums a. Creating Photo Album.page 2 b. Adding Images to exiting Photo Album..page 9 c. Resizing your images for the albums page 15 2. Events a. Creating an Event page 19 b.

More information

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu USING DRUPAL Hampshire College Website Editors Guide 2014 https://drupal.hampshire.edu Asha Kinney Hampshire College Information Technology - 2014 HOW TO GET HELP Your best bet is ALWAYS going to be to

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Salesforce i About the Tutorial Salesforce is a leading CRM (Customer Relationship Management) software which is served form cloud. It has more than 800 applications to support various features like generating new

More information

Web ordering process

Web ordering process Web ordering process Rapido Print 2014 Welcome to our home page The menu bar has navigation links to - our products, an area with artwork guides and general information, some of our client feedback, information

More information