Course Scheduling Support System

Size: px
Start display at page:

Download "Course Scheduling Support System"

Transcription

1 Course Scheduling Support System Roy Levow, Jawad Khan, and Sam Hsu Department of Computer Science and Engineering, Florida Atlantic University Boca Raton, FL {levow, jkhan, Abstract - The Course Scheduling Support System is designed to facilitate manual generation of the faculty course schedule. It aids in assigning faculty to courses and assigning each course section to a time block. It captures historic and current scheduling information in an organized manner making information needed to create new schedules more readily available. The interaction between user and database is made as friendly as possible so that managing, manipulating, populating and retrieving scheduling data is simple and efficient. We have implemented an open source web-based prototype of the proposed system using PHP, MySQL, and the Apache Web Server. It can be invoked with a standard Web browser and has an intuitive user interface. It provides tools for customizing web forms that can be easily used by non-technical users. Our department plans to deploy this system by Fall Index Terms - Faculty Course Scheduling, Open Source. INTRODUCTION Scheduling is a very broad term that can be applied to all kinds of tasks. The American Heritage Dictionary defines the verb schedule as to make up a schedule and defines the noun schedule as a plan for performing work or achieving an objective, specifying the order and allotted time for each part. The components of a schedule vary from one type of establishment to another. In a technical support business, such a component would be forwarding incoming calls to an available agent on a first come first serve basis. Likewise a city s public transport system would usually consist of three inter-related components. First, the creation of timetables for buses and subway trains which the public can refer to; second, assigning vehicles to certain routes which the vehicle must complete within a time block; third, designating drivers to each bus and subway train. Scheduling in the university primarily deals with classes and term examinations. Entities involved within scheduling classes include courses, faculty, students and rooms which should be optimally assigned to each other in order to create a class schedule. This thesis focuses on systems that support faculty and course scheduling. Faculty need to be assigned to teach courses and each section within a course need to be assigned to days and times. In this paper we propose the Course Scheduling Support System as a viable alternative to other systems. Choosing a scheduling support system has certain implications. The system will alter the manual process and the results can affect not only an establishment s bottom line but also the people involved. It may require a change in the Information Technology infrastructure since better solutions are not always available in the set of technologies currently being used. This could mean increased costs and training hours spent in buying and learning to use such a product. Commercial scheduling systems are rarely cheap and come with the additional onus of performing a cost-benefit analysis to analyze whether the benefits outweigh the cost [1]. Publicly available solutions for university course and faculty scheduling provide many features to support those scheduling services in general. However these solutions also bring up issues including cost of purchase and maintenance, amount of training needed, technological requirements to use the system, and adaptability of product to distinct university scheduling needs. Four other solutions were studied and compared to our system. Table 1 summarizes the comparison. These solutions are IQ.Session, Cyber Matrix Class Scheduler, imagic Timetable Master and Free Evolutionary Timetabling. IQ.Session is the product of ComQuip, Inc. [2] and is developed with Visual Basic and Microsoft Access. It can schedule classes taking faculty preferences into account. Schedule reports can be printed as text reports, Crystal reports or viewed as HTML reports. IQ.Session provides no support for the CSV file format and cannot scan a web page for information. The Cyber Matrix Class Scheduler is developed by CyberMatrix Corporation, Inc. [3]. It provides services for scheduling students, rooms and faculty to classes, and has a CSV import/export feature for extracting data from the database into CSV files. It can only be installed and used on a Windows machine. It provides no mechanism for autopopulating database tables through scanning web pages. imagic Timetable Master is developed by imagic Software [4] to perform course, faculty and room scheduling. Features include an export function to integrate into software applications like Excel and the Web to output timetables for courses and faculty. It only provides the option of viewing generated schedules on the web and is not entirely web based. It is also reliant on Microsoft technology and provides no support for the CSV file format. It provides no mechanism for reading information from a web page. Free Evolutionary Timetabling is open source free software developed by Liviu Lalescu [5] which uses genetic algorithm to generate course, faculty, student and room schedules. The user can either manually provide or submit an xml file for the system to read from. Even though Free Evolutionary Timetabling is not entirely web based, it is not reliant on Microsoft and provides T4K-18

2 distributions for all major operating systems. However it provides no support for the CSV file format and no services for scanning web pages for scheduling information. TABLE 1 (PART 1) UNIVERSITY SCHEDULING SOFTWARE COMPARISON TABLE Features OS Support Input Source (Format) Solutions IQ.Session Windows Manual (Application GUI) Cyber Matrix Windows Manual (Application Class Scheduler GUI), File (CSV) imagic Timetable Windows Manual (Application Master GUI) Free Evolutionary Windows, Mac OS X, Manual (Application Timetabling Linux, Unix GUI), File (XML) Course Scheduling Windows, Mac OS X, Manual (Web Forms), Support System Linux, Unix Web (HTML) and filtering tables, and a facility to archive faculty and course records when deleted. Internet Users Internet FAU Course Listing Web Page Server Incoming requests authenticated with web server s built in user authentication system Operating System Solutions IQ.Session TABLE 1 (PART 2) UNIVERSITY SCHEDULING SOFTWARE COMPARISON TABLE Features Output Format Cyber Matrix Class Scheduler imagic Timetable Master Free Evolutionary Timetabling Course Scheduling Support System Plain text, HTML, Crystal reports CSV Scheduling Support Courses, Faculty, Students, Rooms Features Accessible through Web Finished schedules Courses, Faculty, None Students, Rooms Excel, HTML Courses, Faculty, Finished Students, Room schedules XML, HTML, Courses, Faculty, Finished ical Students, Rooms Schedules CSV, HTML Courses, Faculty All System Features The remaining sections of this paper introduce the Course Scheduling Support System by describing its requirements and implementation details. We take a look at the system design at the modular level and explain how each module in the system interacts with one another to make the system work. SYSTEM REQUIREMENTS The high level system view shown in Figure 1 is an overview of the environment under which the Course Scheduling Support System operates. Since our system is accessible through the web, security is an important issue but the requirement is rudimentary. Therefore existing security protocols need to be utilized to secure the scheduling system from unauthorized access. Most web and database servers have built in security features that provide authorization, authentication and access control. Other requirements include an open source web based solution, a mechanism to distinctly identify courses with the same prefix and number, the ability to display records for only a specific term and year, a utility to scan scheduling information from course listing web pages to auto-populate the Schedule table, a utility to extract course listing web page information and database table records into Comma Separated Value (CSV) files, a utility to duplicate schedule records from one term/year to another, user friendly web forms for ordering FIGURE 1 SYSTEM INFRASTRUCTURE The system needs to be able to connect to the Florida Atlantic University course schedule listing web page server to retrieve scheduling information and automatically populate the Schedule table with that information. At the same time the system should produce a CSV file containing all schedule related and non-schedule related information. This task can be achieved by scanning the webpage line by line to find a schedule record and then parse the schedule record to extract field information for the Schedule database table. Database Web Server Database access Authenticated with DB server s Username and password Schedule Database Database tables with just a single field are used to populate drop down lists in web forms for other database tables. This provides an easy way of maintaining drop down list values without changing any code in the web form itself. To add, delete or update any values in this drop down list, a user just needs to update its corresponding table. Other significant tables needed in the database include Course, Faculty, Preference, and Schedule. The Course table is for mainstream courses that have their own unique course id. Maintaining historic course records are important so no Course record should be physically deleted. Instead they will get deactivated by switching a Boolean value. The Faculty table will store information about each faculty in the Computer Science and Engineering department who teaches its courses. Like Course records, Faculty records also hold historic importance and should not be physically deleted. The Preference table will T4K-19

3 store information about the courses that a faculty can teach or prefers to teach in a particular term and year. The last and most important table in the database is the Schedule table which will hold scheduling information such as the days, times, locations for each course section and the faculty teaching it. A PROTOTYPE The Course Scheduling Support System prototype includes a web based user interface developed in HTML, CSS and JavaScript. Its processing logic is developed in PHP and it includes a MySQL database system. As illustrated in Figure 2, the system has a Front End and a Back End composed of modules. The Front End is defined by the User Interface Module which determines how the user interacts with the system and ensures users can access the entire system through any web browser that supports viewing through HTML, CSS and JavaScript. The Back End is a combination of the Form Processing Module and the Database Module. FIGURE 2 SYSTEM ARCHITECTURE Figure 3 provides a detailed view of the system architecture with insight into each system module and how they interact with each other to make up the entire system. The system modules are denoted in bold letters. The dashed line delineates the boundary for the User Interface Module, Web Form Module and Form Processing Module to indicate which parts of the system architecture are its components. field information for the Schedule database table. User Interface Module The user interface to the system includes text information, html links and web forms. There is a home page containing links to all web forms for all database tables as well as other services. The user interface of the database table web forms allow users to insert, update and delete database records. It also allows user to sort, filter and copy records based on the requirements of certain tables. Each function has its own web form for input and display of information related to that web form. The User Interface Module sets the standard for the Maintenance Support Module and the Web Form Module so that their user interface features remain consistent. Maintenance Support Module The Maintenance Support Module is part of the Front End and helps the user control certain front end features such as drop down lists and field name abbreviations. It reduces the amount of time needed to update changes to these features. The drop down list values come from a table specifically created to hold its values. Therefore any updates made to these tables affect what user sees in the drop down list. Like any other table, these tables also have their own web forms which the user can use to insert, update and delete values in order to update the values in a drop down list field of another web form. Field names for all tables in the database are stored in the Abbr table which consists of two fields, Field_Name and Field_Abbr. Web forms for all other tables use this table to determine the abbreviated versions of their field names to display for the user. This allows user to customize meaningful filed names and control the display width of a column which may expand with a long field name. Web Form Module The Web Form Module is also part of the Front End and it ensures that web forms are created and displayed based on schema information retrieved from each table that the web form represents. The module ensures all web forms are generated automatically and changes made to the existing database tables are automatically reflected in the front end web forms. This procedure is implemented by first collecting all schema information such as field names, field types, field lengths and number of fields into variables which are then used wherever they are needed to generate a web form. No value is hard coded except for the table name for which the web form is being built. This module is also responsible for colleting user input and passing it to the Form Processing Module. The components within the Web Form Module shown in the detailed system architecture view of Figure 3 represent all the operations that can be performed on these web forms. The operations are labeled by the purpose that they serve. The lines connecting these components illustrate the sequence of operations that are called in order to gather user input before transferring that input to the Form Processing Module. Even though each one of these operations serve a different purpose, the implementation logic behind them are similar since they all have the same goal. The goal is to gather information inputted by the user in the forms and send them to the Form Processing Module so that it can process them into queries for the database to execute. When a user is finished entering all data into the forms, the Form Processing Module takes over to gather and process this input. The following list T4K-20

4 explains what each component in the Web Form Module of Figure 3 does in their correct sequence of occurrence as connected by the lines. FIGURE 3 DETAILED VIEW OF SYSTEM ARCHITECTURE a) Preference Filter by Course ID This component brings up the Preference Filter web form for the purpose of allowing the user to filter Preference records by Course ID. b) Select Course ID to filter by This is the input box of the preference filter web form where the user inputs the course id that the resulting set of Preference records should have. All other Preference records not having this course id will not be listed. c) View Filtered Preference Table This component transfers the user input to the Form Processing Module so that the course id inputted by the user can be used to construct the filter query for the Preference table. d) Schedule Filter and Order This component brings up the Schedule Filter and Order web form for the purpose of allowing the user to filter and order the Schedule records based on the values provided for the Schedule fields Days1 and Days2 and values provided for the sequence of Schedule fields that the Schedule records need to be ordered by. e) Select Filters Campus, Days1 and Days2 and the Ordering Sequence These are the input boxes of the Schedule Filter and Order web form where user enters values for Campus, Days1 and Days2 that the resulting set of Schedule records should have, and values for the ordering sequence where user enters the field names of the Schedule table based on which the Schedule records should be ordered. f) View Filtered and Ordered Set of Schedule Records This component transfers the user input to the Form Processing Module so that the course id inputted by the user can be used to construct the filter and order query for the Schedule table. g) Copy Schedule This component brings up the Copy Schedule web form for the purpose of allowing the user to copy old Schedule records as new Schedule records. h) Select Old and New Term/Year Values These are input boxes for the Copy Schedule web form where user enters values for Old Term/Year and New Term/Year. i) Copy Old Schedule to New Schedule This component transfers the user input to the Form Processing Module so that the Old and New Term/Year values can be used to construct the insert statement for the Schedule table. j) Insert/Update/Delete This is a common component in all table web forms allowing user to insert new records, update current records or delete current records. k) Provide Values for Insert and Update There are web forms for only Insert and Update since they both require more information from user to generate the appropriate query. These forms are generated automatically based on schema information of the table in question. Once user inputs all the data necessary, the information is sent over to the Form Processing Module so that the values provided can be used to construct the insert or update statement for the table. l) Download From OASIS This component brings up the Download From OASIS web form where user can specify the course listing web page from which to gather scheduling information from. m) Select Year and Term These are input boxes for the Download From OASIS web form where user can enter the year and term of the course listing web page that the system should connect to and gather scheduling information from. n) Create CSV and Insert Schedule Records or Update Enrollment - This component transfers the user input to the Form Processing Module so that the Year and Term T4K-21

