Lab 5: Delete What You Won t Need from the Publish Process

Size: px
Start display at page:

Download "Lab 5: Delete What You Won t Need from the Publish Process"

Transcription

1 Lab 5: Delete What You Won t Need from the Publish Process You have now created the groundwork that you need to build a process that will deal with remediation at source. In the following labs, you will build that process. You will not work completely from scratch. Instead you will adapt the 2.Publish Alerts to Case Management process. Open the Process, and Delete What you Don t Need 1. If any other processes are already open on the canvas of the Director user interface, close them to avoid possible confusion. 1. In the Project Browser, on the left-side of the Director user interface, double-click the 2.Publish Alerts to Case Management process to open it on the canvas. 2. On the canvas, delete all of the processors except for the Reader and Advanced Match. 3. Delete the line connecting the Reader to the Advanced Match processor (but do not delete the processors themselves). 4. On the canvas, double-click the word Reader and rename the processor Read in Data Records. 5. On the canvas, double-click the words Advanced Match and rename the processor Publish to Case Management (Advanced Match). 6. Click to save the process. Page 1 of 10

2 Lab 6: Read in and Prepare the List of Old Errors In this lab you will read in the list of old errors from the cases table that you staged in a previous lab, and then prepare the old errors to be used in the remainder of your publish process. The preparation will take the form of two steps: 1. Filter out the cases. The cases table consists of both alerts (which are known as issues) and cases. Your ultimate objective is to feed data into a workflow that will change the state of alerts when they have been remediated. In your architecture, cases themselves will not directly be remediated. So your process should only be interested in the alerts. You will therefore filter out all rows relating to cases. You can do this by configuring a Value Check processor to assess the value in the casetype field, which will be either issue for alerts or case for cases. 2. Extract the UNIQUEID and Error Message into separate attributes. The cases table includes both the UNIQUEID (the primary key of the data records) and the Error Message. But unfortunately both are stored in the same attribute: the keylabel (which is effectively alerts primary key). Later steps in your process will require the UNIQUEID and Error Message to be in separate attributes, so you will extract them now. You will do the extraction by using a Parse processor. Parsing is a sophisticated process, and since this course does not focus on parsing, you will import a pre-configured published parse processor to save time. Please note, however, that if you would like to find out more about parsing, you are encouraged to complete the Introduction to Parsing self-paced course, or to attend Oracle University s Oracle Enterprise Data Quality: Match and Parse course. Read in the List of Old Errors 1. In the Tool Palette, on the right-side of the screen, click to select the Read and Write family of processors, and then drag a Reader onto the Canvas, dropping it directly below the reader that is already there. 2. Double-click the new Reader. The Reader Configuration window will open. 3. Leave the Type set to Staged data. 4. In the Source dropdown, select Case Management Tables.cases and click to select all of its attributes as inputs for the process. Page 2 of 10

3 5. Click OK to close the Reader Configuration window. 6. On the canvas, double-click the word Reader and rename the processor Read in Old Errors from Case Management Tables. Filter Cases Out From the List of Old Errors 1. In the Tool Palette, on the right-side of the screen, click to select the Audit family of processors, and then drag a Value Check processor onto the Canvas. 2. Wire up the output port from the new reader that you renamed Read in Old Errors from Case Management Tables to the Value Check processor s input port. The Value Check window will open. Page 3 of 10

4 3. In the Value Check window, select casetype as the Field for validation. 4. Navigate to the Options tab, and enter a Value to compare records against of issue. 5. Click OK to close the Value Check window. 6. On the canvas, double-click the words Value Check and rename the processor Only process alerts; filter out cases (Value Check). Page 4 of 10

5 7. Click to run your process. 8. Once your process has finished running, single-click the Read in Old Errors from Case Management Tables processor on the canvas. On the right-side of the Results Browser, you should see that 240 records were read into the process. 9. Single-click the Only process alerts; filter out cases (Value Check) processor on the canvas. Page 5 of 10

