Analysis Modeling. CpSc 372: Software Engineering Foundations. Jason O. Hallstrom

Size: px
Start display at page:

Download "Analysis Modeling. CpSc 372: Software Engineering Foundations. Jason O. Hallstrom"

Transcription

1 Analysis Modeling CpSc 372: Software Engineering Foundations Jason O. Hallstrom Authorship Disclaimer. These slides are intended to serve as teaching instruments for an undergraduate course in Software Engineering. While the slides were formatted by Dr. Hallstrom, the content is compiled from other sources, including the readings listed on the course website, Dr. Pressman s Software Engineering textbook, and various internet materials. In almost every case, the ideas belong to someone other than Dr. Hallstrom. Indeed, text is often quoted verbatim without an explicit citation (to improve the readability of the slides). The original authors retain all copyrights. If you are interested in citing any of the material in these slides, please contact Dr. Hallstrom for the original source(s). DO NOT CITE THIS PRESENTATION. THE CONTENT SHOULD NOT BE ATTRIBUTED TO DR. HALLSTROM. SEE DR. HALLSTROM IF YOU HAVE ANY QUESTIONS.

2 Activity Diagrams For complex use-cases, the process flow may be difficult to understand. Activity diagrams provide a graphical view of the interactions in a usecase. ot her f unct ions m ay also be select ed t hum bnail views valid passwor ds/ ID select major function select surveillance enter password and user ID invalid passwor ds/ ID prompt for reentry no input t r ies r em ain select a specif ic cam er a input t r ies r em ain select specific camera - thumbnails select camera icon Example: See Pressman Chapter 8, Section 8.5.2, pg. 192 view camera output in labelled window prompt for another view exit t his f unct ion see anot her cam er a

3 Swimlane Diagrams In some cases, it help to indicate which actors (or analysis classes) are responsible for which activities. h o m e o w n e r c a m e ra i n t e rf a c e enter password and user ID select m ajor function valid passwords/ ID in valid p asswo r d s/ ID A swimlane diagram serves this purpose. o t h er f u n ct io n s m ay also b e select ed select surveillance prom pt for reentry no input t r ies r em ain in p u t t r ies r em ain Example: t humbnail views select a specif ic camera See Pressman Chapter 8, Section 8.5.3, pg. 193 select specif ic cam era - thum bnails select cam era icon generate video output view cam era output in labelled window prom pt for another view exit t h is f u n ct io n see anot her cam er a

4 Use-Case Diagrams You ll probably have a lot of use-cases! Use case diagrams (UCD) provide a diagrammatic table of contents, and a high-level overview of the system. Diagrams Show: Actors Use-cases Relationships among them Customer Online Bookstore System Browse products Add products to shopping cart View shopping cart Checkout Example UCD Credit card transaction processor Billing system

5 A Roadmap We are going to examine some of the key tools used for creating an analysis model. General Use-cases Use-case diagrams Activity diagrams Swimlane diagrams Structured Analysis Data object diagrams ERD diagrams Data flow diagrams Process specifications These tools are not specific to either structured analysis or OO analysis. OO Analysis Class diagrams Packages CRC cards Sequence Diagrams

6 Data Flow Diagrams Structured Analysis: Models data elements Attributes Relationships Models processes that transform data modeled using modeled using Modeling Tools: Data object diagrams ERD diagrams Data flow diagram Process narrative A data flow diagram describes information flow among a set of processes and actors. A process narrative describes how a single process transforms input data to output data. 1 *

7 Data Objects A data object is a domain element that will be manipulated by the system. Characteristics: Plays a necessary role Characterized by attributes Uniquely identifiable (?) Examples: Roles Events Places External entities Structures Other things Object: car Modeling Attributes: VIN # Make Model Price

8 Relationships, Cardinality, Modality Relationships Define connections between objects Cardinality Defines the number of items on either end of a connection Modality Defines the necessity of a connection Person 1 1 insured owns * * Car 1 attached 1 Trailer Entity-Relationship Diagram (ERD)

9 DFD: A Basic Example (See Pressman Chapter 8, Section 8.6.1, pg. 195) Control panel commands and data SafeHome software display information alarm type Panel display Alarm Sensors sensor status telephone tones Telephone line External entities (squares) Data flows (directed edges) Processes (circles) Notice that the system is represented as a single bubble. This is known as a level 0 DFD, or a context diagram.

