Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang

Size: px
Start display at page:

Download "Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang"

Transcription

1 Software Requirement Specification Employee Tracking System Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang Team Members Seung Yang, Nathan Scheck, Ernie Rosales Page 1

2 Software Requirements Specification SRS 1.0 Introduction The purpose of the Software Requirements Specification (SRS) is to specify the functionality, performance and interface requirements of the software project. All of the required features of the software project expressed by the client and agreed upon by the development team shall be expressed in this document. Additional requirements of the client shall first be agreed upon by the development team. The formal release version of the project shall meet every requirement listed in this document. 1.1 Goals and Objectives The goal of this project is to develop an Employee Tracking System to be able to track employee s time, mileage and job progress. The Employee Tracking system works using Visual Basic Graphical User Interface asking employee to input basic information like First name, Last name, Employee id, client name, start time, end time, billable hour, mileage, problems, solutions and notes. The data will be stored into a database that will be accessed later on to produce different reports. The objective of this project is to conveniently track employee s time, mileage and job progress easily through the world wide web for ease of access. This is a group project for CS524, Software Engineering 1, a nine weeks course in the graduate computer science program at Azusa Pacific University, Spring 2007, Dr. Sheldon Liang, Ph.D., instructor. 1.2 Statement of Scope The Employee Tracking System software is a 32-bit Windows application. The users of this tool will be employees and management inputting their First name, Last name, Employee id, client name, start time, end time, billable hour, mileage, problems, solutions and notes of overall status of the project. The purpose of this software tool is to be able to input Page 2

3 information and produce a report. The tool allows the users (employee and management) to enter and change hours, mileage and status of a project. The software also allows users to view and print the report. The scope of this document is limited to providing the designers of this tool the requirements of this software. This document is the reference for the design team and quality assurance team. This document describes the correspondence of the client s product requirements (verbal and written) to the software requirements of this software along with the features, constraints and interfaces of the Employee Tracking System Software. 1.3 Software context The overall goal is to produce software that employees and management can access to input their First name, Last name, Employee id, client name, start time, end time, billable hour, mileage, problems, solutions and notes of overall status of the project. The software objective is to make this process easily accessible using the power of the world web for ease of access. The users can access this web application and be able to input their information and also get the necessary report. 1.4 Major Constraints Employee Tracking System shall be designed to run on an IA-32 or 100% compatible computer running a 32 bit version of the Microsoft Windows XP operating system. The minimum requirements of the computer shall be 512 MB of RAM, 2 GB of free hard drive space and a web browser capable of displaying HTML 4.01 files. The source code for the display shall be written in Visual Basic 6.0. The source code for the engine shall be written in Visual C The data output shall be stored in an Access 2003 database using the ADO database connection library. The output reports shall be saved as HTML 4.01 files using the Transitional DTD as defined by the World Wide Web Consortium. 2.0 Usage Scenario Page 3

4 2.1 User Profiles The Employee Tracking System uses two user types to define access to data and reports ADMIN The admin user type has access to view all tickets, create tickets, and view all reports. There is one admin account that is shared by all of management EMPLOYEE Each employee will have his or her own account in the system, and will log in with their name. Employee accounts have access to create new tickets with themselves designated as the responsible employee, and also view any ticket in the system that lists them as the responsible employee. 2.2 Use-Case The following use cases detail the processes behind the major interactions of the user with the Employee Tracking System. This is not an exhaustive list, but all categories will be explained. similar functions may be extrapolated User logs in to Employee Tracking System (ETS) Brief Description: All users must log into the secure ETS website using their login name and password before they can access the system. Step-by-Step Description: 1. User enters the URL into an appropriate web browsing application (see section 2.3). 2. User enters login name and password. 3. If the name/password combination is not found in the system, the user is asked to try again. If it is, the available list of tickets (see 2.2.2) is displayed The ticket list page is displayed Brief Description: All users can view a list of tickets that apply to them. Normal users can only view tickets that are assigned to them, and admin users can view all tickets. Step-by-Step Description: 1. System or user requests the ticket list page. Page 4

