Lab 9: Identify Alerts That Require a Change of State

Size: px
Start display at page:

Download "Lab 9: Identify Alerts That Require a Change of State"

Transcription

1 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 required. Remember that the data stream includes the following attributes: The UNIQUEID, which is present in both data streams. The Error Message, which is present in both data streams. The Current Error tag, which, since it is only present in the Current Errors stream, will only be populated for current errors. The currentstate attribute, which, since it is only present in the Old Errors stream, will only be populated for old errors. The first two of these attributes UNIQUEID and Error Message enable you to identify which alert the error record relates to (since these two attributes form the alerts primary key). Between them, the Current Error attribute and the currentstate attribute will tell you whether an alert has been remediated (or has recurred) and whether, therefore, its state needs to be changed. One of the key points to understand is that the only mechanism by which you can change the state of an alert that already exists in Case Management is to republish it. If Case Management receives no information about an alert, its default behavior is simply to persist the alert without changes. This default behavior has three implications for our process: 1. We need to publish an error record to Case Management for every alert that requires a state change, including alerts for errors that have been remediated. 2. This error record should contain information that tells Case Management what state to transition the alert to (for example, transition to Remediated). 3. We do not need to republish errors for existing alerts that do not require a state change, since existing alerts will persist unchanged if we simply do nothing. During this lab you will configure a series of logic checks, and, based on these you will tag each of the consolidated error records with an Error Status. Once published, the Error Status will be used by the reception rules that you set up in this module s first lab to change the state of an alert. The Error Status will depend upon the combination of values found in the currentstate and Current Error attributes. The following table summarizes this: Page 1 of 19

2 currentstate Current Error Error Status Open or Reopened NULL (i.e. not a current error) Remediated Remediated Y Recurred NULL (i.e. not an old error) Y NULL Where the last of these three conditions exists (i.e. the currentstate is NULL, and Current Error is populated with a Y) the Error Status attribute is left NULL. This is because this must be a new error (since it exists now, but did not exist before), and alerts for new errors are automatically created without the aid of reception rules. Since the only purpose of the Error Status is to provide information for reception rules about what to do, in this case the Error Status is not required. Errors that do not meet any of the above criteria must be errors that already exist and do not require a change of state. These can be discarded from the process since, if we do nothing, they will simply be persisted in Case Management without changes which is exactly what we want. Once you have completed this lab, this part of the process will look like this: Add the First Logic Check and Error Status Your first logic check will determine whether you are dealing with an alert that has been remediated. You will be looking for errors that have a currentstate (from the last run) of Opened or Reopened and that are not current errors. Page 2 of 19

3 1. In the Tool Palette, on the right-side of the screen, click to select the Audit family of processors, and then drag a Logic Check processor onto the Canvas. 1. Wire the Consolidated output of the Consolidate processor that you renamed Consolidate the two sets of error data to ensure we only publish one error for each combination of UNIQUEID and Error Message (if we didn't do this, we would get two error records for some errors) to the Logic Check processor s input port. The Logic Check window will open. 2. In the Logic Check window, select the Current Error and currentstate attributes and click to move them to the list of Selected Attributes. Page 3 of 19

4 3. Navigate to the Options tab, and configure it as displayed below: To do this: a) Select the currentstate attribute in the dropdown on the left, select = in the dropdown in the middle and enter Open in the field on the right. b) Click Nest and change the operator to OR. A new set of fields will appear. c) Select the currentstate attribute in the dropdown on the left, select = in the dropdown in the middle and enter Reopened in the field on the right. d) Single-click the OR operator, and click Nest. A new And operator and a new set of fields should appear. e) Select Current Error in the dropdown on the left. Select!= in the dropdown in the middle, and enter Y in the field on the right. f) Ensure that you configuration is exactly as displayed in the screenshot above. Note that the logic here is that the currentstate should be either Open or Reopened and that the Current Error is not equal to Y. 4. Click OK to close the Logic Check window. Page 4 of 19

5 5. On the canvas, double-click the words Logic Check and rename the processor Is this an open or reopened alert that has been remediated? (Logic Check). 6. In the Tool Palette, on the right-side of the screen, click to select the Transformation family of processors, and then drag an Add String Attribute processor onto the Canvas. 7. Wire the Pass output of the Logic Check processor that you renamed Is this an open or reopened alert that has been remediated? (Logic Check) to the Add String Attribute processor s input port. The Add String Attribute window will open. 8. In the Added Output Attributes on the right-side of the window, double-click NewString and rename the added attribute Error Status.1. Page 5 of 19