10 DFDs and Progressive Refinement (See Pressman Chapter 8, Section 8.6.1, pg. 196) Each DFD reveals progressively more detail than the DFD that preceded it. Level 1 DFD: Control panel commands and data Interact with user Configure request Start/stop request Configure system Refinement continues until each bubble can be (easily) implemented as a program module. password Activate / deactivate system Process password

11 Process Narrative (See Pressman Chapter 8, Section 8.6.4, pg. 200) password Process password A process specification describes all of the flow processes in the final (most detailed) DFD. The process password transform performs password validation at the control panel for the SafeHome security function. Process password receives a four-digit password from the interact with user function. The password is first compared to the master password stored within the system A process specification can be represented as a collection of process narratives.

12 How are DFDs Constructed? (See Pressman Chapter 8, Section 8.6.1, pg. 195) Scope document Grammatical parse Level 0 DFD Develop process narratives Grammatical parse Next level DFD (nouns = external entities, data/control objects, data stores) (verbs = processes) Note that nouns and verbs are associated with one another.

13 Some Guidelines Level 0 DFD should contain only a single bubble All arrows and bubbles should be meaningfully labeled Refinement begins by isolating next level processes, data objects, and data stores Refine only one bubble at a time Data flow continuity must be maintained between levels

14 Let s Try it Out! The Video Library Management System An excerpt from the scope document: The video library management system will interact with the user through a web-based browser interface. When the user logs into the system, the system will determine the user s access privileges based on the user configuration database. If the user is an administrator, the system will allow the user to enter new movie titles, new actor information, etc. If the user is not an administrator, the system will allow the user to query the system based on movie title, actor, director, etc. What might the level 0 DFD look like? Level 1?

15 And a Bit of Review Another excerpt from the scope document: The system will allow the user to store a number of information elements with each video, director, and actor. Each video will be characterized by a title, a genre descriptor, a short synopsis, a list of directors, a list of actors, a rating, and a UPC code. Each actor and director will be characterized by a first and last name, a year of birth, and a brief biography. When the user is viewing a video entry, they will be able to retrieve the full actor (or director) information by clicking the actor s (or director s) name. What would be an appropriate ERD diagram for this excerpt?

SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur. School of Computing, Department of IT

SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur. School of Computing, Department of IT SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur School of Computing, Department of IT 1 Analysis Modeling Cardinality and Modality Cardinality

More information

2 SYSTEM DESCRIPTION TECHNIQUES

2 SYSTEM DESCRIPTION TECHNIQUES 2 SYSTEM DESCRIPTION TECHNIQUES 2.1 INTRODUCTION Graphical representation of any process is always better and more meaningful than its representation in words. Moreover, it is very difficult to arrange

More information

Chapter 7. Process Analysis and Diagramming

Chapter 7. Process Analysis and Diagramming Chapter 7 Process Analysis and Diagramming Chapter 5 introduced the concept of business process and composition as an aspect of process design. But how can you recognize a process in a description of business

More information

Software Engineering. Session 6 Main Theme Detailed-Level Analysis and Design. Dr. Jean-Claude Franchitti

Software Engineering. Session 6 Main Theme Detailed-Level Analysis and Design. Dr. Jean-Claude Franchitti Software Engineering Session 6 Main Theme Detailed-Level Analysis and Design Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical Sciences Presentation

More information

FORD MOTOR COMPANY OF AUSTRALIA LTD

FORD MOTOR COMPANY OF AUSTRALIA LTD Microcat MARKET Ford Australia User Guide Product developed and supported by: Catalogue information provided by: FORD MOTOR COMPANY OF AUSTRALIA LTD Contents Getting started... 2 Microcat MARKET overview...

More information

Set Top Box User Guide. Global Reach with a Local Touch

Set Top Box User Guide. Global Reach with a Local Touch Set Top Box User Guide Global Reach with a Local Touch Table of Contents REMOTE SET UP 3 SET TOP BOX DIAGRAM 4 SET TOP BOX SETTINGS 5 TURN ON/OFF 5 TV INPUT SETTINGS 5 ADJUSTING THE VOLUME 5 RESETTING

More information

Ordering Textbooks Online through the LCCC Bookstore

Ordering Textbooks Online through the LCCC Bookstore Ordering Textbooks Online through the LCCC Bookstore The following instructions will walk you through purchasing your textbooks online through the LCCC Bookstore. For a flat shipping rate, the LCCC bookstore

More information

Getting Started With AT&T Web Meeting

Getting Started With AT&T Web Meeting Getting Started With AT&T Web Meeting Powered by Cisco WebEx 2009 AT&T Intellectual Property. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property.. Course Goal After