5 2. The ticket listing function checks the user type. 3. The ticket listing function makes a database call for all tickets applicable to that user (admin users can view all, others can only view those that are assigned to them.) 4. The ticket function prints out the table of tickets, each having a link to edit that ticket User requests to create a ticket Brief Description: Users can create new tickets by clicking a button in the main menu. This will provide an empty ticket for to fill out. Step-by-Step Description: 1. The ticket editing function generates an empty ticket form and displays it to the user. 2. After the user fills out the form (partially or completely), it can be saved clicking the save button. 3. When the user initiates the save, the ticket editing function verifies the data and writes it to the database. 4. The user is returned to the ticket list. (2.2.2) User requests to edit a ticket From the ticket list page, the user may select a ticket to edit. Step-by-Step Description: 1. The ticket editing function checks to make sure that user is assigned to the ticket. If not, an error is displayed. 2. The ticket editing function makes a call to the database to retrieve the current information for the ticket being edited. 3. The ticket editing function displays the ticket User request a monthly financial report The admin account has the ability to a financial report for the month, which includes all costs associated with tickets completed during that month. Step-by-Step Description: 1. User requests to view a monthly financial report. 2. The report generator function checks to make sure the user has admin permissions, and fails with an error message if the user does not. 3. The report generator function makes a call to the database to retrieve all tickets completed within the current month, along with any client and employee data belonging to them. 4. The report generator function creates the report page, with an option for the user to change the current report month. Page 5

6 2.2 Special Usage Considerations The Employee Tracking System is web-based, allowing for easy access from any webenabled computer. It does, however, require a modern, standards-compliant web browser, such as Internect Explorer 6+, Safari, or Mozilla Firefox. 3.0 Data Model and Descriptions 3.1 Data Description Three data tables are required: ETS_TICKET Contains all data relevant to a work ticket, including a mandatory employee id and client id to allow linkage with the other two tables ETS_EMPLOYEE Stores employee information, such as first and last names, id, and commission percentage ETS_CLIENT Stores client information, such as id and name 3.2 Relationships ETS_TICKET to ETS_EMPLOYEE: many to one ETS_TICKET to ETS_CLIENT: many to one 3.3 Complete Data Model Page 6

7 3.4 Data Dictionary (provided in SQL format) create sequence "ets_ticket_seq" start 1 increment 1 minvalue 1 maxvalue cache 1; create sequence "ets_employee_seq" start 1 increment 1 minvalue 1 maxvalue cache 1; create sequence "ets_client_seq" start 1 increment 1 minvalue 1 maxvalue cache 1; CREATE TABLE ETS_TICKET ( id INTEGER NOT NULL PRIMARY KEY, emp_id INTEGER NOT NULL, client_id INTEGER NOT NULL, start_time TIMESTAMP NOT NULL, end_time TIMESTAMP, billable_hours INTEGER, mileage INTEGER, problem TEXT, solution TEXT, notes TEXT, edited_time TIMESTAMP NOT NULL, is_complete BOOLEAN ); CREATE TABLE ETS_EMPLOYEE ( id INTEGER NOT NULL PRIMARY KEY, first_name CHARACTER VARYING(128), last_name CHARACTER VARYING(128), commission_pct INTEGER ); CREATE TABLE ETS_CLIENT ( id name ); INTEGER NOT NULL PRIMARY KEY, CHARACTER VARYING(256) Page 7

8 4.0 Functional Model and Description 4.1 Specific Function Descriptions Log In The Log In function is handled automatically by the web server, and is not within the scope of this project. Users will not be allowed to access the system until a valid username/password pair is supplied List Tickets The List Tickets function displays a table containing all tickets that the user is able to interact with. For admin users, this is all tickets. For any other, it is only those tickets that are assigned to them Processing Narrative Is the user an admin? If so, select all tickets from the database. If not, select only tickets assigned to the user from database. Display selected tickets in a table, each with a link to edit it New/Edit Ticket The New/Edit Ticket function handles all data modification for tickets, whether it s a new ticket, or an existing one Processing Narrative Save Ticket Is a ticket being edited? If so, load its information from the database. If not, use default/blank data. Display a form containing the editable data from the previous step. The Save Ticket function verifies the entered ticket data and writes it to the database Processing Narrative Verify each field of the ticket data to be sure it conforms with the data dictionary standards. Page 8

9 For each incorrect field, display an error message. Is a new ticket being saved? If so, create a new entry in the database with the new ticket information. If not, update the current ticket s entry in the database with the given information. Display save successful message Display Monthly Report The Display Monthly Report function shows one of three types of reports: financial, employee, or client for the current month, or any specific month for which there is available data Processing Narrative Is the user an admin? If not, send user back to the List Tickets page. Has the user chosen a report type? If not, use the default. Based on the chosen type, get the appropriate list of items to show. Select those items from the database. Display a table of all pertinent data, along with the option to choose a different report type. 4.2 Software Interface Design External Machine Interface No external machine interfaces are required External System Interface Both the executable application and database will be housed on a remote web server, requiring a standard web browsing application for access. All system interfacing is handled automatically by the web browser, and need not be considered within the scope of this project Human Interface The user interface will be displayed as standard HTML web pages, using standard HTML forms and hyperlinks for data entry and navigation, respectively. As mentioned in 4.2.2, a web browsing application is required. Page 9