6 9. Navigate to the Options tab and enter a New Attribute Value of Remediated. 10. Click OK to close the Add String Attribute window. 11. On the canvas, double-click the words Add String Attribute and rename the processor Add Error Status.1 Attribute With Value 'Remediated'. Add the Second Logic Check and Error Status Your second logic check will take the output from your first logic check s Fail port. In other words, it will only operate on records that did not pass the first logic check. The second logic check will determine whether you are dealing with a remediated alert that has recurred. This could happen as the result of human error for example, if the original data file was mistakenly resubmitted to the process instead of a remediated version of the file. You will be looking for errors that have a currentstate (from the last run) of Remediated, but which are also current 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 Logic Check processor onto the Canvas. Page 6 of 19

7 2. Wire the Fail output of the Logic Check processor that you renamed Is this an open or reopened alert that has been remeidated? (Logic Check) to the new Logic Check processor s input port. The Logic Check window will open. 3. In the Logic Check window, select the Current Error and currentstate attributes and click to move them to the list of Selected Attributes. Page 7 of 19

8 4. Navigate to the Options tab, and configure it as displayed below: 5. Click OK to close the Logic Check window. 6. On the canvas, double-click the words Logic Check and rename the processor Is this a remediated alert that has recurred - perhaps because of human error? (Logic Page 8 of 19

9 Check). 7. In the Tool Palette, on the right-side of the screen, click to select the Transformation family of processors, and then drag an Add String Attribute processor onto the Canvas. 8. Wire the Pass output of the Logic Check processor that you renamed Is this a remediated alert that has recurred - perhaps because of human error? (Logic Check) to the Add String Attribute processor s input port. The Add String Attribute window will open. 9. In the Added Output Attributes on the right-side of the window, double-click NewString and rename the added attribute Error Status.2. Page 9 of 19

10 10. Navigate to the Options tab and enter a New Attribute Value of Recurred. 11. Click OK to close the Add String Attribute window. 12. On the canvas, double-click the words Add String Attribute and rename the processor Add Error Status.2 Attribute With Value 'Recurred'. Add the Third Logic Check Your third logic check will take the output from your second logic check s Fail port. In other words, it will only operate on records that did not pass either of the first two logic checks. The third logic check will determine whether you are dealing with a new error that has occurred for the first time (this could happen, for example, if new records are added to the data file). You will be looking for errors that have a NULL currentstate (meaning that they did not exist in the last run), but which are current errors. Page 10 of 19

11 1. In the Tool Palette, on the right-side of the screen, click to select the Audit family of processors, and then drag an Logic Check processor onto the Canvas. 2. Wire the Fail output of the Logic Check processor that you renamed Is this a remediated alert that has recurred - perhaps because of human error? (Logic Check) to the new Logic Check processor s input port. The Logic Check window will open. 3. In the Logic Check window, select the Current Error and currentstate attributes and click to move them to the list of Selected Attributes. Page 11 of 19

12 4. Navigate to the Options tab, and configure it as displayed below: 5. Click OK to close the Logic Check window. Page 12 of 19

13 6. On the canvas, double-click the words Logic Check and rename the processor Is this a completely new error? (Logic Check). Note that in this case you do not need to add an error status, since the error status is only required to inform reception rules, and reception rules are not required in order to create a new error (they are only required to change the state of existing errors). Merge the Error Status Fields, and also Merge the Records That Pass Any of the Logic Checks Back into a Single Stream Two of your three Logic Check processors are linked to Add String Attribute processors. These Add String Attribute processors each add an Error Status attribute: the attributes are called Error Status.1 and Error Status.2 respectively. (As explained above, the third Logic Check processor does not need to generate an error status.). We now want to merge these two Error Status attributes into a single attribute, which we will simply call Error Status. And whilst we are doing this, we can also join back together the Pass data streams from each of the three Logic Checks, so that we can present a single Error Message data stream for publishing to Case Management. 1. In the Tool Palette, on the right-side of the screen, click to select the Transformation family of processors, and then drag a Merge Attributes processor onto the Canvas. 2. Wire the output port of the first Add String Attribute processor, which you renamed Add Error Status.1 Attribute With Value 'Remediated' to the input port of the Merge Attributes processor. The Merge Attributes window will open. 3. Cancel out of the Merge Attributes window for now, and wire the output port of the second Add String Attribute processor, which you renamed Add Error Status.2 Attribute With Page 13 of 19

