Software Design. May 1, Version 6.1. CSC Advanced Topics in Software Engineering Spring 2014

Size: px
Start display at page:

Download "Software Design. May 1, Version 6.1. CSC Advanced Topics in Software Engineering Spring 2014"

Transcription

1 Software Design CSC Advanced Topics in Software Engineering Spring 2014 May 1, 2014 Version 6.1 Prepared by Qutaiba Albluwi, Younghun Chae, Tripti Garg, Zach Oliveira

2 Document Status Sheet Document Title Author(s) Software Design Document Q. Albluwi, Y. Chae, T. Garg, Z. Oliveira Version 6.1 Document Status Proposed Version Submission Date Changes N/A Changes to Section 1: Change connectors to reflect composition relationship and inheritance - Changes to Section 3: Convert tables into UML tables Specify variable types to all table attributes Specify PK and FK variables Updates on the following Tables: UserTable UserProfileTable: EvidenceTable AlertsTable: DataTable: AlertProfileLogTable: Changes to Section 3 and 4: Change the order of ER-Diagram and Database Tables Update the following Tables in Section 3: UserProfileTable Entity UserTable Entity DataTable Entity AlertsTable Entity AlertProfileTable Entity Changes to Section 4: All Tables: o Normalized into 3NF 2

3 o add AlertLog table o add lines between each table o add between each table Update the following Table UserTable UserProfileTable AlertsTable EvidenceTable DataTable AlertProfileTable AlertProfileLogTable Update UML Class Diagram to include legend - Update DB Connector class in sections 1 and 2 by adding extra methods - Update sequence diagram 3: View Alerts - Add sequence diagrams 8, 9,10 and Update Sequence Diagram Add sequence Diagram Update UML Diagram and Class relationship diagram to include the class: DataLog - Update UML diagram to include AlertProfile and AlertProfileLog Reorganized the Sequence Diagrams Updated SQL Queries for each Sequence Diagram 3

4 Table of Contents 1. UML Class Diagrams Class Relationships HTDSEngine Relationship with Other Modules Uploader Relationship with Other Modules Viewer Relationship with Other Modules Analyzer Relationship with Other Modules ConfigMgr Relationship with Other Modules Database Tables Sequence Diagrams Sequence Diagram 1: Login Sequence Diagram 2: Select a Task Sequence Diagram 3: View Alerts Sequence Diagram 4: Upload Input Files Sequence Diagram 5: Analyze Data Sequence Diagram 6: Add User Sequence Diagram 7: Configure Alert Database Sequence Diagram 8: Update User Sequence Diagram 9: Logout Sequence Diagram 10: Create Profile Sequence Diagram 11: View Data

5 1. UML Class Diagrams 5

6 2. Class Relationships 2.1 HTDSEngine Relationship with Other Modules 2.2 Uploader Relationship with Other Modules 2.3 Viewer Relationship with Other Modules 6

7 2.4 Analyzer Relationship with Other Modules 2.5 ConfigMgr Relationship with Other Modules 7

8 3. Entity Relationship (ER) Diagram 8

9 4. Database Tables 9

10 5. Sequence Diagrams 5.1 Sequence Diagram 1: Login SQL Commands: SQL 1.1 FROM USER JOIN USERPROFILE ON USER.USERPROFILEID = USERPROFILE.USERPROFILEID WHERE USERNAME AND PASSWORDS = PASSWORD(@password) 10

11 5.2 Sequence Diagram 2: Select a Task 11

12 5.3 Sequence Diagram 3: View Alerts 12

13 SQL Commands: SQL 3.1 FROM ALERTS A JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID WHERE DATE AND DATE SQL 3.2 FROM ALERTS A JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID SQL 3.3 FROM ALERTS A JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID JOIN USER U ON AL.USERID = U.USERID WHERE USERID AND FULLNAME AND USERNAME SQL 3.4 FROM ALERTS A JOIN DATA D ON A.SPN = D.PHONE JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID WHERE V_NAME SQL 3.5 FROM ALERTS A JOIN DATA D ON A.SPN = D.PHONE JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID WHERE PHONE_NUMBER SQL 3.6 FROM ALERTS A JOIN DATA D ON A.SPN = D.PHONE JOIN ALERTLOG AL ON A.ALERTLOGID = AL.ALERTLOGID WHERE COLOR 13