6 On the left-side of the Results Browser, you should see that 122 records passed the comparison. This means that 122 of the 240 records that were read into the process were alerts (this was denoted by the word issue in the casetype field). The remainder of the records are cases, which we will discard from the process. Import a Published Parse Processor 1. Right-click at the bottom of the Project Browser and select Open Package File or alternatively follow the menu path File >> Open Package File 2. Navigate to the file ParseKeyLabel.dxi which you will find in ~edq_training_assets_12.1.3\data Files\Case Management. Select the file and click Open. A folder named ParseKeyLabel.dxi should appear at the bottom of the Project Browser. 3. Expand the ParseKeyLabel.dxi folder, and then, within that folder, expand the Projects node, and then expand the Published Processors node. You should see a published processor called Parse Out UNIQUEID and Error Message from keylabel. 4. Drag the Parse Out UNIQUEID and Error Message from keylabel published processor from beneath the ParseKeyLabel.dxi folder and drop it on top of the Page 6 of 10

7 Published Processors node within your Case Management Training project. Extract the UNIQUEID and Error Message and Put Them in Separate Attributes 1. In the Tool Palette, on the right-side of the screen, click to select the Published Processors family of processors, and then drag the Parse out UNIQUEID and Error Message from keylabel processor onto the canvas. Page 7 of 10

8 2. Wire up the Pass port from the Value Check processor that you renamed Only process alerts; filter out cases (Value Check) to the Parse out UNIQUEID and Error Message from keylabel processor s input port. The Parse out UNIQUEID and Error Message from keylabel [Parse] window will open. 3. In the list of Available Attributes select keylabel and click to add it to the list of Selected Attributes. 4. Click OK to close the window. 5. Double-click the Map sub-processor to open the Map window. 6. In the Inputs dropdown select keylabel (it may already be selected, in which case you need do nothing). Page 8 of 10

9 7. Click OK to close the window. 8. On the canvas, navigate to the Process tab. 9. Click to run your process. 10. Once your process has finished running, single-click the Parse out UNIQUEID and Error Message from keylabel processor on the canvas. Page 9 of 10

10 11. In the Results Browser, navigate to the Results tab. 12. Drill-down on the 122 Unknown records. 13. Note that the UNIQUEID and Error Message have been extracted from the keylabel and put into separate attributes. These attributes are called UINIQUEID.Parse and ErrorMessage.Parse respectively. Page 10 of 10

Lab 4: Pass the Data Streams to a Match Processor and Define a Match Rule

Lab 4: Pass the Data Streams to a Match Processor and Define a Match Rule Lab 4: Pass the Data Streams to a Match Processor and Define a Match Rule In this lab you will feed both the data records and the error records to a match processor and define a match rule. At the end

More information

Lab 6: Create a Simple Case Source

Lab 6: Create a Simple Case Source Lab 6: Create a Simple Case Source In this lab you will create a Case Source. In the Case Source you will: Set a prefix for all of the cases and alerts generated by your process. This prefix will be displayed

More information

Lab 9: Identify Alerts That Require a Change of State

Lab 9: Identify Alerts That Require a Change of State Lab 9: Identify Alerts That Require a Change of State In this lab you will work with your consolidated error data stream to work out which alerts require a change of state, and which change of state is

More information

Lab 2: Audit the PARTS table

Lab 2: Audit the PARTS table Lab 2: Audit the PARTS table In this lab you create a new process. This process will carry out an audit the PARTS table that will be based upon the results of your profiling. Create Reference Data Holding

More information

Lab 3: Create the Error Message Data Stream

Lab 3: Create the Error Message Data Stream Lab 3: Create the Error Message Data Stream Overview In this lab you will continue to develop your process by creating an error stream that you will later send to a match processor. At the end of this

More information

Lab 1: Import a Partially Configured Match Processor

Lab 1: Import a Partially Configured Match Processor Lab 1: Import a Partially Configured Match Processor You will start these labs by importing a process that includes a partially configured match processor set up to work against very similar customer data

More information

Oracle Enterprise Data Quality Business Rules

Oracle Enterprise Data Quality Business Rules Oracle Enterprise Data Quality Business Rules Release 12.1.3 Table of Contents Lab 1: Import and Run a Partially Configured Set of Business Rules... 4 Lab 2: Copy and Modify Existing Rules... 11 Lab 3:

More information

Lab 1: Amend Your Workflow

Lab 1: Amend Your Workflow Lab 1: Amend Your Workflow In this lab you will add two new states to the Alert Workflow that you created in the Publishing to Case Management training module. These new states will be called Remediated

More information

Setting up a Google Account together with Google Reader and igoogle.

Setting up a Google Account together with Google Reader and igoogle. Page 1 http://www.larkin.net.au/ Setting up a Google Account together with Google Reader and igoogle Google Reader allows you to keep track of the various web logs that you have subscribed to in the past.

More information

MAIL MERGE FWIS COMPUTER SECTION BY MR. BASIM SHAHIN

MAIL MERGE FWIS COMPUTER SECTION BY MR. BASIM SHAHIN MAIL MERGE FWIS COMPUTER SECTION BY MR. BASIM SHAHIN COMPLETE A MERGE A merge generally takes two files: a main document and a data source file. The main document contains the standard text and/or the

More information

Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account,

Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account, Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account, Step 2 shows you how to create an account. If you already

More information

Join Queries in Cognos Analytics Reporting

Join Queries in Cognos Analytics Reporting Join Queries in Cognos Analytics Reporting Business Intelligence Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If a report includes

More information

Basic Intro to ETO Results

Basic Intro to ETO Results Basic Intro to ETO Results Who is the intended audience? Registrants of the 8 hour ETO Results Orientation (this training is a prerequisite) Anyone who wants to learn more but is not ready to attend the

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 13 Resolving Workflow Validation Issues, page 16 Changing Flow

More information

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph This tutorial is the first tutorial in the Creating an Options Menu tutorial series and walks you through the steps to load a canvas using

More information

Step 4 Part F - How to Download a Video on YouTube and Delete a Video

Step 4 Part F - How to Download a Video on YouTube and Delete a Video Step 4 Part F - How to Download a Video on YouTube and Delete a Video When you finish Edit your Video on your YouTube account and save it or save as new Video, you may want to Download it to your computer.

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

Chalk-to-Canvas Migration Options Overview

Chalk-to-Canvas Migration Options Overview Chalk-to-Canvas Migration Options Overview 08/2017 This document describes how you can migrate your course content from Chalk to Canvas. Migrating a course involves transferring files and course items

More information

ActiveVOS Fundamentals

ActiveVOS Fundamentals Lab #8 Page 1 of 9 - ActiveVOS Fundamentals ActiveVOS Fundamentals Lab #8 Process Orchestration Lab #8 Page 2 of 9 - ActiveVOS Fundamentals Lab Plan In this lab we will build a basic sales order type of

More information

Using Dropbox with Node-RED

Using Dropbox with Node-RED Overview Often when using Platform services, you need to work with files for example reading in a dialog xml file for Watson Dialog or feeding training images to Watson Visual Recognition. While you can

More information

SharePoint Designer Advanced