5 values can be used to locate the course listing web page and connect to it for scheduling information. o) Export Table to CSV This component brings up the Export Table to CSV web form where user can specify the table for which to create the CSV file for. p) Select Table and Export This component presents an input box where user can enter the table name for which the system should generate CSV file. This information is passed on to the Form Processing Module so that it can generate a query to extract all data from the specified table and create a CSV file. Form Processing Module The Form Processing Module takes care of backend processing tasks which include processing user input to generate SQL queries, communicating with the database to execute queries and display database results including error messages, retrieving data from web pages to auto populate the Schedule table and generate CSV files, and error handling to keep the system from crashing due to erroneous user input. In forms that need to process queries, when the user hits the Update or Delete button on a web form, the form does a post back which means updates and deletions are taken care of in the same web form. Each record in the web form is preceded with the check box form element whose value is all the field values in the record the checkbox represents, concatenated with the asterisk. Once the field values are received, they are used to construct a query. This is done simply by concatenating field values with the general query which could either be an update, insert, delete or other query. Once the query is constructed, it is executed and the results displayed on the web page. Automatically populating the Schedule table is performed by connecting to the university course listing web page and reading the page as a set of lines and characters. Each line is stripped of any HTML tags and regular expressions are used to identify lines containing scheduling information. Those lines are then parsed to extract information for each field in the Schedule table and to create the CSV file. Database Module The Database Module defines the tables in the database, the relationships between them and rules that describe how data is to be inserted, updated or deleted from each table. It forms the backbone of the Course Scheduling Support System and is needed by all the other modules as illustrated in Figure 4. The Web Form Module relies on the database for table schema information to create and process web forms for each table. The Maintenance Support Module has specific tables in the database that it uses to manage the content of drop down lists and the size of table field names in the web forms. The Form Processing Module communicates with the database to process user queries and display information returned such as query results and error messages. Finally the User Interface Module provides the user a medium through which to interact with the database. FIGURE 4 INTERACTION BETWEEN SYSTEM MODULES A WALKTHROUGH We will walk through one major feature of the Course Scheduling Support System and see how the system works. This feature is called the Download From OASIS utility service, illustrated with the flow chart in Figure 5. OASIS is the name given to our university s student academic information web pages which include course schedule listings. This service is requested when the user selects the academic year of the course schedule listing web page that the user wants information from. The user then needs to indicate the term of the year. The system then presents a web form consisting of a drop down list and three buttons to choose from, which are Create CSV/Insert Records, Update Enrollment, and Home. Values for the drop down list consist of the three academic terms, Fall, Spring and Summer which the user can select from. The user can then choose to create a CSV file and insert records into the Schedule table, update only the enrollment information in the Schedule table, or go back to home page. When user decides to either update enrollment or create CSV file and insert records, the system checks to see whether a course schedule listing page for the academic year and term selected exists. If it does not, an error message is displayed. If it does, then the system connects to the course schedule listing web page, gathers all the relevant information needed, disconnects from the course listing web page and populates or updates the schedule table. It also creates a CSV file and a Log file and provides the user with a link to these files so that they can be downloaded. The CSV file will contain all scheduling information in the comma delimited format. The log file will contain any error messages generated while performing this task and while communicating with the database. T4K-22