10 4.3 Control Flow Description Since web-based applications are primarily stateless, with the exceptions including the use of cookies and user authentication, control is not much of a technical concern except for the aforementioned user authentication. Each functional component ( page ), when initiated, performs its function and then essentially terminates the program, leaving the user with the output. When the user chooses another page, that function is activated and output is produced in another completely separate instantiation. Only the user authentication information is kept between instantiations, so the user does not need to log in each time. 5.0 Behavioral Model and Description 5.1 Description of Software Behavior Following is a detailed description of the major events and states. Refer to section 5.2 for information on how they interact Events Invalid Name/Password Valid Name/Password Global Menu Choice Ticket is Selected to Edit Ticket is saved Change Date User enters the wrong combination of username and password at the login screen. User enters a valid combination of username and password at the login screen. Almost any state (page) can be jumped to by choosing it from the global menu. From the Ticket List Page state, a ticket can be chosen to be edited. From the Edit Ticket Page and New Ticket Page states, saving a ticket writes its info to the database. (Admin only) From any of the report page states (Financial, Employee, or Client), sets a different date for which to display that form. Page 10

11 5.1.2 States Log In User must supply a valid name/password combination before being allowed access to the system. Ticket List Page The applicable list of tickets is shown, along with the global menu. Admin users can see all tickets, other users can only see tickets that are assigned to them. New Ticket An empty form for creating a new ticket is shown, Page along with the global menu. Edit Ticket A form with the currently-selected ticket s Page information available for editing is shown, along with the global menu. Monthly (Admin only) Financial Financial information is displayed for the current Report Page month with the option to change months, along with the global menu Monthly (Admin only) Employee Employee information is displayed for the current Report Page month with the option to change months, along with the global menu Monthly Client (Admin only) Report Page Client information is displayed for the current month with the option to change months, along with the global menu Page 11

12 5.1 State Transition Diagram Page 12

13 5.3 Control Specification Since web-based applications are primarily stateless, with the exceptions including the use of cookies and user authentication, control is not much of a technical concern except for the aforementioned user authentication. The system will simply be responding to user commands which can perform an action or move the system between states. 6.0 Restrictions, Limitations, and Constraints Only valid users are allowed to access the Employee Tracking System. The users access are limited by the host server, client PC and media bandwidth. 7.0 Validation Criteria 7.1 Classes of Tests Login Test = this will test the security login to access the Employee Tracking System. A test name and password will be supplied before being allowed access to the system. Ticket List Page Test = the applicable list of tickets is tested, along with the global menu. Admin users will test all tickets for their proper information. New Ticket Page Test = an empty form for creating a new ticket is shown, along with the global menu. User should be able to input information and store the information. Monthly Financial Report Page Test = (Admin only) Financial information will be tested for the current month with the option to change months, along with the global menu. Monthly Employee Report Page Test = (Admin only) Employee information will be tested for the current month with the option to change months, along with the global menu. Monthly Client Report Page Test = (Admin only) Client information will be for the current month with the option to change months, along with the global menu. 7.2 Expected Software Response Login Test Result = with the proper name and password supplied users should be able to access the main page. If the incorrect name and password is supplied an access denied screen will be displayed. Ticket List Page Result = the applicable list of tickets will be compared with a hard copy of Page 13

14 tickets to verify accuracy. New Ticket Page Result = new information will be verified within the database. Monthly Financial Report Page Result = (Admin only) Financial information will be verified for the current month comparing the result to current monthly financial information. Monthly Employee Report Page Result = (Admin only) Employee information will be verified for the current month comparing the result to current monthly employee information. Monthly Client Report Page Result = (Admin only) Client information will be verified for the current month comparing the result to current monthly client information. 7.3 Performance Bounds Employee Tracking System performance is based on the performance and specification of the host server, the client PC and the media bandwidth. 8.0 Appendices 8.1 System Traceability Matrix A matrix that traces stated software requirements back to the system specification. 8.2 Product Strategies If the specification is developed for a product, a description of relevant product strategy is presented here. 8.3 Analysis Metrics to be Used A description of all analysis metrics to be used during the analysis activity is noted here. 8.4 Supplementary Information (as required) Page 14

TIME KEEP LEGAL BILLING SOFTWARE REQUIREMENTS SPECIFICATION

TIME KEEP LEGAL BILLING SOFTWARE REQUIREMENTS SPECIFICATION TIME KEEP LEGAL BILLING SOFTWARE REQUIREMENTS SPECIFICATION 1. Introduction: This document defines the Software Requirements Specification (SRS) for the Time Keep Legal Billing software application. This

More information