More information

AXIS Camera Station Quick Installation Guide

AXIS Camera Station Quick Installation Guide AXIS Camera Station Quick Installation Guide Copyright Axis Communications AB April 2005 Rev. 3.5 Part Number 23997 1 Table of Contents Regulatory Information.................................. 3 AXIS Camera

More information

IFML by Example: Modeling an Online Bookstore

IFML by Example: Modeling an Online Bookstore IFML by Example: Modeling an Online Bookstore This document exemplifies the versatility and adaptability of IFML by modeling the most common features available in a simple UI for a point of sale (POS)

More information

Cisco Video Surveillance Operations Manager Mobile App User Guide

Cisco Video Surveillance Operations Manager Mobile App User Guide Cisco Video Surveillance Operations Manager Mobile App User Guide Release 7.2 Revised: September 8, 2013 Cisco Video Surveillance Operations Manager Mobile App allows you to view live video from a mobile

More information

ones who assigned 1 to

ones who assigned 1 to The Patron Experience in Axis 360 While searching through your OPAC (online catalog) for a book, you will see that your online catalog now contains Axis 360 ebooks. After you click on the title and open

More information

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views

More information

How to Program a Commander or Scout to Connect to Pilot Software

How to Program a Commander or Scout to Connect to Pilot Software How to Program a Commander or Scout to Connect to Pilot Software Commander and Scout are monitoring and control products that can transfer physical environmental conditions and alarm sensor electrical

More information

Online Test Monitor Certification Course 2014-2015 Transcript

Online Test Monitor Certification Course 2014-2015 Transcript Online Test Monitor Certification Course 2014-2015 Transcript Slide # Slide 1 Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Minnesota Assessments Test Security Training for Districts and Schools Welcome

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

USER GUIDE Version 2.0

USER GUIDE Version 2.0 USER GUIDE Version 2.0 TABLE of CONTENTS Introduction... 3 Hardware Overview... 3 Software Overview... 4 DAYSHIFT Panel... 5 Settings Panel... 6 Setup Tab... 6 Configure... 6 Show User Guide... 6 Preview

More information

Using the Content Distribution Manager GUI

Using the Content Distribution Manager GUI CHAPTER 3 Using the Content Distribution Manager GUI The Content Distribution Manager is the central location from which much of the work of creating and managing ACNS networks and hosted content can be

More information

Understanding Data Flow Diagrams Donald S. Le Vie, Jr.

Understanding Data Flow Diagrams Donald S. Le Vie, Jr. Understanding Flow Diagrams Donald S. Le Vie, Jr. flow diagrams (DFDs) reveal relationships among and between the various components in a program or system. DFDs are an important technique for modeling

More information

Object-oriented design methodologies

Object-oriented design methodologies Object-oriented design methodologies An object-oriented methodology is defined as the system of principles and procedures applied to object-oriented software development. Five years ago, there was no standard

More information

CARS: Agency Standard Reports. Mark Ross and Bryan Erwin August 13, 2014

CARS: Agency Standard Reports. Mark Ross and Bryan Erwin August 13, 2014 CARS: Agency Standard Reports Mark Ross and Bryan Erwin August 13, 2014 Agency Standard Reporting - ASR Agency Standard Reporting (ASR) is a new module in the Central Accounting Reporting System (CARS).

More information

POWER NETWORK. 800-02577-iPcams 2/10 Rev. A

POWER NETWORK. 800-02577-iPcams 2/10 Rev. A POWER NETWORK Total Connect Online Help Guide for: ip Cameras ipcam-wi Camera ipcam-pt Pan and Tilt Camera 800-02577-iPcams 2/10 Rev. A POWER NETWORK ip Cameras Online Help Guide This guide covers the

More information

Microsoft Dynamics GP 2010

Microsoft Dynamics GP 2010 Microsoft Dynamics GP 2010 Workflow Administrator s Guide March 30, 2010 Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

USING THE ADMIN MENU SELECTION IN THE MY MEMBERSHIP RECORD ONLINE

USING THE ADMIN MENU SELECTION IN THE MY MEMBERSHIP RECORD ONLINE USING THE ADMIN MENU SELECTION IN THE MY MEMBERSHIP RECORD ONLINE Moose International (MI) has developed special access for Administrators, Recorders, and Moose Legion Secretaries within the My Membership

More information

KANSAS TRUCK ROUTING INTELLIGENT PERMITTING SYSTEM