SharePoint Designer Advanced SharePoint Designer Advanced SharePoint Designer Advanced (1:00) Thank you for having me here today. As mentioned, my name is Susan Hernandez, and I work at Applied Knowledge Group (http://www.akgroup.com).

More information

Creating a Custom Report

Creating a Custom Report Creating a Custom Report The Analytical Report module provides two ways to create a custom report: modifying an existing shared report or creating a new report from scratch if there is no existing report

More information

epact2 User Guide New Features and Changes in epact2 Logging in and out of epact Landing Page... 2 Creating Content... 3 Sharing Content...

epact2 User Guide New Features and Changes in epact2 Logging in and out of epact Landing Page... 2 Creating Content... 3 Sharing Content... epact2 User Guide New Features and Changes in epact2 Contents Logging in and out of epact2... 1 Landing Page... 2 Creating Content... 3 Sharing Content... 4 Archiving and Un-archiving... 4 ASTRO and Standard

More information

YuJa Enterprise Video Module Training 1. Getting Oriented

YuJa Enterprise Video Module Training 1. Getting Oriented YuJa Enterprise Video Module Training 1 Getting Oriented Module 1 Getting Oriented Goal Time Establish a foundational understanding of each of the main suites in the YuJa Enterprise Video Platform. 1 hour

More information

DDFile Catcher

DDFile Catcher DDFile Catcher http://www.ddfilecatcher.com/ DDFile Catcher is a program that documents your directory structure as well as selected properties of folder and files in your directory structure. These properties

More information

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

Click on OneDrive on the menu bar at the top to display your Documents home page.

Click on OneDrive on the menu bar at the top to display your Documents home page. Getting started with OneDrive Information Services Getting started with OneDrive What is OneDrive @ University of Edinburgh? OneDrive @ University of Edinburgh is a cloud storage area you can use to share

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 12 Resolving Workflow Validation Issues, page 15 Changing Flow

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Copyright Infor. All Rights Reserved.

Copyright Infor. All Rights Reserved. 1 Infor Smart Office: Getting Started Matthew Allbee, Technology Product Director, Infor 2 Agenda A Quick Anatomy Lesson Help Settings Widgets Launching Forms Creating Shortcuts Adding Favorites List Driven

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

Using Modules in Canvas

Using Modules in Canvas Using Modules in Canvas Modules in Canvas are used to organize the course content. Each module can contain files, discussions, assignments, quizzes, and other learning materials. Modules are especially

More information

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421 Information Systems Center FrontPage 2003 Reference Guide for COMM 321 & 421 September 2008 Table of Contents Portfolio Web Sites & Web Pages... 1 Open Your Portfolio Web Site in FrontPage for Editing...

More information

Step 1: Downloading the source files

Step 1: Downloading the source files Introduction: In this lab and in the remainder of the ELEC 2607 labs, you will be using the Xilinx ISE to enter and simulate the designs for your circuits. In labs 3 and 4, you will use ISE to compile

More information

Airis User Guide. Version 3.3

Airis User Guide. Version 3.3 Airis User Guide Version 3.3 Contents 1 Introduction... 2 2 Using Airis... 2 2.1 Creating a Client... 2 2.2 Creating a Process... 6 2.3 Process Analysis... 7 2.3.1 Process Efficiency... 7 2.3.2 Adding

More information

HOW TO ADD SIGNATURE TO MICROSOFT OFFICE OUTLOOK

HOW TO ADD SIGNATURE TO MICROSOFT OFFICE OUTLOOK HOW TO ADD SIGNATURE TO MICROSOFT OFFICE OUTLOOK QUARTER TO SEMESTER ICON VERSIONS: 2016, 2013 & OFFICE 365 HOW TO SAVE ICON TO COMPUTER Step 1: Open Email containing Quarters to Semesters Icon Click Here

More information

Create a Customised Tab on the Office 2013 Ribbon

Create a Customised Tab on the Office 2013 Ribbon Create a Customised Tab on the Office 2013 Ribbon Office 2007 saw the addition of the Ribbon feature, which some users found confusing. However, you can use it to your advantage by adding your own custom

More information

Upgrading Echo360 Personal Capture for EchoSystem

Upgrading Echo360 Personal Capture for EchoSystem The following document provides an overview of the steps involved in upgrading to the new version of the Echo360 Personal Capture (PCAP) software and configuring this for use with the new back-end system

More information

Using SourceTree on the Development Server

Using SourceTree on the Development Server Using SourceTree on the Development Server This content has been modified to exclude client information. Such omissions include the client name and details of the client s infrastructure, such as domain

More information

End User SharePoint 2010 Videos List

End User SharePoint 2010 Videos List End User SharePoint 2010 Videos List Screencast Name Number Abstract Category A subsite (or simply referred to as site) is created as an interface for hosting pages, lists, libraries and web parts. Creating

More information

GIMP WEB 2.0 BUTTONS

GIMP WEB 2.0 BUTTONS GIMP WEB 2.0 BUTTONS Web 2.0 Navigation: Web 2.0 Button with Navigation Arrow GIMP is all about IT (Images and Text) WEB 2.0 NAVIGATION: BUTTONS_WITH_NAVIGATION_ARROW This button navigation will be designed

More information

Creating Universally Designed Word 2013 Documents - Quick Start Guide

Creating Universally Designed Word 2013 Documents - Quick Start Guide Creating Universally Designed Word 2013 Documents - Quick Start Guide Overview Creating accessible documents ones that work well with all sorts of technology can be a daunting task. The purpose of this

More information

Contents Using Team Site Calendars... 2

Contents Using Team Site Calendars... 2 SharePoint 2013 End User Training Tutorial Contents Using Team Site Calendars... 2 Adding & Editing Announcements... 4 Using Custom Lists... 6 Creating Alerts to Stay Updated... 9 Communicating Through

More information

SAP Favorites. You can manage your own SAP menu Favorites in multiple ways: 1. From the SAP menu bar click on Favorites to display your options:

SAP Favorites. You can manage your own SAP menu Favorites in multiple ways: 1. From the SAP menu bar click on Favorites to display your options: SAP Favorites SAP Favorites... 1 Add Favorite (available options)... 3 Edit Favorites:... 4 Delete Favorites (available options)... 5 Add Folders to Favorites... 6 Moving the Placement of Favorites (available

More information

Organize Mail into Folders

Organize Mail into Folders Organize Mail into Folders In an effort to organize all of the emails that you receive, you can create mail folders to store them in. One email can be stored in multiple folders. Click the + next to Folders

More information

USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017

USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017 USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017 In the following exercise, you learn how to use Alteryx Designer for predictive analysis. This exercise assumes that you installed Alteryx Designer.

More information

BASIC USER TRAINING PROGRAM Module 4: Topology

BASIC USER TRAINING PROGRAM Module 4: Topology BASIC USER TRAINING PROGRAM Module 4: Topology Objective Students will learn to work in the Topology editor to create devices, specify links between devices, create and set properties. In addition, students

More information

Lab - System Restore in Windows 7 and Vista

Lab - System Restore in Windows 7 and Vista Lab - System Restore in Windows 7 and Vista Introduction In this lab, you will create a restore point and then use it to restore your computer. Recommended Equipment A computer running Windows 7 or Vista

More information

SmartOffice Library Step-by-Step Guide

SmartOffice Library Step-by-Step Guide CONTENTS Overview... 2 Key Takeaways... 2 SmartOffice Library UI... 3 Invoking the module... 4 Creating a folder... 5 Uploading a document... 8 Deleting a document...11 Open in SharePoint...14 Opening

More information

DecisionPoint For Excel

DecisionPoint For Excel DecisionPoint For Excel Getting Started Guide 2015 Antivia Group Ltd Notation used in this workbook Indicates where you need to click with your mouse Indicates a drag and drop path State >= N Indicates

More information

Sticky Notes for Cognos Analytics by Tech Data BSP Software

Sticky Notes for Cognos Analytics by Tech Data BSP Software Sticky Notes for Cognos Analytics by Tech Data BSP Software Installation Guide Sticky Notes for Cognos Analytics is an easy to install extension that allows report authors to record notes directly from

More information

How can I view my W2 on Vibe?

How can I view my W2 on Vibe? How can I view my W2 on Vibe? Within this document you will find easy How To, step by step instructions for logging onto Vibe and accessing your W2. How to Logon: In your browser s address bar, type the

More information

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two ENGL 323: Writing for New Media Repurposing Content for the Web Part Two Dr. Michael Little michaellittle@kings.edu Hafey-Marian 418 x5917 Using Color to Establish Visual Hierarchies Color is useful in

More information

WELCOME TO GOOGLE DRIVE!

WELCOME TO GOOGLE DRIVE! WELCOME TO GOOGLE DRIVE! Google Drive is a free service from Google that allows you to store files from your computer online and access them anywhere using the cloud. Google Drive also gives you access

More information

4) Verify that the Color Type text box displays Process and that the Color Mode text box displays CMYK.

4) Verify that the Color Type text box displays Process and that the Color Mode text box displays CMYK. Oahu Magazine Cover Follow the instructions below to complete this assignment: Create Process Color Swatches 1) Download and open Oahu Magazine Cover from Mrs. Burnett s website. 2) Display the Swatches