TIME KEEP LEGAL BILLING SOFTWARE DESIGN DOCUMENT. Mike Don Cheng-Yu. CS 524 Software Engineer Professor: Dr Liang

TIME KEEP LEGAL BILLING SOFTWARE DESIGN DOCUMENT. Mike Don Cheng-Yu. CS 524 Software Engineer Professor: Dr Liang TIME KEEP LEGAL BILLING SOFTWARE DESIGN DOCUMENT Mike Don Cheng-Yu CS 524 Software Engineer Professor: Dr Liang TABLE OF CONTENTS 1. INTRODUCTION: 2 1.1. Goals and objectives 2 1.2. Statement of scope

More information

Software Requirements Specification

Software Requirements Specification METU DEPARTMENT OF COMPUTER ENGINEERING Software Requirements Specification SNMP Agent & Network Simulator Mustafa İlhan Osman Tahsin Berktaş Mehmet Elgin Akpınar 05.12.2010 Table of Contents 1. Introduction...

More information

Manual. Traffic Exchange

Manual. Traffic Exchange Updated on 21-Oct-2010 Page 1 of 10 Manual Traffic Exchange Updated on 21-Oct-2010 Page 2 of 10 Index Pages 1. To access the Traffic Exchange 3 2. Checking User Log 5 3. Change Password 7 4. Troubleshooting

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

Version PACIFIC GAS AND ELECTRIC COMPANY. Online Supplier Registration System. Supplier User Guide

Version PACIFIC GAS AND ELECTRIC COMPANY. Online Supplier Registration System. Supplier User Guide Version 1 PACIFIC GAS AND ELECTRIC COMPANY Online Supplier Registration System Supplier User Guide C O P Y R I G H T 2 0 0 7-2 0 1 0 B Y C V M S O L U T I O N S, I N C. A L L R I G H T S R E S E R V E

More information

IBackup Drive User Guide

IBackup Drive User Guide IBackup Drive User Guide TABLE OF CONTENTS Introduction... 3 Features... 4 Install IBackup Drive... 5 Login to IBackup Drive... 5 About Main Screen... 7 Settings... 8 Toolbar Options... 11 IBackup Drive

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a

More information

ADP Workforce Now Security Guide. Version 2.0-1

ADP Workforce Now Security Guide. Version 2.0-1 ADP Workforce Now Security Guide Version 2.0-1 ADP Trademarks The ADP logo, ADP, and ADP Workforce Now are registered trademarks of ADP, Inc. Third-Party Trademarks Microsoft, Windows, and Windows NT are

More information

Installation Guide. Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise.

Installation Guide. Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise. Installation Guide Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise. Compatibility List: https://www.sikkasoft.com/pms-fs-supported-by-spu/ NOTE:

More information

1 of 10 1/31/2014 4:08 PM

1 of 10 1/31/2014 4:08 PM 1 of 10 1/31/2014 4:08 PM copyright 2014 How to backup Microsoft SQL Server with Nordic Backup Pro Before creating a SQL backup set within Nordic Backup Pro it is first necessary to verify that the settings

More information

Remedy ITSM Service Request Management Quick Start Guide

Remedy ITSM Service Request Management Quick Start Guide Remedy ITSM Service Request Management Quick Start Guide For use by customers of IT services with Remedy ITSM at Missouri S&T Version 1.5 December 11, 2013 Table of Contents 1.0 Getting Started With Remedy

More information

Cathay Business Online Banking. User Guide. Version 1.0

Cathay Business Online Banking. User Guide. Version 1.0 Cathay Business Online Banking User Guide Version 1.0 07/2013 Disclaimer: The information and materials in these pages, including text, graphics, links, or other items are provided as is and available.

More information

User Manual 03/12/2014. A collaborative effort by

User Manual 03/12/2014. A collaborative effort by User Manual 03/12/2014 A USER GUIDE DESIGNED TO HELP CREATE AND MAINTAIN PERSONAL ACCOUNTS IN mynhdoe, THE NH DEPARTMENT OF EDUCATION SINGLE SIGN-ON SYSTEM FOR ACCESSING SECURE APPLICATIONS A collaborative

More information

NTP Software File Auditor for Windows Edition

NTP Software File Auditor for Windows Edition NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor

More information

Colorado Medical Assistance Program Web Portal. Frequently Asked Questions

Colorado Medical Assistance Program Web Portal. Frequently Asked Questions Colorado Medical Assistance Program Web Portal Frequently Asked Questions Trading Partner Administrator I have my HCPF Welcome Letter, and am going to be the Trading Partner Administrator. Now what? What

More information

Orientation Course - Lab Manual

Orientation Course - Lab Manual Orientation Course - Lab Manual Using the Virtual Managed Workplace site for the lab exercises Your instructor will provide the following information before the first lab exercise begins: Your numerical

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Installation Instruction STATISTICA Enterprise Server