14 Value 'Recurred' to the input port of the Merge Attributes processor. The Merge Attributes window will open. 4. Again, cancel out of the Merge Attributes window for now, and wire the Pass port of the third Logic Check processor, which you renamed Is this a completely new error? (Logic Check) to the input port of the Merge Attributes processor. The Merge Attributes window will open. Do not cancel out of the Merge Attributes window this time. 5. In the Merge Attributes window, in the Available Attributes list, select Error Status.1 and Error Status.2, and click. 6. On the right-side of the window, under Merged Attributes, double click Merged, and amend the new attribute s name to Error Status. The value from either Error Status.1 or Error Status.2 will be placed in the new Error Status attribute. Note that it is logically impossible for both attributes to be populated for the same record. Note also that for new errors (those that pass the third logic check), the new Error Status attribute will be NULL. 7. Click OK to close the Merge Attributes window. 8. On the canvas, double-click the words Merge Attributes and rename the processor Create Error Status attribute (Merge Attributes). Page 14 of 19

15 Run the Process 1. In the toolbar at the top of the canvas, click to run your process. 1. Once the process has finished running, in the canvas, single-click each of the Logic Checks in turn, and, in the Results Browser, examine the passes and fails for each Logic Checks. Assuming that you have recently completed the Publishing to Case Management course, and that you have therefore already published errors from the parts.csv file, you should find that the process runs successfully, but that no records pass any of the three Logic Checks. This is entirely to be expected. All errors are existing errors, none are open, and none have been remediated. Therefore all errors fail all three checks. These errors do not need to be published to Case Management as alerts, since the alerts already created for them will persist, and do not require a change of state. Bulk Delete Your Cases and Alerts You now want to test how your process deals with new errors. To do this, you will need to bulk delete all of your existing cases and alerts, which will have the affect of emptying the cases table of its data. 1. Return to the EDQ Launchpad. Page 15 of 19

16 2. On the Launchpad, click the Case Management link to launch the user interface. Allow any Java webstart confirmation boxes that may appear so that the client software can be downloaded. If you are asked whether you want to run the application, click Run. If a dialog box warns you that the Windows Firewall has blocked some aspects of the program, click Unblock. 3. The Login to localhost dialog will open. Login with the following credentials: a. Username: dnadmin b. Password: dnadmin Page 16 of 19

17 4. The Case Management user interface opens: 5. Navigate to the Filter tab (look near the bottom-left of the screen for this). 6. In the Type box, select both Case and Alert. (To select multiple items keep your finger on the Ctrl button whilst clicking with your mouse). 7. In the Source box, select Errors. 8. Click. All of the cases and alerts for the Errors case source are displayed in a list. Page 17 of 19

18 9. Click. 10. A message will warn that the bulk operation will affect all cases that are relevant to the currently selected filter. Click OK. 11. A message will be displayed warning that the process may take some time (it won t as we only have a small number of cases and alerts). Click OK to dismiss the message. 12. Near the top-left of the screen, click. As you have deleted all of the cases and alerts, the list should now appear empty. Purge Your Project In order to properly test how your process deals with new errors, you will also need to purge your project. This will delete the project s staged data and its results. 1. Return to the Director user interface. 2. In the Director UI s Project Browser right-click your Case Management Training project, and select Purge Project. Page 18 of 19