More information

Student User Guide: Navigation. Student User Guide: Navigation Toolbar

Student User Guide: Navigation. Student User Guide: Navigation Toolbar Student User Guide: Navigation Toolbar Table of Contents Navigation Toolbar... 3 Menu Button... 3 Dashboard... 4 Courses... 6 LiveText Docs... 8 File Manager... 9 Reviews... 11 Forms... 12 Community...

More information

Student Manual. Cognos Analytics

Student Manual. Cognos Analytics Student Manual Cognos Analytics Join Queries in Cognos Analytics Reporting Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If

More information

NOTE: For this tutorial you will need Internet Explorer Click Site, then New Site, go to the Templates tab. Fig. 1.0

NOTE: For this tutorial you will need Internet Explorer Click Site, then New Site, go to the Templates tab. Fig. 1.0 1 NOTE: For this tutorial you will need Internet Explorer 8 1. Click Site, then New Site, go to the Templates tab. Fig. 1.0 2. Choose Organization 5 Fig.1.2 2 3. Double click default.html at the bottom

More information

Maximo Self Service Center

Maximo Self Service Center Maximo Self Service Center Once you have received an email regarding your registration approval, go to the following web address: https://maximo.mysodexo.com Log in to the Self Service Center: Your User

More information

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. Global-Regulation International Law Search V. 1. <Partner Product>

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. Global-Regulation International Law Search V. 1. <Partner Product> RSA ARCHER GRC Platform Implementation Guide Global-Regulation Jeffrey Carlson, RSA Partner Engineering Last Modified: May 15 th, 2017 Solution Summary Global-Regulation.com