KANSAS TRUCK ROUTING INTELLIGENT PERMITTING SYSTEM KANSAS TRUCK ROUTING INTELLIGENT PERMITTING SYSTEM KS Company User Guide This user guide describes the operational procedures for K-TRIPS and the screens encountered by users during those procedures. Motor

More information

Thomson Learning TM DOCUMENTING INFORMATION SYSTEMS CHAPTER

Thomson Learning TM DOCUMENTING INFORMATION SYSTEMS CHAPTER CHAPTER 3 DOCUMENTING INFORMATION SYSTEMS LEARNING OBJECTIVES To read and evaluate data flow diagrams. To read and evaluate systems flowcharts. To read and evaluate entity-relationship diagrams. To prepare

More information

1. Click and select to enter the Device Management interface. 2. Click to add a new device.

1. Click and select to enter the Device Management interface. 2. Click to add a new device. Overview Guarding Expert (Android Tablet) V3.1 mobile client software, which is designed for Android Tablet on the basis of Android OS (Version 3.0 or higher), can be used to remotely monitor the live

More information

LiteCommerce 2Checkout.com Module

LiteCommerce 2Checkout.com Module LiteCommerce 2Checkout.com Module Version 2.11 Reference Manual LiteCommerce 2Checkout.com Module Reference Manual I Table of Contents Introduction...1 Administrator...2 Zone Installing...3 the Module...4

More information

Entity/Relationship Modelling. Database Systems Lecture 4 Natasha Alechina

Entity/Relationship Modelling. Database Systems Lecture 4 Natasha Alechina Entity/Relationship Modelling Database Systems Lecture 4 Natasha Alechina In This Lecture Entity/Relationship models Entities and Attributes Relationships Attributes E/R Diagrams For more information Connolly

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual

GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual Overview GadgetTrak Mobile Security is an advanced software application designed to assist in the recovery of your mobile

More information

Intel Active Management Technology with System Defense Feature Quick Start Guide

Intel Active Management Technology with System Defense Feature Quick Start Guide Intel Active Management Technology with System Defense Feature Quick Start Guide Introduction...3 Basic Functions... 3 System Requirements... 3 Configuring the Client System...4 Intel Management Engine

More information

User s Manual. Management Software for ATS

User s Manual. Management Software for ATS ATS Monitor User s Manual Management Software for ATS Table of Contents 1. ATS Monitor Overview... 2 2. ATS Monitor Install and Uninstall... 2 2.1. System Requirement... 2 2.2. Software Install... 2 2.3.

More information

Installation Guide v1.11 and Higher

Installation Guide v1.11 and Higher Progeny Imaging Installation Guide v1.11 and Higher 00-02-1604 Rev. D ECN P3483 Revision Date: 6/2/2015 0120 Contents 1. About This Manual... 3 Text Conventions... 3 2. Welcome to Progeny Imaging... 4

More information

Microsoft Dynamics GP Release. Workflow Administrator s Guide

Microsoft Dynamics GP Release. Workflow Administrator s Guide Microsoft Dynamics GP Release Workflow Administrator s Guide December 10, 2012 Copyright Copyright 2012 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information

More information

Ford Module Programming (FMP) Purchase and Installation Guide

Ford Module Programming (FMP) Purchase and Installation Guide CREATE A NEW ACCOUNT Ford Module Programming (FMP) Purchase and Installation Guide NOTE: For first time users of FMP, you must create an account prior to purchasing any services from this web-site. Process

More information

OnGuard Online User Guide

OnGuard Online User Guide OnGuard Online User Guide T81165/Rev ER-7991-40 Jan 2005 Contents 1 Introduction Related documents 1 1 Navigation of the software 1 2 How to use this guide 1 4 2 Managing Access Holidays and Timezones

More information

Single Property Website Quickstart Guide

Single Property Website Quickstart Guide Single Property Website Quickstart Guide Win More Listings. Attract More Buyers. Sell More Homes. TABLE OF CONTENTS Getting Started... 3 First Time Registration...3 Existing Account...6 Administration

More information

HOME PAGE. Quick Start Guide. Here s how to navigate the Films On Demand home page you first see when you log in.

HOME PAGE. Quick Start Guide. Here s how to navigate the Films On Demand home page you first see when you log in. HOME PAGE Here s how to navigate the Films On Demand home page you first see when you log in. SEE AND EDIT YOUR CUSTOMIZED PLAYLISTS CREATE YOUR PERSONAL LOGIN TO ACCESS CUSTOM FEATURES ORGANIZE VIDEOS

More information