19 3. A dialog will ask you if you are sure that you want to purge all of the data from the project. Click OK. 4. If prompted, Save any changes. Run the Snapshot and the Process 1. In the Director UI s Project Browser expand the Staged Data node within your Case Management Training project. 2. Right-click the Case Management Tables.cases snapshot, and select Run. 3. Right-click the PARTS Table snapshot, and select Run. 4. In the Director UI s Project Browser expand the Processes node within your Case Management Training project. 5. Right-click the 1.Audit Data Records process, and select Run. 6. Once the 1.Audit Data Records process has finished running, double-click the 2.Publish Alerts to Case Management process to open it on the canvas. 7. At the top of the canvas, click to run the 2.Publish Alerts to Case Management process. 8. Once the 2.Publish Alerts to Case Management process has finished running, in the canvas, single-click each of the Logic Checks in turn, and, in the Results Browser, examine the passes and fails for each Logic Checks. On this run, you should find that all of the records fail the first two Logic Checks, but that all of the records pass the third and final Logic Check. This is because, since we have bulk deleted the cases and alerts from Case management, and purged all of the staged data from our project, all errors are treated as new errors. We are not yet in a position to test whether all three of our Logic Checks work as we would expect, but we will do this in a later lab. Page 19 of 19

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

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 5: Delete What You Won t Need from the Publish Process

Lab 5: Delete What You Won t Need from the Publish Process 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

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

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

Getting Started with Outlook Web App (OWA)

Getting Started with Outlook Web App (OWA) Getting Started with Outlook Web App (OWA) Office 365 User Guide When first accessing your new Office 365 account, or if you are having any issues with your regular email client, use the below directions

More information

Oracle Enterprise Data Quality

Oracle Enterprise Data Quality Oracle Enterprise Data Quality Hands-on-Lab 7653 Oracle Openworld 2017 Table of Contents Scenario... 3 Part 1 Launch the Director User Interface... 4 Part 2 Profiling the data using EDQ Product Data Services...

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

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

Microsoft OneDrive. How to login to OneDrive:

Microsoft OneDrive. How to login to OneDrive: Microsoft OneDrive The beauty of OneDrive is that is accessible from anywhere you have an Internet connection. You can access it from a Mac or Windows computer. You can even access it on your SmartPhone

More information

Fairfield University Using Xythos for File Storage

Fairfield University Using Xythos for File Storage Fairfield University Using Xythos for File Storage Version 7.0 Table of Contents I: Accessing your Account...2 II: Uploading Files via the Web...2 III: Manage your Folders and Files via the Web...4 IV:

More information

BizFlow Introduction Course. Exercise Guide

BizFlow Introduction Course. Exercise Guide BizFlow Introduction Course Exercise Guide Exercise 1 Design a process and save it to the desktop The objective of this exercise is to understand how to design a process off-line and save it to your desktop.

More information

Quick Reference Guide Hosting WebEx Meetings

Quick Reference Guide Hosting WebEx Meetings Quick Reference Guide Hosting WebEx Meetings You can schedule meetings in advance, or start an instant meeting and invite participants to join you. They do not have to subscribe to WebEx. They simply click

More information

Guide to fix the problem with Problets

Guide to fix the problem with Problets Guide to fix the problem with Problets COP 2512 - IT Programming Fundamentals In order to fix the problem of not being able to run Problets on your web browser, please follow the following steps: 1. Make

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

More information

Navigating a Database Efficiently

Navigating a Database Efficiently Navigating a Database Efficiently 1 Navigating a Database Efficiently THE BOTTOM LINE Often, the people who use a database are not the same people who create a database, and thus they may have difficulty

More information

Online App Access: Quick Set-up & Instructions

Online App Access: Quick Set-up & Instructions Online App Access: Quick Set-up & Instructions Welcome to The Media Audit You will be accessing data ONLINE through our Citrix app, available by visiting: app.themediaaudit.com This simple guidebook contains

More information

Testing Documentation

Testing Documentation Testing Documentation Create-A-Page Group 9: John Campbell, Matthew Currier, Dan Martin 5/1/2009 This document defines the methods for testing Create-A-Page, as well as the results of those tests and the

More information

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan that is shown below. Logo Page Heading

More information

IM L07 Configuring Enterprise Vault Data Classification Services

IM L07 Configuring Enterprise Vault Data Classification Services IM L07 Configuring Enterprise Vault Data Classification Services Description This lab will enable you to configure Data Classification Services (DCS) to work with Enterprise Vault. See how DCS can help

More information

PayrollSE Year End Checklist

PayrollSE Year End Checklist Classification - Restricted PayrollSE 2016-17 Year End Checklist Introduction Welcome to the PayrollSE Year End Checklist. This document is designed to guide you through the Year End process, although

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications WordPress is an easy-to-use weblog system, providing numerous features like categories, ratings, as well as plugins installation. This installer application will easily install the WordPress tool to a

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