Installation Instruction STATISTICA Enterprise Server Installation Instruction STATISTICA Enterprise Server Notes: ❶ The installation of STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation installations on each of

More information

<Company Name> ugather Event Management System Software Requirements Specification. Version 1.0

<Company Name> ugather Event Management System Software Requirements Specification. Version 1.0 ugather Event Management System Version 1.0 Revision History Date Version Description Author 18/Feb/09 1.0 Initial creation of SRS document Confidential Page 2 Table of Contents 1. Introduction

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

MS InfoPath 2003 MS InfoPath 2007 Microsoft Office InfoPath 2003 minimally runs on the following operating systems:

MS InfoPath 2003 MS InfoPath 2007 Microsoft Office InfoPath 2003 minimally runs on the following operating systems: 8. PREPARING AND TRANSMITTING EDGARLITE SUBMISSIONS 8.1 Purpose EDGARLite is an application that uses intelligent forms to aid in the construction of filings to be submitted to EDGAR. Each EDGARLite form

More information

A.Team Software (.DMS) Dynamic Meeting Scheduler Vision Document

A.Team Software (.DMS) Dynamic Meeting Scheduler Vision Document A.Team Software (.DMS) Dynamic Meeting Scheduler Vision Document Aaron Turrie - 10451675 - at.nelret@gmail.com Eric Meyer - 10829232 - eric.meyer@utdallas.edu Mario Medina - 2010809959 - mariomedina.se@gmail.com

More information

Connecting to Manage Your MS SQL Database

Connecting to Manage Your MS SQL Database Using MS SQL databases HOWTO Copyright 2001 Version 1.0 This HOWTO describes how to connect to a MS SQL database and how to transfer data to an SQL server database. Table of Contents Connecting to Manage

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER QUICK-START GUIDE FOR THE ENTERPRISE EDITION Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information

Getting Started. Business Link. User Name Rules. Hardware/Software Requirements. Password Rules

Getting Started. Business Link. User Name Rules. Hardware/Software Requirements. Password Rules Getting Started User Name Rules All user names must: Be unique. Be between six and 40 characters in length. Notes: It is recommended that user names consist only of alphanumeric characters (A-Z, 0-9).

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

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 2008 The American Physical Therapy Association Getting Started With the APTA Learning Center for PT CPI Course Participants A Basic Overview Prepared by: APTA Professional Development Department Date:

More information

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly

More information

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

Prerequisites and Configuration Guide

Prerequisites and Configuration Guide Prerequisites and Configuration Guide Informatica Support Console (Version 2.0) Table of Contents Chapter 1: Overview.................................................... 2 Chapter 2: Minimum System Requirements.................................

More information

Accessing the Media General SSL VPN

Accessing the Media General SSL VPN Launching Applications and Mapping Drives Remote Desktop Outlook Launching Web Applications Full Access VPN Note: To access the Media General VPN, anti-virus software must be installed and running on your

More information

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Configuration Guide 2014 Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Table of Contents 1. Introduction...3

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install)

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install) Clarios Technology Pty. Ltd. Intelligent Reporter Installation Guide Installing Intelligent Reports JIRA plugin The Intelligent Reports plugin for JIRA is available through the Atlassian Marketplace. Follow

More information

isupplygw Site Login Troubleshooting

isupplygw Site Login Troubleshooting Site Login Troubleshooting Tips User name is administrator s email address Password requirements: o Passwords must be at least 8 characters long and can be as long as 30 characters. o Passwords must contain

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

SonicWALL SSL VPN 3.0 HTTP(S) Reverse Proxy Support

SonicWALL SSL VPN 3.0 HTTP(S) Reverse Proxy Support SonicWALL SSL VPN 3.0 HTTP(S) Reverse Proxy Support Document Scope This document describes the implementation of reverse proxy to provide HTTP and HTTPS access to Microsoft Outlook Web Access (OWA) Premium

More information

Asta Powerproject Enterprise

Asta Powerproject Enterprise Asta Powerproject Enterprise Overview and System Requirements Guide Asta Development plc Kingston House Goodsons Mews Wellington Street Thame Oxfordshire OX9 3BX United Kingdom Tel: +44 (0)1844 261700

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Are you having trouble logging in with a Username that contains special characters or spaces?

Are you having trouble logging in with a Username that contains special characters or spaces? Troubleshooting Guide Forgot your Username or Password? Are you having trouble logging in with a Username that contains special characters or spaces? Can t launch a course in InfoComm University? Can t

More information

End User Guide The guide for email/ftp account owner