(Refer Slide Time 00:56)

(Refer Slide Time 00:56) Software Engineering Prof.N. L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-12 Data Modelling- ER diagrams, Mapping to relational model (Part -II) We will continue

More information

Deposit Direct. Getting Started Guide

Deposit Direct. Getting Started Guide Deposit Direct Getting Started Guide Table of Contents Before You Start... 3 Installing the Deposit Direct application for use with Microsoft Windows Vista... 4 Running Programs in Microsoft Windows Vista...

More information

Using the JNIOR with the GDC Digital Cinema Server. Last Updated November 30, 2012

Using the JNIOR with the GDC Digital Cinema Server. Last Updated November 30, 2012 Using the JNIOR with the GDC Digital Cinema Server Last Updated November 30, 2012 The following is an explanation of how to utilize the JNIOR with the GDC Digital Cinema Server. Please contact INTEG via

More information

Chapter 7 Data Modeling Using the Entity- Relationship (ER) Model

Chapter 7 Data Modeling Using the Entity- Relationship (ER) Model Chapter 7 Data Modeling Using the Entity- Relationship (ER) Model Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 7 Outline Using High-Level Conceptual Data Models for

More information

Secure Messaging Service

Secure Messaging Service Human Resources Secure Messaging Service Receiving Secure Emails from West Berkshire Council Table of Contents What are Secure Messaging notifications?... 3 How do I set up my Secure Messaging account?...

More information

STARTING WEBSTER...3 GETTING STARTED WITH WEBSTER TOOLS...5

STARTING WEBSTER...3 GETTING STARTED WITH WEBSTER TOOLS...5 Table of Contents STARTING WEBSTER...3 GETTING STARTED WITH WEBSTER TOOLS...5 WEBSTER SMARTBOARD ICONS...5 THE WEBSTER SOFTWARE MAIN WINDOW...6 THE WEBSTER COMMAND TOOLBAR...7 THE PROJECTION TOOLBAR...8

More information

Working with the Call Center

Working with the Call Center Quick Reference: Call Center Working with the Call Center Contents Roadmap: Working with web-based patients... 2 Roadmap: Working with phone-based patients... 4 Roadmap: Working with paper-based patients...

More information

User Guide FOR TOSHIBA STORAGE PLACE

User Guide FOR TOSHIBA STORAGE PLACE User Guide FOR TOSHIBA STORAGE PLACE (This page left blank for 2-sided "book" printing.) Table of Contents Overview... 5 System Requirements... 5 Storage Place Interfaces... 5 Getting Started... 6 Using

More information

AvMed s Physician-to- Physician Referral Program

AvMed s Physician-to- Physician Referral Program AvMed s Physician-to- Physician Referral Program Quick Reference Guide For Primary Care Physicians 1 P age Introduction Primary Care Physicians (PCPs) play a critical role in the health of our Medicare

More information

IBM Tivoli Network Manager 3.8

IBM Tivoli Network Manager 3.8 IBM Tivoli Network Manager 3.8 Configuring initial discovery 2010 IBM Corporation Welcome to this module for IBM Tivoli Network Manager 3.8 Configuring initial discovery. configuring_discovery.ppt Page

More information

Terminology. Enabling Parent Single Sign-On. Server Configuration

Terminology. Enabling Parent Single Sign-On. Server Configuration Parent Single Sign-On offers a number of benefits, including access to multiple students with one sign in, a personalized account for each parent and guardian, and the ability for parents to retrieve their

More information

ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner

ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner Before You Start Downloading Before we start downloading anything, it is important to note that sometimes you may need to

More information

Select the Crow s Foot entity relationship diagram (ERD) option. Create the entities and define their components.

Select the Crow s Foot entity relationship diagram (ERD) option. Create the entities and define their components. Α DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL Microsoft Visio Professional is a powerful database design and modeling tool. The Visio software has so many features that we can t possibly demonstrate

More information

Remote PC Guide for Standalone PC Implementation

Remote PC Guide for Standalone PC Implementation Remote PC Guide for Standalone PC Implementation Updated: 2007-01-22 The guide covers features available in NETLAB+ version 3.6.1 and later. IMPORTANT Standalone PC implementation is no longer recommended.

More information

JVC CAM Control (for ipad) User Guide

JVC CAM Control (for ipad) User Guide JVC CAM Control (for ipad) User Guide English This is the instruction manual for the software (for ipad) for Live Streaming Camera GV-LS2/GV-LS1 made by JVC KENWOOD Corporation. The models compatible with