Kean University. System Guide. cougar.kean.edu. Your window to the world

Kean University.  System Guide. cougar.kean.edu.   Your window to the world Kean University E-Mail System Guide cougar.kean.edu www.kean.edu Your window to the world USING KEAN UNIVERSITY E-MAIL SYSTEM (COUGAR) This document is divided into three sections: Messenger Express Basics:

More information

Lab 11-1 Lab User Profiles and Tracking

Lab 11-1 Lab User Profiles and Tracking In the following lab instructions, you will be setting up groups, users, and passwords to require password-protected login to Kofax Capture modules. Rights will be assigned to the groups and users that

More information

Outlook 2003 Desktop Configuration for Remote Access User Guide

Outlook 2003 Desktop Configuration for Remote Access User Guide Outlook 2003 Desktop Configuration for Remote Access User Guide Outlook 2003 Desktop Configuration for Remote Access 1 of 9 Transferring Microsoft Outlook Data How to Export Personal Folders (.pst) File

More information

Open Client Base Client Base Online Select Advance Search. If there is an option, select Leisure:

Open Client Base Client Base Online Select Advance Search. If there is an option, select Leisure: Open Client Base Client Base Online Select Advance Search If there is an option, select Leisure: Continue down the page selecting your search criteria for your clients. Select OK. Using Merge to E-Mail

More information

Overview of Cisco UCS Manager GUI

Overview of Cisco UCS Manager GUI Overview of Cisco UCS Manager GUI This chapter includes the following sections: Overview of Cisco UCS Manager GUI, page 1 Logging in to Cisco UCS Manager GUI through HTTPS, page 6 Logging in to Cisco UCS

More information

Overview of Cisco UCS Manager GUI

Overview of Cisco UCS Manager GUI Overview of Cisco UCS Manager GUI This chapter includes the following sections: Overview of Cisco UCS Manager GUI, page 1 Logging in to Cisco UCS Manager GUI through HTTPS, page 6 Logging in to Cisco UCS

More information

CTC Accounts Active Directory Synchronizer User Guide

CTC Accounts Active Directory Synchronizer User Guide i Contents Overview... 3 System Requirements... 4 Additional Notes... 5 Installation and Configuration... 6 Running the Synchronizer Interactively... 7 Automatic Updates... 7 Logging In... 8 Options...

More information

SecureLogin 8.7 Application Definition Wizard Administration Guide. December, 2018

SecureLogin 8.7 Application Definition Wizard Administration Guide. December, 2018 SecureLogin 8.7 Application Definition Wizard Administration Guide December, 2018 Legal Notice For information about NetIQ legal notices, disclaimers, warranties, export and other use restrictions, U.S.

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Remote VPN Remote access for personal devices

Remote VPN Remote access for personal devices Remote VPN Remote access for personal devices About Remote VPN Remote VPN provides staff and students with secure, authenticated remote access to personal and shared network filespace and to web-based

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

PayrollSE Year End Checklist

PayrollSE Year End Checklist Classification - Public PayrollSE 2014-15 Year End Checklist Introduction Welcome to the PayrollSE Year End Checklist. This document is designed to guide you through the Year End process, although not

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Cervical Cytology ICE system user manual

Cervical Cytology ICE system user manual Cervical Cytology ICE system user manual Instructions for Greater Manchester, Cumbria and Lancashire GP practices accessing ICE Desktop via Internet Explorer In this document: Page: 1. Access and login

More information

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE 2015 Adobe Systems Incorporated. All rights reserved. Technical Note: Adobe Experience Manager DAM Connector for Adobe Drive CC

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

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

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5 SWITS User Manual This document focuses on the elements required to Access SWITS Total Pages: 5 Accessing SWITS Using Your Browser to Access SWITS Identity Management Context Creating a shortcut California

More information

Overview of Web Interface to CenturyLink B2B Gateway

Overview of Web Interface to CenturyLink B2B Gateway Overview of Web Interface to CenturyLink B2B Gateway Access and Password Policy for the Web Interface Like all Internet sites, the CenturyLink B2B web site requires an account containing both an identity

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

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

Installing VPN client by Jupiter Networks:

Installing VPN client by Jupiter Networks: Installing VPN client by Jupiter Networks: 1. Open Firefox. The icon is likely on your desktop. If you are using internet explorer, much of the steps will be the same, but the way that Internet Explorer

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

Client Setup (.NET, Internet Explorer)

Client Setup (.NET, Internet Explorer) Powered By: Version 2.0 Created December, 2008 .NET & Internet Explorer Setup Client Setup (.NET, Internet Explorer) The WebTMS application itself is a windows executable program. In order to run WebTMS,

More information

SharePoint. Team Site End User Guide. Table of Contents

SharePoint. Team Site End User Guide. Table of Contents Table of Contents Introduction... 1 Logging in for the First Time:... 1 Areas of the team site:... 2 Navigating the team site:... 3 Adding Content to the team site:... 3 The Ribbon:... 3 Adding a Link:...

More information

What s New in Outlook 2007

What s New in Outlook 2007 What s New in Outlook 2007 This document provides a general overview of the new and improved features in Microsoft Outlook 2007. Opening Assurances 1. Functionality is the same; how we interact with the

More information

Prognosis Essentials Lab

Prognosis Essentials Lab Prognosis Essentials Lab Prognosis fundamentals Wednesday, October 18, 2017 Randy Andrews Rick Scheidegger Please check-in on the mobile app - see your class record, remember what tests to take, and help

More information

Joomla Installer User Guide. Version 1.0

Joomla Installer User Guide. Version 1.0 Joomla Installer User Guide Version 1.0 Contents 0. Document History... 3 1. Introduction... 4 1.1. Navigation... 5 2. Install... 6 3. Uninstall... 8 4. Go to... 9 5. Manage... 10 6. Application Changes...

More information

Table of Contents. Part I Introduction 1. Part II Registration 3. Part III After You Submit 9. Index 0. Contents. 1 Starting...

Table of Contents. Part I Introduction 1. Part II Registration 3. Part III After You Submit 9. Index 0. Contents. 1 Starting... Contents I Table of Contents Part I Introduction 1 1 Logging... In 1 2 Home... 1 3 My Profile... 2 Part II Registration 3 1 Starting... A Registration 3 2 General... 3 3 Attendees... 4 4 Housing... 5 5

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

Farin Foresight/Insight RemoteApp Access Document last updated: 2/7/2017

Farin Foresight/Insight RemoteApp Access Document last updated: 2/7/2017 1 P a g e Farin Foresight/Insight RemoteApp Access Document last updated: 2/7/2017 In the event of any questions or issues, please contact our Farin Client Care team: Farin Financial Risk Management: 866-230-2161

More information

Mediasite Desktop Recorder (MDR)

Mediasite Desktop Recorder (MDR) Mediasite Desktop Recorder (MDR) Install Mediasite Desktop Recorder You will download Mediasite Desktop Recorder (MDR) from My Mediasite https://mediasite.ecu.edu/ms/mymediasite and install it on your

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

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go.

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go. Installing Wordpress from JMA Lab to JMA Server 1. Take note these instructions are streamlined for the JMA lab they can t be performed in this fashion from home! 2. Wordpress is a database driven web

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

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

Remote Deposit Transition Guide

Remote Deposit Transition Guide Remote Deposit Transition Guide Important actions you will need to take to transition your Remote Deposit Capture Service: User must be an administrator on the computer before starting the transition guide

More information

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop IBM IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop Lab Exercises Contents LAB 1 BUILD-FROM-SCRATCH LAB - PART 1... 4 1.1 START LOMBARDI AUTHORING ENVIRONMENT... 4 1.1.1 START THE

More information

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide BE Share Microsoft Office SharePoint Server 2010 Basic Training Guide Site Contributor Table of Contents Table of Contents Connecting From Home... 2 Introduction to BE Share Sites... 3 Navigating SharePoint

More information

WELCOME TO KIN (KIRKWOOD INFORMATION NETWORK) Initial steps to set up KIN on your computer.

WELCOME TO KIN (KIRKWOOD INFORMATION NETWORK) Initial steps to set up KIN on your computer. WELCOME TO KIN (KIRKWOOD INFORMATION NETWORK) Initial steps to set up KIN on your computer. After launching KIN, there are 4 steps that must be done on your computer to allow single sign on. Add KIN website

More information