6 REFERENCES [1] D. Montana, So you want to build an automated scheduling system, BBN Technologies, 2002, pp [2] IQ.Session, ComQuip Inc, Key benefits, February [3] CyberMatric Class Scheduler, CyberMatrix Corporation Inc, Benefits/Features, December [4] imagic Timetable Master, imagic Software, Product overview, [5] Free Evolutionary Timetabling Software, Liviu Lalescu, Features, April FIGURE 5 FLOW CHART FOR DOWNLOAD FROM OASIS UTILITY CONCLUSION The Course Scheduling Support System addresses the issues presented in the introduction. This system has no cost of purchase since it was built as on open source thesis project. It has been designed and implemented to reduce cost of maintenance such that certain changes like schema changes to the database, addition of new tables or deletion of old tables, and updating drop down lists in web forms, are automatically reflected by the system without the need for code changes. Since the system has an interactive user friendly interface, and is built on the existing scheduling process used by our department, there is hardly any training needed for a user to use this system. Technological requirements to deploy this system anywhere is not an impediment since open source technology such as PHP, MySQL and Apache are used to build the system. These technologies provide builds for all major operating systems and only need to be installed on one server machine. Finally, since the system is web based, the user interface to the system can be accessed from any web browser. T4K-23

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

- 1 - Guidance for the use of the WEB-tool for UWWTD reporting