More information

Business Definitions for Data Management Professionals

Business Definitions for Data Management Professionals Realising the value of your information TM Powered by Intraversed Business Definitions for Data Management Professionals Intralign User Guide Excerpt Copyright Intraversed Pty Ltd, 2010, 2014 W-DE-2015-0004

More information

Getting Started Guide

Getting Started Guide Snap-Link Mobile allows you to monitor and control lights, security, audio, temperatures and webcams on handheld mobile devices, such as Smartphones, PDAs or other devices running Windows Mobile operating

More information

VisionView Maintenance Utility 1.2.0 Release Notes

VisionView Maintenance Utility 1.2.0 Release Notes VisionView Maintenance Utility 1.2.0 Release Notes Copyright 2008-2009, Cognex Corporation. All rights reserved. Overview This document describes Release 1.2.0 of the Cognex VisionView Maintenance Utility.

More information

Job Streaming User Guide

Job Streaming User Guide Job Streaming User Guide By TOPS Software, LLC Clearwater, Florida Document History Version Edition Date Document Software Trademark Copyright First Edition 08 2006 TOPS JS AA 3.2.1 The names of actual

More information

Trupointe Cooperative On Line Payment by Credit Card Procedure for Customers Original Date: 10/19/12 Revised Date: 11/18/13

Trupointe Cooperative On Line Payment by Credit Card Procedure for Customers Original Date: 10/19/12 Revised Date: 11/18/13 Log onto www.trupointe.com Website Click on My Account Login Click on Make A Payment You can choose to either Register or Pay Without Registering To Pay Without Registering, skip to Page 4 Page 1 of 6

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

Document Services Online Customer Guide

Document Services Online Customer Guide Document Services Online Customer Guide Logging in... 3 Registering an Account... 3 Navigating DSO... 4 Basic Orders... 5 Getting Started... 5 Attaching Files & Print Options... 7 Advanced Print Options

More information

Appendix A. CMS(Client Management Software)

Appendix A. CMS(Client Management Software) Appendix A. CMS(Client Management Software) A-1. Install CMS for Windows PC CMS is a program for communication between DVR and PC to control signal and video. Insert the enclosed CD, and go to CD-ROM Drive

More information

TOTAL DEFENSE MOBILE SECURITY USER S GUIDE

TOTAL DEFENSE MOBILE SECURITY USER S GUIDE TOTAL DEFENSE MOBILE SECURITY USER S GUIDE Publication date 2015.04.09 Copyright 2015 Total Defense Mobile Security LEGAL NOTICE All rights reserved. No part of this book may be reproduced or transmitted

More information

Capturing Material. Section 3

Capturing Material. Section 3 Section 3 Capturing Material Duration: 60 minutes Capturing material is the process of creating media files from video or audio source material. This section describes how to capture material from different

More information

OBiTALK Portal Device Management

OBiTALK Portal Device Management OBiTALK Portal Device Management By using the OBiTALK portal, you can easily manage features, control device access privileges and add up to two (2) BYOD (Bring Your Own Device) SIP or Google Voice service

More information

1 First Steps. 1.1 Introduction

1 First Steps. 1.1 Introduction 1.1 Introduction Because you are reading this book, we assume you are interested in object-oriented application development in general and the Caché postrelational database from InterSystems in particular.

More information

Setting up an MS SQL Server for IGSS

Setting up an MS SQL Server for IGSS Setting up an MS SQL Server for IGSS Table of Contents Table of Contents...1 Introduction... 2 The Microsoft SQL Server database...2 Setting up an MS SQL Server...3 Installing the MS SQL Server software...3

More information

There is a separate guide for students, available from Moodle at Student Resources > General Resources > Using Moodle for Students

There is a separate guide for students, available from Moodle at Student Resources > General Resources > Using Moodle for Students ClickView Help Sheet Using ClickView: Teacher Guide About this Help Sheet This guide is in three parts A. Browsing the ClickView library at ClickView Online B. Adding a ClickView video to a Moodle Course

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Business Portal for Microsoft Dynamics GP. Project Time and Expense Administrator s Guide Release 10.0

Business Portal for Microsoft Dynamics GP. Project Time and Expense Administrator s Guide Release 10.0 Business Portal for Microsoft Dynamics GP Project Time and Expense Administrator s Guide Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

EXTENDED LEARNING MODULE A

EXTENDED LEARNING MODULE A EXTENDED LEARNING MODULE A DESIGNING DATABASES AND ENTITY- RELATIONSHIP DIAGRAMMING Student Learning Outcomes 1. Identify how databases and spreadsheets are both similar and different. 2. List and describe