End User Guide The guide for email/ftp account owner End User Guide The guide for email/ftp account owner ServerDirector Version 3.7 Table Of Contents Introduction...1 Logging In...1 Logging Out...3 Installing SSL License...3 System Requirements...4 Navigating...4

More information

Installing the Citrix Online Plug-In

Installing the Citrix Online Plug-In Installing the Citrix Online Plug-In If you are a first-time user accessing NeoSystems Citrix environment, you are required to install a small program on your computer. This program will enable you to

More information

Configuration Manual English version

Configuration Manual English version Configuration Manual English version Frama F-Link Configuration Manual (EN) All rights reserved. Frama Group. The right to make changes in this Installation Guide is reserved. Frama Ltd also reserves the

More information

USER MANUAL DOCUMENT SHARING SYSTEM FOR AIMS. VERSION 1.0 (03-Dec-2014) Prepared By

USER MANUAL DOCUMENT SHARING SYSTEM FOR AIMS. VERSION 1.0 (03-Dec-2014) Prepared By USER MANUAL OF DOCUMENT SHARING SYSTEM FOR AIMS VERSION 1.0 (03-Dec-2014) Prepared By NATIONAL INSTITUTE OF ELECTRONICS & INFORMATION TECHNOLOGY An Autonomous Body of Dept. of IT, Ministry of C & IT, Govt.

More information

Providers can access the precertification tool by logging in to the Amerigroup provider self service website or the Availity Web Portal.

Providers can access the precertification tool by logging in to the Amerigroup provider self service website or the Availity Web Portal. Precertification Status and Appeals Use the Amerigroup Provider self service website to check the status of a precertification request, submit a request for Amerigroup to change a decision we made on a

More information

Proteome Discoverer Version 1.4

Proteome Discoverer Version 1.4 Xcalibur Proteome Discoverer Version 1.4 Installation Guide XCALI-97507 Revision A December 2012 2012 Thermo Fisher Scientific Inc. All rights reserved. Xcalibur is a registered trademark of Thermo Fisher

More information

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3. Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database

More information

How to Add Documents to Your Blackboard Class

How to Add Documents to Your Blackboard Class Southwestern Baptist Theological Seminary BLACKBOARD INSTRUCTOR SERIES How to Add Documents to Your Blackboard Class This manual will show you how to do the following: Log into Blackboard Access Your Blackboard

More information

Integration Client Guide

Integration Client Guide Integration Client Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

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

PAN Expense System Features at a glance. Web-based application. Claim based expense management. Complete transaction log reporting.

PAN Expense System Features at a glance. Web-based application. Claim based expense management. Complete transaction log reporting. PAN Expense System From PANACHE A QUICK EASY AFFORDABLE SOLUTION An intelligent solution to help organizations manage cost associated with processing various expenses. PAN Expense System manages the entire

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR SQL SERVER QUICK-START GUIDE Product Version: 2.6.194 February 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

COURSE NAVIGATOR DEMO QUICK GUIDE

COURSE NAVIGATOR DEMO QUICK GUIDE COURSE NAVIGATOR DEMO QUICK GUIDE INTRODUCTION The Course Navigator is a web-based learning management system that contains the EHR Navigator activities and assessments, as well as flash cards, quizzes,

More information

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: June 12, 2014 Active Directory Management Deployment Guide i Contents System Requirements...1 Hardware Requirements...1 Installation...3

More information

Version NOVO NORDISK INC. Online Supplier Registration System. Supplier User Guide

Version NOVO NORDISK INC. Online Supplier Registration System. Supplier User Guide Version 1 NOVO NORDISK INC. Online Supplier Registration System Supplier User Guide C O P Y R I G H T 2 0 0 7-2 0 1 0 B Y C V M S O L U T I O N S, I N C. A L L R I G H T S R E S E R V E D. T H E M A T

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

Create a Database Driven Application

Create a Database Driven Application Create a Database Driven Application Prerequisites: You will need a Bluemix account and an IBM DevOps Services account to complete this project. Please review the Registration sushi card for these steps.

More information

Personal Computer and Mobile Printing

Personal Computer and Mobile Printing Personal Computer and Mobile Printing IT Services now offers students, faculty, and staff the ability to print from personal laptops and Apple ios devices on the Fort Wayne campus without having access

More information

mystanwell.com Installing Citrix Client Software Information and Business Systems

mystanwell.com Installing Citrix Client Software Information and Business Systems mystanwell.com Installing Citrix Client Software Information and Business Systems Doc No: 020/12 Revision No: Revision Date: Page: 1 of 16 Contents Overview... 3 1. Microsoft Internet Explorer... 3 2.

More information

Component Considerations