- 1 - Guidance for the use of the WEB-tool for UWWTD reporting - 1 - Guidance for the use of the WEB-tool for UWWTD reporting June 13, 2011 1 0. Login The Web tool application is available at http://uwwtd.eionet.europa.eu/ You can access the application via the form

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support.

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support. Sync & Save Introduction Sync & Save allows you to connect the DoForms service (www.doforms.com) with your accounting or management software. If your system can import a comma delimited, tab delimited

More information

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

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

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476 ERP SYSYTEM Nitika Jain 1 Niriksha 2 1 Student, RKGITW 2 Student, RKGITW Uttar Pradesh Tech. University Uttar Pradesh Tech. University Ghaziabad, U.P., India Ghaziabad, U.P., India ABSTRACT Student ERP

More information

Toad for Data Analysts, Tips n Tricks

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

More information

Dimension Technology Solutions Team 2

Dimension Technology Solutions Team 2 Dimension Technology Solutions Team 2 emesa Web Service Extension and iphone Interface 6 weeks, 3 phases, 2 products, 1 client, design, implement - Presentation Date: Thursday June 18 - Authors: Mark Barkmeier

More information

SQL2report User Manual

SQL2report User Manual SQL2report User Manual Version 0.4.2 Content of the document 1. Versions... 3 2. Installation... 5 3. Use Manual... 8 3.1. Sql2report Manager... 8 3.1.1. Reports.... 8 3.1.2. Filters.... 15 3.1.3. Groups....