More information

Organizing Your Network with Netvibes 2009

Organizing Your Network with Netvibes 2009 Creating a Netvibes Account 1. If you closed your Internet browser from the last exercise, open it and navigate to: htt://www.netvibes.com. 2. Click Sign In in the upper right corner of the screen. 3.

More information

Importing in Offertory Donations from Spreadsheets into Connect Now

Importing in Offertory Donations from Spreadsheets into Connect Now Importing in Offertory Donations from Spreadsheets into Connect Now When you have an excel spreadsheet that has donations in it, if you have a key identifier, such as an envelope number, then the spreadsheet

More information

Housekeeping...1 Introduction...1 Using folders...1 Archiving s...8

Housekeeping...1 Introduction...1 Using folders...1 Archiving  s...8 9742C: Use and Maintain Personal E-Mail Housekeeping...1 Introduction...1 Using folders...1 Archiving emails...8 Housekeeping Introduction In this section you will learn how develop good email housekeeping

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Lab 3: Building Compound Comparisons

Lab 3: Building Compound Comparisons Lab 3: Building Compound Comparisons In this lab you will build a series of Compound Comparisons. Each Compound Comparison will relate to a group of related Identifiers. And each will hold an ordered list

More information

Articles... 3 Workflow Exercise One: Entry-Campaign-Exit... 4 Workflow Exercise Two: Entry-Wait-Campaign-Exit-Test... 8 Workflow Exercise Three (a):

Articles... 3 Workflow Exercise One: Entry-Campaign-Exit... 4 Workflow Exercise Two: Entry-Wait-Campaign-Exit-Test... 8 Workflow Exercise Three (a): WFLOW EXERCISES Table of Contents Articles... 3 Workflow Exercise One: Entry-Campaign-Exit... 4 Workflow Exercise Two: Entry-Wait-Campaign-Exit-Test... 8 Workflow Exercise Three (a): Clone-Entry-Campaign-Condition-Campaign-Exit...12

More information

Getting started with Panopto Instructors

Getting started with Panopto Instructors What is Panopto? Panopto is a video content management system for uploading, managing and sharing recorded lectures, flipped classroom videos, campus events, and more. It comes with built-in video analytics,

More information

Importing to WIRED Contact From a Database File. Reference Guide

Importing to WIRED Contact From a Database File. Reference Guide Importing to WIRED Contact From a Database File Reference Guide Table of Contents Preparing the Database table for Import... 2 Locating the Field Names for the Import... 2 Importing the File to WiredContact...

More information

Integrate MySQL Server EventTracker Enterprise