14 5.4 Sequence Diagram 4: Upload Input Files SQL Commands: SQL 4.1 INSERT INTO DATALOG (FILENAME, DATE, datalogid = LAST_INSERTED_ID(); INSERT INTO DATA (V_NAME, PHONE, DATALOGID) 14

15 5.5 Sequence Diagram 5: Analyze Data SQL Commands: SQL 5.1 FROM ALERTPROFILE A JOIN ALERTPROFILELOG AL ON A.ALERTPROFILELOGID = AL.ALERTPROFILELOGID WHERE A.ALERTPROFILELOGID SQL 5.2 SELECT PHONE, COUNT(PHONE) AS FREQUENCY FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID WHERE D.DATALOGID GROUP BY PHONE HAVING COUNT(PHONE) > 1 SQL 5.3 INSERT INTO ALERTLOG (USERID, DATALOGID, ALERTPROFILELOGID, DATE) @date) alertlogid = LAST_INSERTED_ID(); INSERT INTO ALERTS (COLOR, FREQUENCY, SPN, ALERTLOGID) @alertlogid) 15

16 5.6 Sequence Diagram 6: Add User SQL Commands: SQL 6.1 INSERT INTO USER (FULLNAME, USERNAME, PASSWORDS, USERPROFILEID) 16

17 5.7 Sequence Diagram 7: Configure Alert Database 17

18 5.8 Sequence Diagram 8: Update User SQL Commands: SQL 8.1 UPDATE USER SET WHERE USERID AND FULLNAME AND USERNAME SQL 8.2 UPDATE USER SET USERPROFILEID WHERE USERID AND FULLNAME AND USERNAME 18

19 5.9 Sequence Diagram 9: Logout 19