More information

exacqvision Web Service User Manual (updated December 15, 2014)

exacqvision Web Service User Manual (updated December 15, 2014) exacqvision Web Service User Manual (updated December 15, 2014) Information in this document is subject to change without notice. Copyright 2008-2014, Exacq Technologies, Inc. All rights reserved. Exacq

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

Table of Contents. Table of Figures

Table of Contents. Table of Figures 2 Table of Contents Installation procedure for the IDS VoIP Software 5 Installing software on the Hardware Master 8 Installing software on the Network Master 10 Hardware installation for the VoIP System

More information

RHINO TRACKS STANDARD GPS VEHICLE TRACKER

RHINO TRACKS STANDARD GPS VEHICLE TRACKER RHINO TRACKS STANDARD GPS VEHICLE TRACKER Product Code: RHINO TRACKS STS ABOUT YOUR RHINO TRACKS STS This user guide covers the installation and operation of your RHINO TRACKS STS. The latest version of

More information

CONNECTING TO THE DTS WIRELESS NETWORK USING WINDOWS VISTA

CONNECTING TO THE DTS WIRELESS NETWORK USING WINDOWS VISTA CONNECTING TO THE DTS WIRELESS NETWORK USING WINDOWS VISTA There are three steps to accessing the web through the DTS wireless network. 1. Obtain the wireless network Username and Password. This is something

More information

ivms-4200 Client Software Quick Start Guide V1.02

ivms-4200 Client Software Quick Start Guide V1.02 ivms-4200 Client Software Quick Start Guide V1.02 Contents 1 Description... 2 1.1 Running Environment... 2 1.2 Surveillance System Architecture with an Performance of ivms-4200... 3 2 Starting ivms-4200...

More information

Prestashop Ship2MyId Module. Configuration Process

Prestashop Ship2MyId Module. Configuration Process Prestashop Ship2MyId Module Configuration Process Ship2MyID Module Version : v1.0.2 Compatibility : PrestaShop v1.5.5.0 - v1.6.0.14 1 P a g e Table of Contents 1. Module Download & Setup on Store... 4

More information

Using the SB Partners Client Web Portal

Using the SB Partners Client Web Portal Using the SB Partners Client Web Portal Note: These are instructions for clients of SB Partners LLP. Table of Contents Overview... 2 Receiving your username and password... 3 Logging on... 4 Navigating

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Remote Desktop Solution, (RDS), replacing CITRIX Home Access

Remote Desktop Solution, (RDS), replacing CITRIX Home Access Remote Desktop Solution, (RDS), replacing CITRIX Home Access RDS Applications on a Computer Overview RDS has replaced citrix for remote access at home for College staff and pupils. This does not replace

More information

Getting Started Guide: Transaction Download for QuickBooks 2009-2011 Windows. Information You ll Need to Get Started

Getting Started Guide: Transaction Download for QuickBooks 2009-2011 Windows. Information You ll Need to Get Started Getting Started Guide: Transaction Download for QuickBooks 2009-2011 Windows Refer to the Getting Started Guide for instructions on using QuickBooks online account services; to save time, improve accuracy,

More information

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad SYNTHESYS MANAGEMENT User Management Synthesys.Net User Management 1 SYNTHESYS.NET USER MANAGEMENT INTRODUCTION...3 STARTING SYNTHESYS USER MANAGEMENT...4 Viewing User Details... 5 Locating individual

More information

Cloud Services. Email Encryption. SecureMail Admin Guide

Cloud Services. Email Encryption. SecureMail Admin Guide Cloud Services Email Encryption SecureMail Admin Guide 11/22/2014 ADMINISTRATOR CONTROL PANEL GENERAL USE There are a few basics that you will encounter repeatedly when using the Hosting Control Panel

More information

Getting Started With the APTA Learning Center. for PT CPI Course Participants. A Basic Overview

Getting Started With the APTA Learning Center. for PT CPI Course Participants. A Basic Overview Getting Started With the APTA Learning Center for PT CPI Course Participants A Basic Overview Prepared by: APTA Professional Development Department Date: March 2009 2009 The American Physical Therapy Association

More information

Paya Card Services Payment Gateway Extension. Magento Extension User Guide

Paya Card Services Payment Gateway Extension. Magento Extension User Guide Paya Card Services Payment Gateway Extension Magento Extension User Guide Table of contents: 1. 2. 3. 4. 5. How to Install..3 General Settings......8 Use as Payment option..........10 Success View..........