Integrate MySQL Server EventTracker Enterprise Integrate MySQL Server EventTracker Enterprise Publication Date: Nov. 3, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides instructions to configure

More information

Creating a Custom Layout

Creating a Custom Layout PROCEDURES LESSON 24: WKING WITH MASTERS Displaying the Slide Master 1 Click the VIEW tab 2 Click the Slide Master Customizing Slide Master Elements 1 Click the VIEW tab 2 Click the Slide Master 3 In Slide

More information

Google Sheets: Spreadsheet basics

Google Sheets: Spreadsheet basics Google Sheets: Spreadsheet basics You can find all of your spreadsheets on the Google Sheets home screen or in Google Drive. Create a spreadsheet On the Sheets home screen, click Create new spreadsheet

More information

Computer Page Editing USB storage Series 4 device Software 1.06* device

Computer Page Editing USB storage Series 4 device Software 1.06* device Learning Objectives In this training module, you will: explore the benefi ts of using digital photographs on communication pages. use a digital image as the symbol on a button. use a digital image as the

More information

CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0

CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0 CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0 CWCMS WORKFLOW TRAINING 1 Exercise: start and execute 1 stage approval workflow... 3 1.1 Goal... 3 1.2 Setup... 3 1.3

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 03 Integrating Content Page 1 of 12 Overview WebCenter Content is the content repository for WebCenter Portal. To leverage the content stored in the repository,

More information

Course Outline. Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days Instructor-Led

Course Outline. Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days Instructor-Led Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days Instructor-Led Introduction This two day class is designed for information workers or power users who serve as SharePoint

More information

Creating Universally Designed PDFs from Microsoft Office with Adobe Acrobat

Creating Universally Designed PDFs from Microsoft Office with Adobe Acrobat Creating Universally Designed PDFs from Microsoft Office with Adobe Acrobat Overview This article offers guidance on ways to create PDF documents to make them more accessible. Because many files are often

More information

Integrate Trend Micro Control Manager. EventTracker v8.x and above

Integrate Trend Micro Control Manager. EventTracker v8.x and above Integrate Trend Micro Control Manager EventTracker v8.x and above Publication Date: May 24, 2018 Abstract This guide provides instructions to configure Trend Micro Control Manager to generate logs for

More information

Workflow for efilecabinet On-Premise User Guide

Workflow for efilecabinet On-Premise User Guide Workflow for efilecabinet On-Premise User Guide Page 1 of 32 Introduction: Workflow is a simple way to manage and automate the Workflow associated with the processing of documents. Workflow steps are visually

More information

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. Gurucul Risk Analytics. <Partner Product>

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. Gurucul Risk Analytics. <Partner Product> RSA ARCHER GRC Platform Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: August 1 st, 2017 Solution Summary Gurucul is changing the way enterprises

More information

BMC Control-M Test Drive Guide. Version 1.0

BMC Control-M Test Drive Guide. Version 1.0 BMC Control-M Test Drive Guide Version 1.0 Table of Contents 3 INTRODUCING BMC CONTROL-M 5 STARTING THE CONTROL-M TEST DRIVE 6 MY FIRST JOBS 12 FUNCTIONS HIGHLIGHTED IN THE TEST DRIVE INTRODUCING BMC CONTROL-M

More information

Tutorial Macromedia FlashPaper 2

Tutorial Macromedia FlashPaper 2 Tutorial Macromedia FlashPaper 2 Introduction: While Adobe s PDF file format has essentially become the de facto standard for distributing documents on the web, Macromedia has recently introduced an innovative

More information

IMPORT SMART PRACTICE AIDS ENGAGEMENT