How to Export a Report in Cognos Analytics

How to Export a Report in Cognos Analytics IBM Cognos Analytics How to Export a Report in Cognos Analytics Reports viewed in IBM Cognos Analytics can be exported in many formats including Excel. Some of the steps for exporting are different depending

More information

APP-J: WHAT IS APPLICATION JUKEBOX?

APP-J: WHAT IS APPLICATION JUKEBOX? APP-J: WHAT IS APPLICATION JUKEBOX? Use Application Jukebox (App-J) to run University software on any Windows PC or laptop. Launch apps from the Application Jukebox web page Install the Application Jukebox

More information

Lab - Remote Desktop in Windows 8

Lab - Remote Desktop in Windows 8 Lab - Remote Desktop in Windows 8 Introduction In this lab, you will remotely connect to another Windows 8 computer. Recommended Equipment The following equipment is required for this exercise: Two Windows

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

Install New Java Client, Release GL 3.1 For Workstations Currently without Java

Install New Java Client, Release GL 3.1 For Workstations Currently without Java Install New Java Client, For Workstations Currently without Java Following are instructions for installing the latest version of the Java client (GL3.1.3.228.5) on a workstation that does NOT currently

More information

IDENTITY MANAGEMENT & SINGLE SIGN-ON (SSO) HELP GUIDE UPDATED JUNE 2018

IDENTITY MANAGEMENT & SINGLE SIGN-ON (SSO) HELP GUIDE UPDATED JUNE 2018 IDENTITY MANAGEMENT & SINGLE SIGN-ON (SSO) HELP GUIDE UPDATED JUNE 2018 Identity Management Benefits Single Sign-On (SSO) Login and gain access to desired DAU applications Eliminates the need for multiple

More information

Gmail Labels + Filters

Gmail Labels + Filters Gmail Labels + Filters Table of Contents Purpose Logging In What ARE labels Creating labels How can you USE labels What ARE filters Creating filters How are labels useful Logging In Open browser and go

More information

Instructions for Accessing Student Access Center (SAC)

Instructions for Accessing Student Access Center (SAC) Instructions for Accessing Student Access Center (SAC) 1. Log into the FCS website http:\\www.fultonschools.org 2. Access the on the Students and Parents menu by resting the cursor on the title Move the

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

Practice Labs User Guide

Practice Labs User Guide Practice Labs User Guide This page is intentionally blank Contents Introduction... 3 Overview... 3 Accessing Practice Labs... 3 The Practice Labs Interface... 4 Minimum Browser Requirements... 5 The Content

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

HOW TO BUILD YOUR FIRST ROBOT

HOW TO BUILD YOUR FIRST ROBOT Kofax Kapow TM HOW TO BUILD YOUR FIRST ROBOT INSTRUCTION GUIDE Table of Contents How to Make the Most of This Tutorial Series... 1 Part 1: Installing and Licensing Kofax Kapow... 2 Install the Software...

More information

Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault

Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault Lab instructions The objective of this exercise is to illustrate how to create a HATS portlet that uses Web Express

More information

Web-CAT Guidelines. 1. Logging into Web-CAT

Web-CAT Guidelines. 1. Logging into Web-CAT Contents: 1. Logging into Web-CAT 2. Submitting Projects via jgrasp a. Configuring Web-CAT b. Submitting Individual Files (Example: Activity 1) c. Submitting a Project to Web-CAT d. Submitting in Web-CAT

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

More information

Cmpt 101 Lab 1 - Outline

Cmpt 101 Lab 1 - Outline Cmpt 101 Lab 1 - Outline Instructions: Work through this outline completely once directed to by your Lab Instructor and fill in the Lab 1 Worksheet as indicated. Contents PART 1: GETTING STARTED... 2 PART

More information

Version 1.4. FaxCore User Manual

Version 1.4. FaxCore User Manual Version 1.4 FaxCore User Manual Table of Contents Introduction... 1 Contacting FaxCore... 1 Getting Started... 2 Understanding FaxCore s User Interface... 4 Settings: Your User Profile... 4 Personal Information

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

User Guide Ahmad Bilal [Type the company name] 1/1/2009