20 5.10 Sequence Diagram 10: Create Profile SQL Commands: SQL 10.1 INSERT INTO USERPROFILE (PROFILENAME, VIEWS, UPLOAD, ANALYZES, SQL 10.2 INSERT INTO ALERTPROFILELOG (USERID, DATE, = LAST_INSERTED_ID(); INSERT INTO ALERTPROFILE (LEVELS, COLOR, THRESHOLD, ALERTPROFILELOGID) @alertprofilelog_id) 20

21 5.11 Sequence Diagram 11: View Data 21

22 SQL Commands: SQL 11.1 FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID WHERE V_NAME AND PHONE AND DATALOGID SQL 11.2 FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID SQL 11.3 FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID JOIN USER U ON DL.USERID = U.USERID WHERE USERID AND FULLNAME AND USERNAME SQL 11.4 FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID WHERE V_NAME SQL 11.5 FROM DATA D JOIN DATALOG DL ON D.DATALOGID = DL.DATALOGID WHERE PHONE 22

SE 4DB3 TUTORIAL 2: REDUCTION TO RELATIONAL SCHEMAS

SE 4DB3 TUTORIAL 2: REDUCTION TO RELATIONAL SCHEMAS SE 4DB3 TUTORIAL 2: REDUCTION TO RELATIONAL SCHEMAS Jan 29, 2016 Sample ER diagram date Representing of Strong Entity Sets Let E be a strong entity set with descriptive attributes a 1, a 2,, a n. We represent

More information

Software Requirement Specification

Software Requirement Specification Software Requirement Specification CSC 505 - Advanced Topics in Software Engineering Spring 2014 March 27, 2014 Version 4.0 Prepared by Qutaiba Albluwi, Younghun Chae, Tripti Garg, Zach Oliveira Document

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

CuteUploadUMLProject ASP.NET 2.0

CuteUploadUMLProject ASP.NET 2.0 CuteUploadUMLProject ASP.NET 2.0 Programming Tools Microsoft Visual Studio 2005 Database SQL SERVER Designer tool Dreamweaver Application server IIS 6.0 Platform Windows 2003 Implementation Phases - Upload

More information

SQL Injection. SQL injection is a code injection technique that might destroy your database.

SQL Injection. SQL injection is a code injection technique that might destroy your database. SQL Injection SQL injection is a code injection technique that might destroy your database. SQL injection is one of the most common web hacking techniques. SQL injection is the placement of malicious code

More information

IndustrySafe Guide to Importing and Editing Inspection Checklist

IndustrySafe Guide to Importing and Editing Inspection Checklist IndustrySafe Guide to Importing and Editing Inspection Checklist This guide describes the process for uploading and editing inspection checklists using the IndustrySafe Safety Management Software. 1 Log

More information

High-Level Database Models (ii)

High-Level Database Models (ii) ICS 321 Spring 2011 High-Level Database Models (ii) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 1 Logical DB Design: ER to Relational Entity sets to

More information

Desire2Learn: Getting Started

Desire2Learn: Getting Started Desire2Learn: Getting Started Table of Contents Getting Started... 1 Logging In and Out... 1 My Home... 2 Introductory Tasks... 3 My Courses... 3 Course Home... 4 Common Icons... 4 Page 1 Getting Started

More information

Oracle Financial Services Common Reporting Standard Administration and Configuration Guide. Release October 2017

Oracle Financial Services Common Reporting Standard Administration and Configuration Guide. Release October 2017 Oracle Financial Services Common Reporting Standard Administration and Configuration Guide Release 8.0.5.0.0 October 2017 Oracle Financial Services Common Reporting Standard Administration and Configuration

More information

Cisco Emergency Responder Configuration

Cisco Emergency Responder Configuration After you install Cisco Emergency Responder (Emergency Responder) and configure Cisco Unified Communications Manager (Unified CM), you can configure Emergency Responder so that it begins managing emergency

More information

Database Management Systems,

Database Management Systems, Database Management Systems Database Design (2) 1 Topics Data Base Design Logical Design (Review) Physical Design Entity Relationship (ER) Model to Relational Model Entity Relationship Attributes Normalization

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.4 Date: 12/02/2009 Project Team Kyle Kotowick () Andrew Campbell () Document Control

More information

CLASS DISCUSSION AND NOTES

CLASS DISCUSSION AND NOTES Mon CLASS DISCUSSION AND NOTES September 2009 Tue Wed Thu Fri 7 8 AH-2 Chap. 3 Rel. Model/ Normalization 9 10 Chap. 3 Rel. Model/ Normalization 11 14 15 16 17 18 AH-3; Project Deliverables Chap. 4 DB Design

More information

Carnegie Mellon University Department of Computer Science /615 - Database Applications C. Faloutsos & A. Pavlo, Spring 2014.

Carnegie Mellon University Department of Computer Science /615 - Database Applications C. Faloutsos & A. Pavlo, Spring 2014. Carnegie Mellon University Department of Computer Science 15-415/615 - Database Applications C. Faloutsos & A. Pavlo, Spring 2014 Homework 1 IMPORTANT Plagiarism: Homework may be discussed with other students,

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Portal/Extranet User Guide for Clients

Portal/Extranet User Guide for Clients Portal/Extranet User Guide for Clients Welcome to the ichannel Portal/Extranet. This guide will walk you through logging into your personalized, secure portal/extranet site. It will also show you how to

More information

InSite Prepress Portal Quick Start Guide IPP 8.0

InSite Prepress Portal Quick Start Guide IPP 8.0 InSite Prepress Portal Quick Start Guide IPP 8.0 Exported on 05/15/2018 Table of Contents 1 What is InSite Prepress Portal?...4 2 Logging on and off...5 2.1 Checking your system configuration...5 3 Getting

More information

How to Login, Logout and Manage Password (QRG)

How to Login, Logout and Manage Password (QRG) How to Login, Logout and Manage Password (QRG) This Quick Reference Guide covers the following topics: 1. How to login in to the DCC. How to change (reset) your password 3. What to do if you have forgotten

More information

Vicarious Learning in Informatics YouTute: Database Design

Vicarious Learning in Informatics YouTute: Database Design Vicarious Learning in Informatics YouTute: Database Design Neil Mayo, nmayo@inf.ed.ac.uk Informatics, University of Edinburgh March 29, 2008 1 Introduction This document is a record of database design,

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.3 Date: 11/22/2009 Project Team Kyle Kotowick Andrew Campbell Document Control

More information

BiblioStat Collect Annual Report Tutorial

BiblioStat Collect Annual Report Tutorial BiblioStat Collect Annual Report Tutorial The URL to access the annual report is http://collect.btol.com. Note the browser requirements. Collect is supported on both MAC and Windows operating systems.

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

Including Dynamic Images in Your Report

Including Dynamic Images in Your Report Including Dynamic Images in Your Report Purpose This tutorial shows you how to include dynamic images in your report. Time to Complete Approximately 15 minutes Topics This tutorial covers the following

More information

OJS Quick Guide for ASSOciAte editors 1

OJS Quick Guide for ASSOciAte editors 1 OJS Quick Guide for Associate Editors 1 Content Quick Guide for Asociate EditorS SECTION 1 Login 1 page... 3 SECTION 2 Review 2... 5 1SECTION 1 Login Go to website Login with your username and password

More information

Software Design Description Report

Software Design Description Report 2015 Software Design Description Report CodeBenders Haldun Yıldız 1819663 Onur Aydınay 1819002 Deniz Can Yüksel 1819697 Ali Şihab Akcan 1818871 TABLE OF CONTENTS 1 Overview... 3 1.1 Scope... 3 1.2 Purpose...

More information

CSE 344 Final Review. August 16 th

CSE 344 Final Review. August 16 th CSE 344 Final Review August 16 th Final In class on Friday One sheet of notes, front and back cost formulas also provided Practice exam on web site Good luck! Primary Topics Parallel DBs parallel join

More information

HOW TO SUBMIT AN ORAL PAPER PRESENTATION FOR THE NAN ANNUAL CONFERENCE

HOW TO SUBMIT AN ORAL PAPER PRESENTATION FOR THE NAN ANNUAL CONFERENCE HOW TO SUBMIT AN ORAL PAPER PRESENTATION FOR THE NAN ANNUAL CONFERENCE Submission Deadline: March 30, 2018 1. Click here to access the submission site. 2. NAN Account Holders: please click on the Login.

More information

Review -Chapter 4. Review -Chapter 5

Review -Chapter 4. Review -Chapter 5 Review -Chapter 4 Entity relationship (ER) model Steps for building a formal ERD Uses ER diagrams to represent conceptual database as viewed by the end user Three main components Entities Relationships

More information

Contents Introduction... 5 Using OIM with Unifier Cloud... 7 BI Publisher Reporting in Unifier Cloud... 21

Contents Introduction... 5 Using OIM with Unifier Cloud... 7 BI Publisher Reporting in Unifier Cloud... 21 Unifier Cloud Service Administrator s Setup Guide Release 10.0 November 2014 Contents Introduction... 5 Using OIM with Unifier Cloud... 7 Provisioning Users for OIM 11g... 9 Modifying, Disabling, Enabling

More information

January/February 2011

January/February 2011 CLASS DISCUSSION AND NOTES January/February 2011 Mon Tue Wed Thu Fri 31 Feb. 1 2 3 4 AH-2 (individual) Chap. 3 Rel. Model & Normalization 7 8 9 10 11 AH-3 (team) Chap. 4 DB Design Using Normalization COURSE

More information

Week. Lecture Topic day (including assignment/test) 1 st 1 st Introduction to Module 1 st. Practical

Week. Lecture Topic day (including assignment/test) 1 st 1 st Introduction to Module 1 st. Practical Name of faculty: Gaurav Gambhir Discipline: Computer Science Semester: 6 th Subject: CSE 304 N - Essentials of Information Technology Lesson Plan Duration: 15 Weeks (from January, 2018 to April, 2018)

More information

Tech Note 892 Configuring Microsoft SQL Server 2008 Express Server Authentication for Use with InTouch Alarm DB Logger

Tech Note 892 Configuring Microsoft SQL Server 2008 Express Server Authentication for Use with InTouch Alarm DB Logger Tech Note 892 Configuring Microsoft SQL Server 2008 Express Server Authentication for Use with InTouch Alarm DB Logger All Tech Notes, Tech Alerts and KBCD documents and software are provided "as is" without

More information

MerlinX How-to Guide

MerlinX How-to Guide MerlinX How-to Guide for users hbs.merlinone.net/mx questions? mbrody@hbs.edu 1 INTRO 1. LOGIN Login page: Username: Password: sch00l (the password ends with two zeros followed by a lower case L) Opening

More information

Google Classroom User Manual

Google Classroom User Manual Google Classroom User Manual Table of Contents Table of Contents 1 Google Classroom on a Computer 3 1: Making an Account 3 2: Change Your Profile Photo 5 3: Customize your Notifications 7 4: Join a Class

More information

Oracle Financial Services FATCA Regulatory Reporting Administration and Configuration Guide. Release April 2015

Oracle Financial Services FATCA Regulatory Reporting Administration and Configuration Guide. Release April 2015 Oracle Financial Services FATCA Regulatory Reporting Administration and Configuration Guide Release 6.2.5 April 2015 Oracle Financial Services FATCA Regulatory Reporting Administration and Configuration

More information

SBCC Web File System - Xythos

SBCC Web File System - Xythos Table of Contents Table of Contents...1 Purpose...1 Login Procedure...1 Creating and Sharing a Web Folder for MAT153...2 Dreamweaver Remote Info...4 I Forgot My Pipeline Credentials...6 Purpose This purpose

More information

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th Note: This project is done by two people team or individual. This project must be completed

More information

Getting started with Oracle

Getting started with Oracle Getting started with Oracle The purpose of these pages is to enable you to get started with using Oracle software. They explain how to create an Oracle account and how to start up and begin to use the

More information

Wellington City Council Funding Portal Quick Reference Guide for Applicants

Wellington City Council Funding Portal Quick Reference Guide for Applicants Wellington City Council Funding Portal Quick Reference Guide for Applicants Before you Begin The intended audience for this document is a new user who is registering for the first time or for a returning

More information

CS317 File and Database Systems

CS317 File and Database Systems CS317 File and Database Systems http://dev.mysql.com/downloads/workbench Using MySQL Workbench [PRClab] August 25, 2015 Sam Siewert Resources for MySQL-Workbench Examine Use of MySQL Workbench to Go Between

More information

EasyChair instructions for Authors

EasyChair instructions for Authors EasyChair instructions for Authors The submission and review of papers for NICFD 2016 will be managed through an online conference paper management system called EasyChair. This system gives you, the author,

More information

MoCoMotion and

MoCoMotion and MoCoMotion and elearn@mohawk This manual is designed to introduce new student users to Mohawk s web portal - MoCoMotion and the College s Learning Management System (LMS), elearn@mohawk, and to some of

More information

Moving You Forward A first look at the New FileBound 6.5.2

Moving You Forward A first look at the New FileBound 6.5.2 Moving You Forward A first look at the New FileBound 6.5.2 An overview of the new features that increase functionality and ease of use including: FileBound 6.5.2 Service Pack FileBound Capture 6.6 New

More information

Configuring an Enhanced Standard Security Policy

Configuring an Enhanced Standard Security Policy Configuring an Enhanced Standard Security Policy What is an enhanced standard security policy? Implementing an enhanced standard security policy Configuring an Enhanced Standard Security Policy What is

More information

PIMS Getting Started. Click Here to open the PIMS website. Step 1 Click Create Account

PIMS Getting Started. Click Here to open the PIMS website. Step 1 Click Create Account PIMS Getting Started Click Here to open the PIMS website Step 1 Click Create Account Business New to PIMS? Business/Agency name not in the drop down? Select New Account Select Account Type Non Profit or

More information

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 TABLE OF CONTENTS NO TOPICS PAGES 1 LOGIN 1-3 2 CHANGE PASSWORD 4 3 CREATE NEW REQUEST 5-7 4 VIEW REQUEST 8-9 5 LOGOUT 10 6 FORGOT

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.1 Date: 11/02/2009 Project Team Kyle Kotowick () Andrew Campbell () Document Control

More information

Welcome to quilliup tutorials. Quality Gates Administration. Introduction. Managing Projects. Administration- System configuration and user management

Welcome to quilliup tutorials. Quality Gates Administration. Introduction. Managing Projects. Administration- System configuration and user management Welcome to quilliup tutorials Introduction This guide will grant a beginner and an advanced developer the main guidelines for working with the different applications. quilliup contains the following applications

More information

MeetMe Planner Design description. Version 2.2

MeetMe Planner Design description. Version 2.2 Design description Version 2.2 Revision History Date Version Description Author 2015-07-11 1.0 First version Danijel Sokač Francesco Giarola 2015-14-11 1.1 Mockups update and new use case handling Danijel

More information

A Proposed Method in Agile Practices to Create Requirements Documentation and Test Cases

A Proposed Method in Agile Practices to Create Requirements Documentation and Test Cases A Proposed Method in Agile Practices to Create Requirements Documentation and Cases Palash Bera 1 and Abhimanyu Gupta 2 1 Saint Louis University pbera@slu.edu 2 Saint Louis University abhimanyugupta@slu.edu

More information

3D SAFETY ANDROID APPLICATION AND TROUBLESHOOTING

3D SAFETY ANDROID APPLICATION AND TROUBLESHOOTING 3D SAFETY ANDROID APPLICATION AND TROUBLESHOOTING 3D Safety PO Box 650 Botany NSW 1455 T: 1300 663 195 F: 1300 663 495 www.3dsafety.com.au PHONE SETTINGS You may need to check that your phone will let

More information

Oracle Academy Amazing Books Part 1: Building Tables and Adding Constraints

Oracle Academy Amazing Books Part 1: Building Tables and Adding Constraints Oracle Academy Amazing Books In this section, you use the Object Browser in Oracle Application Express to: Build the base tables for the project Add foreign key constraints Be sure to have a copy of the

More information

Online Reporting and Information Management System (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies

Online Reporting and Information Management System (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies March 31, 2015 Version 1.0 Version History Version Changes Date 1.0 Original release March 31, 2015 2 Table of Contents 1. Introduction...

More information

ipad App Published on Panopto Support (http://support.panopto.com)

ipad App Published on Panopto Support (http://support.panopto.com) This page shows how to use the Panopto ios application on an ipad To view the iphone specific documentation click here [1]. To record with the ios App your Panopto server must be 4.3 or higher. Login To

More information

The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document.

The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document. UCSP WEBSITE USER GUIDE The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document. If you should have any issues or comments, please

More information

HOW TO SUBMIT A GRAND ROUNDS PRESENTATION FOR THE NAN ANNUAL CONFERENCE

HOW TO SUBMIT A GRAND ROUNDS PRESENTATION FOR THE NAN ANNUAL CONFERENCE HOW TO SUBMIT A GRAND ROUNDS PRESENTATION FOR THE NAN ANNUAL CONFERENCE Submission Deadline: March 29, 2019 1. Click here to access the submission site. 2. NAN Account Holders: please click on the Login.

More information

Portal/Extranet User Guide for Clients

Portal/Extranet User Guide for Clients Portal/Extranet User Guide for Clients Welcome to the ichannel Portal/Extranet. This guide will walk you through logging into your personalized, secure portal/extranet site. It will also show you how to

More information

Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University

Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University Wardani Muhamad Abstract Final Project Monitoring System is an information system that constructed

More information

NEWSCenter. InfoQuest Limited / Updated: 5-Feb-07 NEWSCenter Call Center: Ext. 222

NEWSCenter. InfoQuest Limited / Updated: 5-Feb-07 NEWSCenter Call Center: Ext. 222 1 ก ก NEWSCenter (1) (2) ก ก 1 ก ก 9 ก ก 2 ก 9 ก 2 NEWSCenter Toolbars 10 ก ก 2 ก Query Builder 10 ก ก 3 ก Word List 11 ก 4 ก User Defined Topics 12 ก ก 5 ก Previous / Next Highlight 12 ก ก 6 ก 13 ก ก

More information

HOW TO SUBMIT A POSTER PRESENTATION FOR THE NAN ANNUAL CONFERENCE

HOW TO SUBMIT A POSTER PRESENTATION FOR THE NAN ANNUAL CONFERENCE HOW TO SUBMIT A POSTER PRESENTATION FOR THE NAN ANNUAL CONFERENCE Submission Deadline: March 29, 2019 1. Click here to access the submission site. 2. NAN Account Holders: please click on the Login. This

More information

Please go to to complete the threshold questions. Click Here for the PIMS Users Manual

Please go to   to complete the threshold questions. Click Here for the PIMS Users Manual The 2019 HOME Application will be completely online this year! In order to apply online, all users must register/login to PIMS and submit their Threshold & Self Certification questions. Once approved,

More information

DBSG3 USER GUIDE. Rel Web-based access to DBSG3 data sets

DBSG3 USER GUIDE. Rel Web-based access to DBSG3 data sets DBSG3 USER GUIDE Rel. 1.1 Web-based access to DBSG3 data sets September 2 nd 2006 Table of Contents 1 INTRODUCTION...3 2 FUNCTIONAL OVERVIEW OF THE SOFTWARE...3 3 DATA MAINTENANCE PROCEDURE...4 3.1 Microsoft

More information

Updating Your Local Program Webpage

Updating Your Local Program Webpage I. Go to www.soor.org Updating Your Local Program Webpage II. III. IV. On the top right hand side of the home page of www.soor.org click on LPC LOGIN. Type in your Username and Password, then click the

More information

Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT

Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT The submission of abstract for APRC2 will be managed through an online conference paper management system called EasyChair. This system

More information

T Technical specification: FASTAXON Group: Muuntaja

T Technical specification: FASTAXON Group: Muuntaja T-76.115 Technical specification: FASTAXON Group: Muuntaja 0 Version History Owner of the document: All members of the group Muuntaja. Version Date Author(s) Description 0.1 15.11.2003 Pekka Korhonen First

More information

For the Dorm Energy Monitoring DB design, some constraints are given and some are absent. You are asked to fill in some of these absent constraints.

For the Dorm Energy Monitoring DB design, some constraints are given and some are absent. You are asked to fill in some of these absent constraints. Assignment A-w4 Spring 2018 Name: For the Dorm Energy Monitoring DB design, some constraints are given and some are absent. You are asked to fill in some of these absent constraints. 1. Fill Foreign Key

More information

(Faculty members websites) System. User manual fac.ksu.edu.sa

(Faculty members websites) System. User manual fac.ksu.edu.sa (Faculty members websites) System User manual fac.ksu.edu.sa 1 Contents Home page... 3 Faculty member s websites page... 4 Search screen... 5 Website page... 6 Course page... 7 Courses page... 8 Curriculum

More information

How to Navigate the Challenge Runner Website

How to Navigate the Challenge Runner Website How to Navigate the Challenge Runner Website How to Join Challenge Runner Create an Account To join the Maroon Moves Walking Challenge 1. Click on the Maroon Moves Challenge Runner Link: https://www.challengerunner.com/login/challenge/3e64ro-1h81

More information

TRAVELTRAX Web Reporting Release Notes 6.3 November 04, 2011

TRAVELTRAX Web Reporting Release Notes 6.3 November 04, 2011 TRAVELTRAX Web Reporting Release Notes 6.3 November 04, 2011 TABLE OF CONTENTS SECTION I: Conventions... 2 SECTION II: Introduction... 3 SECTION III: Features and Enhancements... 4 SECTION V: Appendix

More information

An Online Permit Application & Approval System

An Online Permit Application & Approval System An Online Permit Application & Approval System Dagang Net Technologies Sdn Bhd Trader Guide Page 1 of 8 This module is solely for Traders to apply for a permit online and to check the status of their application

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations...

Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations... AllAcademic Submission Manual Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations... 10 Definitions An individual paper

More information

South Dakota Orientation to Child Care

South Dakota Orientation to Child Care South Dakota Orientation to Child Care Step-by-Step Instructions for Setting Up a D2L Account and registering for the Orientation Training The South Dakota Orientation to Child Care on-demand training

More information

Mobile App User Guide 2.0 Bharat Broadband Network Limited

Mobile App User Guide 2.0 Bharat Broadband Network Limited Mobile App User Guide 2.0 Bharat Broadband Network Limited Download application from email or bbnl.nic.in and install. If install button does not appear then go to file manager, find the downloads folder

More information

Home Tab Training. Page 1/5

Home Tab Training. Page 1/5 Home Define options available under dashboard, my profile, and TAI Upload tabs. Dashboard Options How To Select a SPN How to download an invoice [save] (from web) My Profile How to Update Your Profile

More information

Roesner Kenney Tax & Accounting

Roesner Kenney Tax & Accounting Roesner Kenney Tax & Accounting Client Portal User Guide 11/2017 1 P age In order to use this guide, you must have been granted access to use the Roesner Kenney Tax & Accounting secure portal. If you are

More information

i2b2 Software Architecture Project Management (PM) Cell Document Version: i2b2 Software Version:

i2b2 Software Architecture Project Management (PM) Cell Document Version: i2b2 Software Version: i2b2 Software Architecture Project Management (PM) Cell Document Version: 1.7.08-004 i2b2 Software Version: 1.7.08 TABLE OF CONTENTS TABLE OF CONTENTS... 2 DOCUMENT MANAGEMENT... 3 ABSTRACT... 4 1 OVERVIEW...

More information

https://www.halvorsen.blog Industrial IT Laboratory Work https://www.halvorsen.blog/documents/teaching/courses/industrialit Hans-Petter Halvorsen

https://www.halvorsen.blog Industrial IT Laboratory Work https://www.halvorsen.blog/documents/teaching/courses/industrialit Hans-Petter Halvorsen https://www.halvorsen.blog Industrial IT Laboratory Work https://www.halvorsen.blog/documents/teaching/courses/industrialit Hans-Petter Halvorsen OPC Laboratory Work The Industrial IT course contains different

More information

CSC 355 Database Systems

CSC 355 Database Systems CSC 355 Database Systems Marcus Schaefer Databases? Database 1. DB models aspects of the real world (miniworld, universe of discourse) 2. Collection of data logically coherent Meaningful Information 3.

More information

1. Go to https://online.national.edu/ 2. Click the link at the bottom that says Please click here for a System Check before you log in.

1. Go to https://online.national.edu/ 2. Click the link at the bottom that says Please click here for a System Check before you log in. Desire 2 Learn User Guide Desire 2 Learn User Guide Using the System Check Quick Link You can use the quick link on the entry page of the online classroom for a general test of your computer s preparedness

More information

ERD Tutorial: How to Design and Generate SQL Server DB? Written Date : June 19, 2015

ERD Tutorial: How to Design and Generate SQL Server DB? Written Date : June 19, 2015 ERD : How to Design and Generate SQL Server DB? ERD : How to Design and Generate SQL Server DB? Written Date : June 9, 05 You can design database with ERD, and construct database by generating from the

More information

CMPE 131 Software Engineering. Database Introduction

CMPE 131 Software Engineering. Database Introduction Presented By Melvin Ch ng CMPE 131 Software Engineering September 14, 2017 Database Introduction Ruby on Rails ORM Agenda Database Management System (DBMS) SQL vs NoSQL Relational Database Introduction

More information

How to upload documentation

How to upload documentation How to upload documentation June 2016 Table of Contents IMPORTANT... 2 UPDATE... 2 Step 1 Obtain your Username and Password... 2 Step 2 Login... 3 Step 3 Upload the Submission Zip File... 3 Step 4 - Tell

More information

Grower Priority Database User Guide

Grower Priority Database User Guide Have a Question? Select Questions? in the upper right corner or email inquiry@mrlpriority.com. All Users: Request an Account Select the Request an Account link at the top right corner of the site. Proceed

More information

Using Lloyd s Direct Reporting. User Guide

Using Lloyd s Direct Reporting. User Guide Using Lloyd s Direct Reporting User Guide AUGUST 2013 2 Contents CONTENTS 2 LLOYD S DIRECT REPORTING 3 ABOUT THIS SERVICE 3 FURTHER HELP AND SUPPORT 3 USER GUIDE 4 ACCESSING LLOYD S DIRECT REPORTING 4

More information

WebDocs 6.5. New Features and Functionality. An overview of the new features that increase functionality and ease of use including:

WebDocs 6.5. New Features and Functionality. An overview of the new features that increase functionality and ease of use including: WebDocs 6.5 New Features and Functionality An overview of the new features that increase functionality and ease of use including: Simplified Installation WebDocs Touch WebDocs Drive Office Automation Enhancements

More information

SHRM Affiliate CMS Join Now Feature

SHRM Affiliate CMS Join Now Feature SHRM Affiliate CMS Join Now Feature Page 1 Contents Introduction... 3 How Members are Created... 4 Join Now Link / Become a Member Button... 4 Built-in Application... 5 After the Built-in Application Has

More information

! An organized collection of data. ! Can easily be accessed, managed, and updated. ! Data are organized as a set of tables.

! An organized collection of data. ! Can easily be accessed, managed, and updated. ! Data are organized as a set of tables. What s Database INTRODUCTION OF DATABASE XIAOBO SUN! An organized collection of data! Can easily be accessed, managed, and updated Relational Database:! Data are organized as a set of tables.! Each table

More information

Application Scenarios of DG-NS5004 Cloud Storage Syncbox Feature

Application Scenarios of DG-NS5004 Cloud Storage Syncbox Feature Application Scenarios of DG-NS5004 Cloud Storage Syncbox Feature To automatically sync & update a specific drive/ data folder on a PC to a NAS:- * Once the syncbox Server is loaded on NAS, it will be displayed

More information

SoftChalk Cloud and D2L Quick Guide This document was created with SoftChalk Create 10, available at

SoftChalk Cloud and D2L Quick Guide This document was created with SoftChalk Create 10, available at University Information Technology Services Learning Technologies, Training & Audiovisual Outreach SoftChalk Cloud and D2L Quick Guide This document was created with SoftChalk Create 10, available at https://uits.kennesaw.edu/downloads/

More information

PDA Workspace User Guide

PDA Workspace User Guide PDA Workspace User Guide An Introduction to PDA s Online Task Force/Technical Report Team Management and Collaboration Platform Table of Topic Page # Account sign up 3 Finding your group 4-5 Accessing

More information

Detailed Design. Java Problem Repository & Education Platform JPREP

Detailed Design. Java Problem Repository & Education Platform JPREP Team Members: Luke Greiner Denis Kalic Abigail McCarthy Robert Tateo Nguyen Truong Patrick White Detailed Design Java Problem Repository & Education Platform JPREP Revision: 1.1 Date: 3/07/14 1 D e l t

More information

Physician Time Study System. User Guide for Supporting Staff

Physician Time Study System. User Guide for Supporting Staff Physician Time Study System User Guide for Supporting Staff 1 Table of Contents 1. Introduction... 3 2. About your Support Staff Account... 3 3. Getting Started... 4 4. Your Main Navigation Area... 5 5.

More information

Community Mobile Patrol Officer User Guide v13.4

Community Mobile Patrol Officer User Guide v13.4 Community Mobile Patrol Officer User Guide v13.4 To download the PatrolLIVE App for the iphone: 1. On the iphone, go to the App Store and search for Guard Tour (Please note: The App is not supported on

More information

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide HP ALM 11.00 Administration and Customization Lab Guide Overview This Lab Guide contains the exercises for Administration and Customization of HP ALM 11 Essentials training. The labs are designed to enhance

More information

Ch 9: Mapping EER to Relational. Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7

Ch 9: Mapping EER to Relational. Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7 Ch 9: Mapping EER to Relational Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7 Additional steps for EER model for specialization/generalization steps 8a

More information

Bell County. E-Discovery Portal. Training Guide. 1/8/2014 Version 1.0

Bell County. E-Discovery Portal. Training Guide. 1/8/2014 Version 1.0 Bell County E-Discovery Portal Training Guide 1/8/2014 Version 1.0 The E-Discovery portal has been developed to provide the District Attorney s Office with the ability to electronically upload discoverable

More information

Object-Relational Modeling

Object-Relational Modeling Object-Relational Modeling Holger Pirk Holger Pirk Object-Relational Modeling 1 / 44 Purpose of this Lecture Introduce Object-Relational-Mapping Understand the problem it solves Understand the problems

More information

Guide on how to use the macademy.

Guide on how to use the macademy. Guide on how to use the macademy. Thank you for showing interest in My Learning Academy, the premier e-learning solution in Africa. This document will give you an overview of how to navigate the portal,

More information