IMPORT SMART PRACTICE AIDS ENGAGEMENT IMPORT SMART PRACTICE AIDS ENGAGEMENT Checkpoint Engage with AdvanceFlow SMART Practice Aids engagement to be imported should be same edition year and industry title as Checkpoint Engage engagement (ie

More information

Lab - Working with Android

Lab - Working with Android Introduction In this lab, you will place apps and widgets on the home screen and move them between different screens. You will also create folders. Finally, you will install and uninstall apps from the

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

Lab - System Restore in Windows 8

Lab - System Restore in Windows 8 Lab - System Restore in Windows 8 Introduction In this lab, you will create a restore point and use it to restore your computer. Recommended Equipment A computer running Windows 8 Step 1: Create a restore

More information

HR/PR Shared Services Analysis BW Reports Overview Updated 11/30/15

HR/PR Shared Services Analysis BW Reports Overview Updated 11/30/15 HR/PR Shared Services Analysis BW Reports Overview Updated 11/30/15 What is Analysis? Analysis is the tool that allows us to access the Business Warehouse (BW) reports. BW is a data storage and reporting

More information

Lab 9: Global Configurations

Lab 9: Global Configurations Lab 9: Global Configurations Objectives After completing this lab, you will be able to: Connect to an AM Stream that is under Global Configuration Management (the UK variant) Create a new US variant based

More information

SMART functionality provides automation to the complete PPC audit process that will help you be more efficient using PPC forms on your audit

SMART functionality provides automation to the complete PPC audit process that will help you be more efficient using PPC forms on your audit 1 SMART functionality provides automation to the complete PPC audit process that will help you be more efficient using PPC forms on your audit engagements. If you already use engagement software in your

More information

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules For technical support call 1-800-936-6899 PsychPortal Quick Start for Myers Psychology 10e In Modules Table of Contents Overview...

More information

Classroom Practice Labs Administration Portal User Guide

Classroom Practice Labs Administration Portal User Guide gtslearning.com Classroom Practice Labs Administration Portal User Guide Contents User Guide... 1 Accessing the portal... 1 User Administration... 2 Creating Users accounts (Individually)... 3 Amend an

More information

Using the Dashboard. The dashboard allows you to see, and drill into, important summary information about the health of your reliability solution.

Using the Dashboard. The dashboard allows you to see, and drill into, important summary information about the health of your reliability solution. Using the Dashboard The dashboard allows you to see, and drill into, important summary information about the health of your reliability solution. Opening the Dashboard: You can see part of the dashboard

More information

Extra Tools. Create own filters. Assign ID number. Create own filters. Assign ID number. Assign name and description. Set a model and risk category

Extra Tools. Create own filters. Assign ID number. Create own filters. Assign ID number. Assign name and description. Set a model and risk category Extra Tools Create own filters Assign ID number Assign name and description Set a model and risk category Specify authorization objects, authorization object fields and specifications Search for specific

More information

INSIGHT SITE ADMINISTRATOR MANUAL

INSIGHT SITE ADMINISTRATOR MANUAL INSIGHT SITE ADMINISTRATOR MANUAL Jeff Martin-Moreno MCLENNAN COMMUNITY COLLEGE Updated 11/11/2015 Creating a New Care Area Managing Users in a Care Area Editing or Deleting a Care Area Exporting Activity

More information

Filtering - Zimbra

Filtering  - Zimbra Filtering Email - Zimbra Email filtering allows you to definite rules to manage incoming email. For instance, you may apply a filter on incoming email to route particular emails into folders or delete

More information

Release Notes October 2016

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

More information

British Rowing Club Safety Audit. CRSA Guide to Google Drive

British Rowing Club Safety Audit. CRSA Guide to Google Drive British Rowing Club Safety Audit CRSA Guide to Google Drive Contents Introduction 1 Accessing Google Drive 2 Uploading a document 3 Editing an audit 4 How to 5 Introduction British Rowing has issued you

More information

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e For technical support call 1-800-936-6899 EconPortal Quick Start for Krugman/Wells Macroeconomics, 3e Table of Contents Overview...

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

Business Warehouse reports Running and manipulating reports. Newcastle University Andy Proctor 9 th March 2017

Business Warehouse reports Running and manipulating reports. Newcastle University Andy Proctor 9 th March 2017 Business Warehouse reports Running and manipulating reports Newcastle University Andy Proctor 9 th March 2017 Table of Contents Running a business warehouse report... 2 Adding a characteristic... 4 Drag

More information

Designing the staging area contents

Designing the staging area contents We are going to design and build our very first ETL mapping in OWB, but where do we get started? We know we have to pull data from the acme_pos transactional database as we saw back in topic 2. The source

More information