More information

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18 MailSteward Manual Page 1 Table of Contents Introduction: 2 Settings: 6 Archive Email: 9 Search Email: 12 Browse Email: 16 Schedule Archiving: 18 Add, Search, & View Tags: 20 Set Rules for Tagging or Excluding:

More information

Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function

Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function 1 Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function 1 Endnote Web User Guide Version 3.4 Created: June 2012 Author: Jessica Eustace-Cook 1 Table of Contents 1. About

More information

Document management and exchange system supporting education process

Document management and exchange system supporting education process Document management and exchange system supporting education process Emil Egredzija, Bozidar Kovacic Information system development department, Information Technology Institute City of Rijeka Korzo 16,

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Using Process Monitor

Using Process Monitor Using Process Monitor Process Monitor Tutorial This information was adapted from the help file for the program. Process Monitor is an advanced monitoring tool for Windows that shows real time file system,

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute

Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute JMP provides a variety of mechanisms for interfacing to other products and getting data into JMP. The connection

More information

Equipment Room Database and Web-Based Inventory Management

Equipment Room Database and Web-Based Inventory Management Equipment Room Database and Web-Based Inventory Management Project Proposal Sean M. DonCarlos Ryan Learned Advisors: Dr. James H. Irwin Dr. Aleksander Malinowski December 12, 2002 TABLE OF CONTENTS Project

More information

Chapter 10 Encryption Service

Chapter 10 Encryption Service Chapter 10 Encryption Service The Encryption Service feature works in tandem with Dell SonicWALL Email Security as a Software-as-a-Service (SaaS), which provides secure data mail delivery solutions. The

More information

Chapter 24: Creating Reports and Extracting Data

Chapter 24: Creating Reports and Extracting Data Chapter 24: Creating Reports and Extracting Data SEER*DMS includes an integrated reporting and extract module to create pre-defined system reports and extracts. Ad hoc listings and extracts can be generated

More information

Webmail User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header. Printing an Email. Composing a New Email

Webmail User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header. Printing an Email. Composing a New Email Webmail User Guide Rev: November, 2012 Webmail is supported in the following browsers: Windows Internet Explorer 6, Internet Explorer 7, Firefox 2, and Firefox 3 Mac OSX Safari 2, Safari 3, Firefox 2,

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

Suite. How to Use GrandMaster Suite. Exporting with ODBC

Suite. How to Use GrandMaster Suite. Exporting with ODBC Suite How to Use GrandMaster Suite Exporting with ODBC This page intentionally left blank ODBC Export 3 Table of Contents: HOW TO USE GRANDMASTER SUITE - EXPORTING WITH ODBC...4 OVERVIEW...4 WHAT IS ODBC?...

More information

Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS

Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS JOHN MOYLAN UKONS EXPRESSIONENGINE DOCUMENTATION 2 What is ExpressionEngine? ExpressionEngine is a flexible, feature-rich content

More information

Installing and Using No Machine to connect to the Redhawk Cluster. Mac version

Installing and Using No Machine to connect to the Redhawk Cluster. Mac version Installing and Using No Machine to connect to the Redhawk Cluster Mac version No Machine (also called NX) is a tool that can be used to connect to Miami s Redhawk cluster when a graphical interface is

More information

Using. - Training Documentation -

Using. - Training Documentation - Using - Training Documentation - Table of Contents 1. Overview of Argos..1 2. Getting started.....1 Accessing Argos...1 Login to Argos... 1 Log-off.... 2 Password reset or change... 2 3. Understanding

More information

Open-Xchange Server. User Guide

Open-Xchange Server. User Guide Open-Xchange Server User Guide Open-Xchange Server Open-Xchange Server: User Guide Published Wednesday, 22. December 2010 Version 6.18.2 Copyright 2006-2010 OPEN-XCHANGE Inc., This document is the intellectual

More information

SYSTEM DEVELOPMENT AND IMPLEMENTATION

SYSTEM DEVELOPMENT AND IMPLEMENTATION CHAPTER 6 SYSTEM DEVELOPMENT AND IMPLEMENTATION 6.0 Introduction This chapter discusses about the development and implementation process of EPUM web-based system. The process is based on the system design

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

Web Development using PHP (WD_PHP) Duration 1.5 months

Web Development using PHP (WD_PHP) Duration 1.5 months Duration 1.5 months Our program is a practical knowledge oriented program aimed at learning the techniques of web development using PHP, HTML, CSS & JavaScript. It has some unique features which are as

More information

Outlander User Guide. Installation

Outlander User Guide. Installation Outlander User Guide Outlander is an Outlook Add-In that integrates your contacts, tasks, calendar events, and emails with your SugarCRM system. Installation Outlander is distributed as a Microsoft Installation

More information

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database Application note: SQL@CHIP Connecting the IPC@CHIP to a Database 1. Introduction This application note describes how to connect an IPC@CHIP to a database and exchange data between those. As there are no

More information

TZWorks Windows Event Log Viewer (evtx_view) Users Guide