Component Considerations Start-Up Guide This Start-Up Guide has been designed to guide you through the Phoenix installation process and get you ready for use. Component Considerations Before performing the actual Phoenix SQL installation,

More information

formerly Help Desk Authority 9.1.3 Upgrade Guide

formerly Help Desk Authority 9.1.3 Upgrade Guide formerly Help Desk Authority 9.1.3 Upgrade Guide 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656 USA www.quest.com

More information

Remote Desktop Services - Multimedia. 1. On a PC, open Internet Explorer and type in this URL: https://apps.msjc.edu

Remote Desktop Services - Multimedia. 1. On a PC, open Internet Explorer and type in this URL: https://apps.msjc.edu Remote Desktop Services - Multimedia 1. On a PC, open Internet Explorer and type in this URL: https://apps.msjc.edu To use the Remote Desktop Services on a Mac computer or with other browsers, Firefox

More information

Secure Web Service - Hybrid. Policy Server Setup. Release 9.2.5 Manual Version 1.01

Secure Web Service - Hybrid. Policy Server Setup. Release 9.2.5 Manual Version 1.01 Secure Web Service - Hybrid Policy Server Setup Release 9.2.5 Manual Version 1.01 M86 SECURITY WEB SERVICE HYBRID QUICK START USER GUIDE 2010 M86 Security All rights reserved. 828 W. Taft Ave., Orange,

More information

Terminal Four. Content Management System. Moderator Access

Terminal Four. Content Management System. Moderator Access Terminal Four Content Management System Moderator Access Terminal Four is a content management system that will easily allow users to manage their college web pages at anytime, anywhere. The system is

More information

File Manager User Guide

File Manager User Guide File Manager User Guide Please note: EasySiteOptimizer Version 1.6 is supplied with Web Hosting (IBP) and Advanced Web Hosting only. File Manager Introduction to File Manager To access File Manager, select

More information

1. PREREQUISITES 2. NETWORK ADMINISTRATORS INFO

1. PREREQUISITES 2. NETWORK ADMINISTRATORS INFO 1. PREREQUISITES Software on Database server: - Microsoft SQL Server 2012 or 2012 Express - Minimum 1 CPU (more depending on number of users) - Minimum 4 GB (more depending on number of users) Software

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

NASDAQ Web Security Entitlement Installation Guide November 13, 2007

NASDAQ Web Security Entitlement Installation Guide November 13, 2007 November 13, 2007 Table of Contents: Copyright 2006, The Nasdaq Stock Market, Inc. All rights reserved.... 2 Chapter 1 - Entitlement Overview... 3 Hardware/Software Requirements...3 NASDAQ Workstation...3

More information

TIBCO Spotfire Metrics Prerequisites and Installation

TIBCO Spotfire Metrics Prerequisites and Installation TIBCO Spotfire Metrics Prerequisites and Installation Software Release 6.0 November 2013 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

Installation and Setup Guide

Installation and Setup Guide Installation and Setup Guide Contents 1. Introduction... 1 2. Before You Install... 3 3. Server Installation... 6 4. Configuring Print Audit Secure... 11 5. Licensing... 16 6. Printer Manager... 17 7.

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

Student Guide to Using Blackboard Academic Suite ver. 8.0

Student Guide to Using Blackboard Academic Suite ver. 8.0 Student Guide to Using Blackboard Academic Suite ver. 8.0 Some SRSU courses may make use of Blackboard, an online teaching and learning tool. Your instructor will let you know if your class uses Blackboard

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

Secure Global Desktop (SGD)

Secure Global Desktop (SGD) Secure Global Desktop (SGD) Table of Contents Checking your Java Version...3 Preparing Your Desktop Computer...3 Accessing SGD...5 Logging into SGD...6 Using SGD to Access Your Desktop...7 Using SGD to

More information

North Carolina Community Colleges Business Intelligence Reporting System

North Carolina Community Colleges Business Intelligence Reporting System North Carolina Community Colleges Business Intelligence Reporting System College User Manual Accessing Reporting System Contact Info To log in to Business Intelligence system: https://bi.nccommunitycolleges.edu

More information

User Manual. Version 1.0.0.0. Yeastar Technology Co., Ltd.

User Manual. Version 1.0.0.0. Yeastar Technology Co., Ltd. User Manual Version 1.0.0.0 Yeastar Technology Co., Ltd. Table of Contents 1 Introduction 3 2 Installing MySMS Software 4 3 Managing MySMS 9 3.1 Accessing MySMS 9 3.2 Multi-User Accounts 10 3.3 Managing

More information

Virtual Code Authentication User s Guide. June 25, 2015

Virtual Code Authentication User s Guide. June 25, 2015 Virtual Code Authentication User s Guide June 25, 2015 Virtual Code Authentication User s Guide Overview of New Security Modern technologies call for higher security standards as practiced among many other