User Guide Ahmad Bilal [Type the company name] 1/1/2009 User Guide Ahmad Bilal [Type the company name] 1/1/2009 Contents 1 LOGGING IN... 1 1.1 REMEMBER ME... 1 1.2 FORGOT PASSWORD... 2 2 HOME PAGE... 3 2.1 CABINETS... 4 2.2 SEARCH HISTORY... 5 2.2.1 Recent

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox CIS 231 Windows 7 Install Lab #2 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

CourseWorks Quick Start

CourseWorks Quick Start Introduction CourseWorks Quick Start CourseWorks (aka Sakai ) is the university's new course management system, which allows instructors to develop and maintain course Web sites. With CourseWorks, instructors

More information

GRASP Designer User Manual Draft Version - English Edition

GRASP Designer User Manual Draft Version - English Edition GRASP Designer User Manual Draft Version - English Edition GRASP Designer version 0.0.32 July, 2015 By Information and Knowledge Management Unit, UN WFP Palestine Country Office July, 2015 1 GRASP Designer

More information

Nortel Quality Monitoring Search and Replay Guide

Nortel Quality Monitoring Search and Replay Guide Nortel Quality Monitoring Search and Replay Guide NN44480-106 Product release 7.0 Standard 02.02 November 2009 Nortel Quality Monitoring Search and Replay Guide Publication number: NN44480-106 Product

More information

Use Active Directory To Simulate InfoPath User Roles

Use Active Directory To Simulate InfoPath User Roles Page 1 of 7 Use Active Directory To Simulate InfoPath User Roles You can leverage the information returned by the Active Directory web service to simulate InfoPath User Roles, which are disabled in browser

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Table of Contents RURO, Inc. All Rights Reserved

Table of Contents RURO, Inc. All Rights Reserved Table of Contents ABOUT THIS GUIDE... 7 Purpose of this Guide...7 ACCESSING THE SYSTEM AS A CLIENT PORTAL USER... 7 Navigating the Client Portal...7 Creating and Submitting a New Requisition...8 Accepting

More information

Introduction to INTERFACExpress and Data Entry

Introduction to INTERFACExpress and Data Entry Introduction to INTERFACExpress and Data Entry Welcome to INTERFACExpress, the new MLS system brought to you by RealtyServer. This system accesses a central database of listings using an Internet connection

More information

212Posters Instructions

212Posters Instructions 212Posters Instructions The 212Posters is a web based application which provides the end user the ability to format and post content, abstracts, posters, and documents in the form of pre-defined layouts.

More information

DB Browser UI Specs Anu Page 1 of 15 30/06/2004

DB Browser UI Specs Anu Page 1 of 15 30/06/2004 DB Browser UI Specs Anu Page 1 of 15 30/06/2004 Contents Topic Page Introduction 3 UI Model 3 Main Window 4 Column properties tab 5 SQL Tab 6 View Record window 7 Connection Information window 9 Setting

More information

TESTING WITH DIFFERENT PROFILES

TESTING WITH DIFFERENT PROFILES TESTING WITH DIFFERENT PROFILES Another simple, practical guide for getting started with Provar www.provartesting.com info@provartesting.com Introduction 3 Testing with Different Profiles 3 Introduction

More information

Wireless Printing in Mac OS X with IPP At Concordia University of Edmonton

Wireless Printing in Mac OS X with IPP At Concordia University of Edmonton Wireless Printing in Mac OS X with IPP At Concordia University of Edmonton Overview Concordia offers access to the campus printer, CUCA_PRINT, through the Internet Printing Protocol which enables printing

More information

Step by Step Directions on how to use Kizoa

Step by Step Directions on how to use Kizoa Step by Step Directions on how to use Kizoa What is Kizoa? Kizoa is a free slideshow maker and photo editing site. You are able to upload, organize, edit, create, show and share projects you have created

More information

SOMETHING BRILLIANT IS ON THE HORIZON. Preview & User Set-Up Guide. Important Dates: Preview & User Set-up: October 9-19 Launch Date: October 22

SOMETHING BRILLIANT IS ON THE HORIZON. Preview & User Set-Up Guide. Important Dates: Preview & User Set-up: October 9-19 Launch Date: October 22 SOMETHING BRILLIANT IS ON THE HORIZON Important Dates: Preview & User Set-up: October 9-19 Launch Date: October 22 Preview & User Set-Up Guide On October 9 the Preview & User Set-up period of our new and

More information