TZWorks Windows Event Log Viewer (evtx_view) Users Guide TZWorks Windows Event Log Viewer (evtx_view) Users Guide Abstract evtx_view is a standalone, GUI tool used to extract and parse Event Logs and display their internals. The tool allows one to export all

More information

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query SES Project v 9.0 SES/CAESAR QUERY TOOL Running and Editing Queries PS Query Table Of Contents I - Introduction to Query:... 3 PeopleSoft Query Overview:... 3 Query Terminology:... 3 Navigation to Query

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

TeamViewer 9 Manual Management Console

TeamViewer 9 Manual Management Console TeamViewer 9 Manual Management Console Rev 9.2-07/2014 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of Contents 1 About the TeamViewer Management Console... 4 1.1 About the

More information

Implementing a Web-based Transportation Data Management System

Implementing a Web-based Transportation Data Management System Presentation for the ITE District 6 Annual Meeting, June 2006, Honolulu 1 Implementing a Web-based Transportation Data Management System Tim Welch 1, Kristin Tufte 2, Ransford S. McCourt 3, Robert L. Bertini

More information

REDCap General Security Overview

REDCap General Security Overview REDCap General Security Overview Introduction REDCap is a web application for building and managing online surveys and databases, and thus proper security practices must instituted on the network and server(s)

More information

GARDEN STATE APARTMENTS LLC. CUSTOMER RELATIONSHIP MANAGEMENT SYSTEM (FINAL MILESTONE)

GARDEN STATE APARTMENTS LLC. CUSTOMER RELATIONSHIP MANAGEMENT SYSTEM (FINAL MILESTONE) GARDEN STATE APARTMENTS LLC. CUSTOMER RELATIONSHIP MANAGEMENT SYSTEM (FINAL MILESTONE) GROUP #7: James Edward Bell Mark Dudek Michael DiCroce Curtis Hammell December 13, 2013 1 Table of Contents SECTION

More information

Build it with Drupal 8

Build it with Drupal 8 Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version

More information

TDAQ Analytics Dashboard

TDAQ Analytics Dashboard 14 October 2010 ATL-DAQ-SLIDE-2010-397 TDAQ Analytics Dashboard A real time analytics web application Outline Messages in the ATLAS TDAQ infrastructure Importance of analysis A dashboard approach Architecture

More information

Software Requirements Specification. Human Resource Management System. Sponsored by Siemens Enterprise Communication. Prepared by InnovaSoft

Software Requirements Specification. Human Resource Management System. Sponsored by Siemens Enterprise Communication. Prepared by InnovaSoft Software Requirements Specification Human Resource Management System Sponsored by Siemens Enterprise Communication Prepared by InnovaSoft Cansu Hekim - 1630888 Bekir Doğru - 1560085 Zaman Safari - 1572254

More information

Graduate Student Database Project

Graduate Student Database Project Graduate Student Database Project Nicholas Wallen Department of Computer Science Florida State University Major Professor: Dr. David Whalley In partial fulfillment of the requirements for the Degree of

More information

Kaseya 2. User Guide. Version 1.1

Kaseya 2. User Guide. Version 1.1 Kaseya 2 Directory Services User Guide Version 1.1 September 10, 2011 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

Log Analyzer Reference

Log Analyzer Reference IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...

More information

Collated Food Requirements. Received orders. Resolved orders. 4 Check for discrepancies * Unmatched orders

Collated Food Requirements. Received orders. Resolved orders. 4 Check for discrepancies * Unmatched orders Introduction to Data Flow Diagrams What are Data Flow Diagrams? Data Flow Diagrams (DFDs) model that perspective of the system that is most readily understood by users the flow of information around the

More information

INTERSPIRE EMAIL MARKETER

INTERSPIRE EMAIL MARKETER INTERSPIRE EMAIL MARKETER Interspire Pty. Ltd. User s Guide Edition 1.3 April 2009 3 About This User s Guide How to Use This User s Guide This user s guide describes Interspire Email Marketer s Graphical

More information

Richmond Systems. SupportDesk Web Interface User Guide

Richmond Systems. SupportDesk Web Interface User Guide Richmond Systems SupportDesk Web Interface User Guide 1 Contents SUPPORTDESK WEB INTERFACE...3 INTRODUCTION TO THE WEB INTERFACE...3 FEATURES OF THE WEB INTERFACE...3 HELPDESK SPECIALIST LOGIN...4 SEARCHING

More information

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary Executive Summary Belize s HydrometDB is a Climatic Database Management System (CDMS) that allows easy integration of multiple sources of automatic and manual stations, data quality control procedures,

More information

City of Dallas. WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE

City of Dallas. WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE City of Dallas WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE Office of Emergency Management Revised July 3, 2013 Table of Contents ENTERING NEW EQUIPMENT... 1 PRINTING LABELS...

More information

FileMaker Server 15. Custom Web Publishing Guide

FileMaker Server 15. Custom Web Publishing Guide FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

CPM 5.2.1 5.6 release notes