More information

Transferring Your Hosting Account

Transferring Your Hosting Account Transferring Your Hosting Account Setting up your Web site on our secure hosting servers So you want to host your Web site on our secure servers, but you want to avoid costly mistakes and excessive site

More information

DIGICLIENT 8.0 Remote Agent Software

DIGICLIENT 8.0 Remote Agent Software DIGICLIENT 8.0 Remote Agent Software MODEL: D17800 Series Instruction Manual English Version 1.0 Copyright 2007 Digimerge Technologies Inc Table of Contents Table of Contents About the DigiClient 8.0...

More information

Chapter 4 Control Center

Chapter 4 Control Center Chapter 4 Control Center Control Center is a central monitoring station solution (CMS) that provides the CMS operator with these major features: Access to client DVRs (See Remote DVR) Access to remote

More information

Cisco VoIP 8941/8945 Phones Reference Guide ICIT Technology Training and Advancement training@uww.edu

Cisco VoIP 8941/8945 Phones Reference Guide ICIT Technology Training and Advancement training@uww.edu Cisco VoIP 8941/8945 Phones Reference Guide ICIT Technology Training and Advancement training@uww.edu Updated on 7/31/2014 TABLE OF CONTENTS Phone Overview... 4 Phone Terms... 5 Operating Your Phone...

More information

Add in Guide for Microsoft Dynamics CRM May 2012

Add in Guide for Microsoft Dynamics CRM May 2012 Add in Guide for Microsoft Dynamics CRM May 2012 Microsoft Dynamics CRM Addin Guide This document will guide you through configuration of the Microsoft Dynamics CRM addin. Microsoft Dynamics CRM is a bit

More information

B. KTT Web-based File Transfer

B. KTT Web-based File Transfer B. KTT Web-based File Transfer The Key Total Treasury Internet File Transfer module allows clients to upload or download data files to/from KeyBank s transmission platform using a PC and Internet browser.

More information

CSC 342 Semester I: 1425-1426H (2004-2005 G)

CSC 342 Semester I: 1425-1426H (2004-2005 G) CSC 342 Semester I: 1425-1426H (2004-2005 G) Software Engineering Systems Analysis: Requirements Structuring Context & DFDs. Instructor: Dr. Ghazy Assassa Software Engineering CSC 342/Dr. Ghazy Assassa

More information

Chapter 4: Tools of Modern Systems Analysis

Chapter 4: Tools of Modern Systems Analysis Just Enough Structured Analysis Chapter 4: Tools of Modern Systems Analysis Nature has... some sort of arithmetical-geometrical coordinate system, because nature has all kinds of models. What we experience

More information

Note: A WebFOCUS Developer Studio license is required for each developer.

Note: A WebFOCUS Developer Studio license is required for each developer. WebFOCUS FAQ s Q. What is WebFOCUS? A. WebFOCUS was developed by Information Builders Incorporated and is a comprehensive and fully integrated enterprise business intelligence system. The WebFOCUShttp://www.informationbuilders.com/products/webfocus/architecture.html

More information

Lab 3.1.2 Creating a Logical Network Diagram

Lab 3.1.2 Creating a Logical Network Diagram Lab 3.1.2 Creating a Logical Network Diagram Objectives Use router and switch commands to obtain information about an existing network. Use Cisco Network Assistant to obtain information about an existing

More information

Maryland Technology Literacy Standards for Students

Maryland Technology Literacy Standards for Students Standard 1.0 Technology Systems: Develop foundations in the understanding and uses of technology systems Pre-kindergarten Kindergarten Grade 1 Grade 2 Grade 3 A. Systems A. Systems A. Systems A. Systems

More information

GPMD CheckoutSuite for Magento Documentation

GPMD CheckoutSuite for Magento Documentation GPMD CheckoutSuite for Magento Documentation Version: 1.0.0 Table of Contents Installation Configuration Setting up Goals in Google Analytics Installation IMPORTANT: Before installing any Magento Extension

More information

My LMS. Learning Management System Guide for Students

My LMS. Learning Management System Guide for Students My LMS Learning Management System Guide for Students Revision Date: October 17, 2014 Table of Contents Learning Management System (LMS) Overview... 2 Accessing My LMS... 2 General Navigation... 5 Your

More information

Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices!

Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices! Nook (Non-Tablet) Compatible with Barnes & Noble ebooks and Adobe EPUB ebook Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices! If this is the first time you are using your

More information