More information

Request Manager Installation and Configuration Guide

Request Manager Installation and Configuration Guide Request Manager Installation and Configuration Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

IBM Aspera Add-in for Microsoft Outlook 1.3.2

IBM Aspera Add-in for Microsoft Outlook 1.3.2 IBM Aspera Add-in for Microsoft Outlook 1.3.2 Windows: 7, 8 Revision: 1.3.2.100253 Generated: 02/12/2015 10:58 Contents 2 Contents Introduction... 3 System Requirements... 5 Setting Up... 6 Account Credentials...6

More information

Florida Interim Assessment Item Bank and Test Platform (IBTP) Pilot 2 Toolkit

Florida Interim Assessment Item Bank and Test Platform (IBTP) Pilot 2 Toolkit Florida Interim Assessment Item Bank and Test Platform (IBTP) Pilot 2 Toolkit Table of Contents Florida Interim Assessment Item Bank and Test Platform (IBTP) Overview... 3 Tested Subjects and Grade Levels...

More information

Installing CaseMap Server User Guide

Installing CaseMap Server User Guide Installing CaseMap Server User Guide CaseMap Server, Version 1.8 System Requirements Installing CaseMap Server Installing the CaseMap Admin Console Installing the CaseMap SQL Import Utility Testing Installation

More information

Installation Guide v3.0

Installation Guide v3.0 Installation Guide v3.0 Shepherd TimeClock 4465 W. Gandy Blvd. Suite 800 Tampa, FL 33611 Phone: 813-882-8292 Fax: 813-839-7829 http://www.shepherdtimeclock.com The information contained in this document

More information

Sage Grant Management System Requirements

Sage Grant Management System Requirements Sage Grant Management System Requirements You should meet or exceed the following system requirements: One Server - Database/Web Server The following system requirements are for Sage Grant Management to

More information

Server Software Installation Guide

Server Software Installation Guide Server Software Installation Guide This guide provides information on...... The architecture model for GO!Enterprise MDM system setup... Hardware and supporting software requirements for GO!Enterprise

More information

User Installation Guide

User Installation Guide The will provide a step-by-step walkthough of how to download and install the application, activate each feature of the product, install any of the feature's prerequisites, extend the license, and deactivate

More information

Create Reports Utilizing SQL Server Reporting Services and PI OLEDB. Tutorial

Create Reports Utilizing SQL Server Reporting Services and PI OLEDB. Tutorial Create Reports Utilizing SQL Server Reporting Services and PI OLEDB Tutorial Introduction... 3 PI OLEDB... 3 SQL Server 2005 Reporting Services (SSRS)... 3 Installed Software on Tutorial PC... 3 Basic

More information

Richmond Systems. SupportDesk Web Interfaces - Quick Start Guide

Richmond Systems. SupportDesk Web Interfaces - Quick Start Guide Richmond Systems SupportDesk Web Interfaces - Quick Start Guide Contents Introduction... 3 Richmond SupportDesk Web Interface Requirements... 3 Server System Requirements... 3 Specialist Web Interface

More information

Technical Guide for Remote access

Technical Guide for Remote access Technical Guide for Remote access Frequently Asked Questions about using EZ Proxy to access Library resources off campus. Login Help Who is allowed access? I m having trouble logging in. Finding Articles

More information

Symantec Backup Exec 2010 R2. Quick Installation Guide

Symantec Backup Exec 2010 R2. Quick Installation Guide Symantec Backup Exec 2010 R2 Quick Installation Guide 20047221 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement.

More information

Creating IBM Cognos Controller Databases using Microsoft SQL Server

Creating IBM Cognos Controller Databases using Microsoft SQL Server Guideline Creating IBM Cognos Controller Databases using Microsoft SQL Product(s): IBM Cognos Controller 8.1 or higher Area of Interest: Financial Management 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

Dartmouth College Technical Support Document for Kronos PC version

Dartmouth College Technical Support Document for Kronos PC version Dartmouth College Technical Support Document for Kronos PC version Contents How to Save the Kronos URL as a Favorite or Bookmark... 2 Internet Explorer... 2 Firefox... 4 Possible Problems When Logging

More information

NETWRIX ACCOUNT LOCKOUT EXAMINER

NETWRIX ACCOUNT LOCKOUT EXAMINER NETWRIX ACCOUNT LOCKOUT EXAMINER ADMINISTRATOR S GUIDE Product Version: 4.1 July 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute a

More information

Vision Document Airline Reservation System

Vision Document Airline Reservation System Vision Document Airline Reservation System Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Kaavya Kuppa CIS 895 MSE Project Department of Computing

More information