CPM 5.2.1 5.6 release notes 1 (18) CPM 5.2.1 5.6 release notes Aditro Oy, 2014 CPM Release Notes Page 1 of 18 2 (18) Contents Fakta version 5.2.1. version 1.2.1... 3 Fakta version 5.2.1.1038 sp1 version 1.2.1.300 sp1... 4 Fakta version

More information

MS Reporting Services. Sheldon Wai

MS Reporting Services. Sheldon Wai MS Reporting Services Sheldon Wai Little bit about myself Sheldon Wai Was PowerSchool Administrator at Hong Kong International School Now Senior Systems Manager (PowerSchool) at Yew Chung Education Foundation

More information

INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL

INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL INFORMATION BROCHURE OF Certificate Course in Web Design Using PHP/MySQL National Institute of Electronics & Information Technology (An Autonomous Scientific Society of Department of Information Technology,

More information

Ad Hoc Reporting: Data Export

Ad Hoc Reporting: Data Export Ad Hoc Reporting: Data Export Contents Ad Hoc Reporting > Data Export... 1 Export Format Options... 3 HTML list report (IMAGE 1)... 3 XML (IMAGE 2)... 4 Delimited Values (CSV)... 4 Fixed Width (IMAGE 10)...

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Length: 3 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2008

More information

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P.

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P. SQL databases An introduction AMP: Apache, mysql, PHP This installations installs the Apache webserver, the PHP scripting language, and the mysql database on your computer: Apache: runs in the background

More information

Simple Disaster Recovery

Simple Disaster Recovery Simple Disaster Recovery OVERVIEW NetHelpDesk is unlike most products in the market in so many ways. One of the most notable is the simple disaster recovery (DR) procedure that you can follow, to ensure

More information

Teacher Activities Page Directions

Teacher Activities Page Directions Teacher Activities Page Directions The Teacher Activities Page provides teachers with access to student data that is protected by the federal Family Educational Rights and Privacy Act (FERPA). Teachers

More information

MailEnable Web Mail End User Manual V 2.x

MailEnable Web Mail End User Manual V 2.x MailEnable Web Mail End User Manual V 2.x MailEnable Messaging Services for Microsoft Windows NT/2000/2003 MailEnable Pty. Ltd. 486 Neerim Road Murrumbeena VIC 3163 Australia t: +61 3 9569 0772 f: +61

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

ServerView Inventory Manager

ServerView Inventory Manager User Guide - English FUJITSU Software ServerView Suite ServerView Inventory Manager ServerView Operations Manager V6.21 Edition October 2013 Comments Suggestions Corrections The User Documentation Department

More information

Implementing and Maintaining Microsoft SQL Server 2008 Reporting Services

Implementing and Maintaining Microsoft SQL Server 2008 Reporting Services Course 6236A: Implementing and Maintaining Microsoft SQL Server 2008 Reporting Services Length: 3 Days Published: December 05, 2008 Language(s): English Audience(s): IT Professionals Level: 200 Technology:

More information

IceWarp Server. Log Analyzer. Version 10

IceWarp Server. Log Analyzer. Version 10 IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...

More information

COMPUTER SCIENCE (AS) Associate Degree, Certificate of Achievement & Department Certificate Programs

COMPUTER SCIENCE (AS) Associate Degree, Certificate of Achievement & Department Certificate Programs A Course of Study for COMPUTER SCIENCE (AS) Associate Degree, Certificate of Achievement & Department Certificate Programs The field of computer science leads to a variety of careers that all require core

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

Norwex Office Suite: The Consultant Experience

Norwex Office Suite: The Consultant Experience Norwex Office Suite: The Consultant Experience This document describes what you, as a consultant, will experience when you log onto your Norwex Office Suite website. You will be required to access your

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

Vendor: Brio Software Product: Brio Performance Suite

Vendor: Brio Software Product: Brio Performance Suite 1 Ability to access the database platforms desired (text, spreadsheet, Oracle, Sybase and other databases, OLAP engines.) yes yes Brio is recognized for it Universal database access. Any source that is

More information

FileMaker Server 9. Custom Web Publishing with PHP

FileMaker Server 9. Custom Web Publishing with PHP FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,

More information

Brock University Content Management System Training Guide

Brock University Content Management System Training Guide Brock University Content Management System Training Guide Table of Contents Brock University Content Management System Training Guide...1 Logging In...2 User Permissions...3 Content Editors...3 Section

More information

User Training Guide. 2010 Entrinsik, Inc.

User Training Guide. 2010 Entrinsik, Inc. User Training Guide 2010 Entrinsik, Inc. Table of Contents About Informer... 6 In This Chapter... 8 Logging In To Informer... 8 The Login... 8 Main Landing... 9 Banner... 9 Navigation Bar... 10 Report

More information

IMPLEMENTATION OF A TIME TABLE GENERATOR USING VISUAL BASIC.NET

IMPLEMENTATION OF A TIME TABLE GENERATOR USING VISUAL BASIC.NET IMPLEMENTATION OF A TIME TABLE GENERATOR USING VISUAL BASIC.NET Joseph M. Mom and Jonathan A. Enokela Department of Electrical and Electronics Engineering, University of Agriculture, Makurdi, Nigeria E-Mail:

More information

Reporting. Understanding Advanced Reporting Features for Managers

Reporting. Understanding Advanced Reporting Features for Managers Reporting Understanding Advanced Reporting Features for Managers Performance & Talent Management Performance & Talent Management combines tools and processes that allow employees to focus and integrate

More information

Unified University Inventory System (UUIS) Software Requirements Specifications

Unified University Inventory System (UUIS) Software Requirements Specifications Unified University Inventory System (UUIS) Software Requirements Specifications Copyright COMP5541 Team III 2010 Authors Ahmed Daoudi David Zerkler Gay Hazan Isabelle Toutant Mariano Diaz René Toutant

More information

Seeing by Degrees: Programming Visualization From Sensor Networks

Seeing by Degrees: Programming Visualization From Sensor Networks Seeing by Degrees: Programming Visualization From Sensor Networks Da-Wei Huang Michael Bobker Daniel Harris Engineer, Building Manager, Building Director of Control Control Technology Strategy Development

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql 1 About WEB DEVELOPMENT Among web professionals, "web development" refers to the design aspects of building web sites. Web development

More information

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com.

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com. Technical Support and Product Information tk20.com Tk20 Corporate Headquarters 10801 MoPac Expressway, Suite 740, Austin, Texas 78759 USA Tel: 512-401-2000 For further support information, refer to the

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

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175 / 1 Online Banking User Guide SouthStateBank.com / (800) 277-2175 Welcome Thank you for using South State s Online Banking. Whether you are a first time user or an existing user, this guide will walk you

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

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

Module 9 Ad Hoc Queries

Module 9 Ad Hoc Queries Module 9 Ad Hoc Queries Objectives Familiarize the User with basic steps necessary to create ad hoc queries using the Data Browser. Topics Ad Hoc Queries Create a Data Browser query Filter data Save a

More information

Windows Mail POP Instructions - Bloomsburg University Students

Windows Mail POP Instructions - Bloomsburg University Students 1. Open Windows Mail from your Start Menu. 2. Click on the Tools menu and click Accounts. 1 3. Click on Add to add your account. 4. Click on Email Account and then click Next. 2 5. Enter your full name

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Student Data Reporting I Cognos

Student Data Reporting I Cognos Confidential Business Information This documentation is proprietary information of New Mexico State University (NMSU) and is not to be copied, reproduced, lent or disposed of, nor used for any purpose

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz March 1, 2015 The Database Approach to Data Management Database: Collection of related files containing records on people, places, or things.

More information

ENTERPRISE PASSWORD SAFE ENTERPRISE PASSWORD SAFE VERSION

ENTERPRISE PASSWORD SAFE ENTERPRISE PASSWORD SAFE VERSION You can read the recommendations in the user guide, the technical guide or the installation guide for ENTERPRISE PASSWORD SAFE ENTERPRISE PASSWORD SAFE VERSION 1.57.12. You'll find the answers to all your

More information

Ipswitch Client Installation Guide

Ipswitch Client Installation Guide IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group

More information

KeyAdvantage System DMS Integration. Software User Manual

KeyAdvantage System DMS Integration. Software User Manual KeyAdvantage System DMS Integration Software User Manual ii Copyright Disclaimer Trademarks and patents Intended use EMC Directive Regulatory 2013 United Technologies Corporation. All rights reserved.

More information

graphical Systems for Website Design

graphical Systems for Website Design 2005 Linux Web Host. All rights reserved. The content of this manual is furnished under license and may be used or copied only in accordance with this license. No part of this publication may be reproduced,

More information

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027)

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) 2015 VoIP Integration Rev. July 24, 2015 Table of Contents Product Overview... 3 Application Requirements... 3 Cisco Unified Communications

More information

Content Management System (CMS)

Content Management System (CMS) Content Management System (CMS) ASP.NET Web Site User interface to the CMS SQL Server metadata storage, configuration, user management, order history, etc. Windows Service (C#.NET with TCP/IP remote monitoring)

More information

Web Mail Classic Web Mail

Web Mail Classic Web Mail April 14 Web Mail Classic Web Mail Version 2.2 Table of Contents 1 Technical Requirements... 4 2 Accessing your Web Mail... 4 3 Web Mail Features... 5 3.1 Home... 5 3.1.1 Mailbox Summary... 5 3.1.2 Announcements...

More information

Equipment Room Database and Web-Based Inventory Management

Equipment Room Database and Web-Based Inventory Management Equipment Room Database and Web-Based Inventory Management System Block Diagram Sean M. DonCarlos Ryan Learned Advisors: Dr. James H. Irwin Dr. Aleksander Malinowski November 4, 2002 System Overview The

More information