TRINITY PROJECT PROPOSAL. James DeBolt Valiant Tsang

Size: px
Start display at page:

Download "TRINITY PROJECT PROPOSAL. James DeBolt Valiant Tsang"

Transcription

1 TRINITY PROJECT PROPOSAL James DeBolt Valiant Tsang SYST 699 Spring 2017

2 Table of Contents 1. Introduction Background Problem Statement Scope Assumptions Preliminary System Requirements Technical Approach Systems Engineering Solution Methodology Software/Schedule Tool Development Integration and Testing Project Management Project Schedule Communications Plan Deliverables Tool and User Manual Website Final Report and Presentation References

3 1. Introduction 1.1. Background The Trinity School at Meadow View is a small, private secondary school in Falls Church, Virginia. The coed school has approximately 150 students in grades seven through twelve. The school teaches a core curriculum to the students with little to no variation from year to year. Like other educational institutions of similar size, the Trinity School faculty engage in the activity of developing the class schedule by matching the teachers to the courses to the facilities and rooms to the time of day in which the courses are taught Problem Statement Commercial software exists for the development of schedules; however due to fiscal constraints, the Trinity School faculty develops the class schedule manually, using pen and paper. This is a manual, time-consuming, and cumbersome process that takes place twice per academic year Scope The scope of this project is to deliver a tool that will produce the class-teacher schedule that does not violate scheduling constraints such as those pertaining to teacher availability, class room size, or course curriculum rules. This effort is not to produce an optimized schedule, but for the tool to generate feasible schedules. The project team will build upon a previously developed Microsoft Access based application. Business constraints that were not previously implemented will now be incorporated. Additionally, the user interface and user experience will be enhanced Assumptions The following are assumptions that are being taken into consideration for the development of the system: The actual assignments of teachers to their courses are predetermined prior to using the system. The system will allow the user to pair teachers and courses to facilitate the development of the schedule Classroom name/number and classroom capacity will not change Preliminary System Requirements The following are preliminary system requirements that have been captured or derived and define the Trinity School Scheduler s (TSS) capabilities and constraints Functional Requirements The system shall have the capability to allow the user to enter information to include, but not limited to, the following: Teacher name Teacher availability Course names Number of students per course 2

4 The system shall have the capability that allows the user to delete user inputted information The system shall have the capability that allows the user to edit user inputted information The system shall be capable of producing a table of user input to provide status of teacher-course pairing The system shall be capable of producing at least two feasible schedules based on user input The system shall be capable of producing the output in tabular format The system shall be capable of storing user input. It will not require re-entry of identical information after compiling and executing the program Other Requirements The system shall incorporate scheduling constraints in accordance with information provided by the project sponsor These scheduling constraints presented in a spreadsheet shall be transcribed to ensure the constraint is accurately captured for incorporation. 2. Technical Approach 2.1. Systems Engineering The project team will liberally follow the V-model process for the development of the TSS. In trying to employ some practices related to Agile development, flexibility is required at that the beginning of the process for the purposes of minimizing lost time that would be related to a rigid process. For example, while research and analysis of the requirements are not complete, the project team will already be engaged with the design and development of the user interface and the coding to integrate the linear programming solver. On the backend of the V-model process, the project team will be more rigid with the testing, integration, and verification and validation to ensure all requirements are incorporated into the tool, full functionality of the tool, and that the tool meets the needs of the project sponsor. Figure 1. TSS Systems Engineering Approach 3

5 2.2. Solution Methodology School timetabling is an effort to develop a schedule of all the classes for the school by avoiding scheduling any one teacher in different classes at the same. As simple as it may sound, this has been a research topic for many years which includes significant time spent on automating the process. Many algorithms and techniques such as integer programming (IP), constraint programming, greedy algorithms, heuristic algorithms, and hybrids of techniques have been developed to address this problem set. A possible reason as to why there has not there been a single best solution to the school timetabling problem is the uniqueness of the constraints from one academic institution to another. Constraints are categorized as hard or soft. Hard constraints are the restrictions to which a solution must abide to while soft constraints are preferences. For a feasible solution, violation of the soft constraints is acceptable. Having deconstructed and analyzed the existing TSS, the current solution is to continue to use the IP approach to the school timetabling problem presented by the project sponsor. Due to the uniqueness of the school s curriculum, limited facility space, and teacher availability, all constraints will be considered hard Software/Schedule Tool Development The project team will use as much of the existing software and will add in additional functionality to enhance the tool to more completely meet Trinity s needs. The tool s functionality is realized in four primary phases: inputting requisite information into the user interface, formulating the integer program, solving the scheduler problem, and then creating the output TSS User Interface The existing TSS User Interface (UI) was developed using Microsoft Access Visual Basic for Applications (VBA) forms. The UI was designed with the intent that clerical, nontechnical staff should be able to easily generate a schedule with minimal training. The current version of the TSS does not meet this goal, and the project team will work to make the workflow more intuitive and less error-prone. Rather than allocating the team s available man-hours towards a complete rework of the UI, more effort will be made towards making modifications and bug fixes against the current functionality. Screens currently exist for accepting user input into some of the database tables that back the application, but not all allow tweaking of all pieces of data (such as renaming teachers or deleting data points). These forms will be reworked to allow straightforward modification of every piece of data that should be editable by the user. The homepage will be tweaked to allow input for the number of desired schedules to be generated. Additionally, the link out to the solver will be enhanced to call the new Java solver integration tool, passing along the current IP data and number of desired schedules. In order to support several new rules which must be considered by the solver, the team will create and expand database tables to facilitate new information from the user. These tables enhancements will be made with corresponding UI enhancements which allow for input, modification, and deletion of that data. 4

6 Integer Program Solver The existing TSS uses a MS Access VBA script to construct and output the Integer Program in the.mps file format. This MPS file would then be uploaded to the NEOS web server for processing, and the results would be ed to the user. However, this is a time-consuming, manual, and error-prone process. The current average run time for schedule generation on the NEOS server is only 2.02 seconds, which means that a relatively small amount of processing power and time is necessary to run the solving algorithm. Rather than incurring the time and complexity overhead of performing this process manually, the updated tool will instead rely upon the user s desktop to perform the optimization. The project team will integrate an appropriate Java library that includes solver functionality into a custom Java process which will accept the existing IP output file, perform the solving, and then save the results locally. Additionally, this Java tool will be able to automatically open the TSS Output Interface and set the appropriate file-path variable to the newly created output file. This will remove all need for 1) converting the Access IP output into MPS 2) opening a browser, navigating to NEOS and providing all of the pertinent information and uploading the MPS file, 3) waiting for the result file to be ed, and 4) needing to modify the output file and configure the TSS Output Interface to find it. Instead, all of this be performed behind the scenes by the Java application, while the user can take a few minutes to grab a coffee TSS Output Interface The TSS Output Interface is a MS Excel-based tool that allows the user to construct a human-readable schedule from the.sol formatted output of a solver tool. The homepage of this tool allows for a single click to update the excel sheet s records with all of the input values that had been provided to the TSS User Interface. These values are then used when the user navigates to the Master Schedule tab which allows for schedule export to PDF. The master schedule is a student-oriented view which shows separate junior high and high school schedules, showing each student cohorts daily schedule. Another available output from the TSS Output Interface is the Teacher Schedule which provides an ordered list of Teacher, Period, Student Cohort, Class, and Classroom combinations. This teacher-oriented output allows the user to easily display each teacher s workload Integration and Testing The TSS will no longer require external integrations with external code or websites except for the solver libraries included in the Java-level processing. This integration will be achieved within the code via the use of publicly available API s exposed by the Java Archives (JARs) which will be imported into the code. This integration, as well as the whole of the UI and database changes, will be verified according to the test plan. Testing will be performed, both internally and with the sponsor, to ensure that requirements have been satisfied. Test cases will be created to cover each of the requirements outlined in Section 1.5, and use the end-to-end functionality of the TSS via utilization of the TSS UI, the Java solver, and the TSS Output Interface. Additionally, the final outputs of the master plans and corresponding teacher schedules will be checked for compliance against scheduling criteria and will be submitted to the project sponsor for approval. Specific attention will also be paid towards validating that the total execution time is acceptable, as one of the risks incurred by this development is performance risk since 5

7 solving will be performed by the CPU on the user s machine instead of a remote server. This testing will also involve qualitative components regarding the appearance of the UI and ease of use (ensuring that a user with no training and just the guide would be able to sufficiently generate schedules using the TSS). 3. Project Management 3.1. Project Schedule The project schedule reflects the planned activities and milestones associated with the TSS project. As noted in above in section 2.1. Systems Engineering, the project schedule reflects the desired flexibility with overlap of tasks associated with researching and refining requirements with the design and development of the tool. 6

8 Figure 2TSS Project Schedule 7

9 3.2. Communications Plan The project team will establish regular bi-weekly meetings with the project sponsor. The intent of the meetings will be to ensure that the requirements (specified and derived) are agreed upon, that the user interface and tool workflow are acceptable, and to provide general status and progress of the project. 4. Deliverables 4.1. Tool and User Manual The tool will be delivered in three parts. The TSS UI will be delivered as a Microsoft Access Database file, the java solver will be delivered as a Java archive file, and the TSS Output Interface will be delivered as an excel workbook. These will be bundled together in a compressed zip folder which will allow for faster file transfer. Also included in this zip will be a Java Runtime Environment (JRE) installer which will be necessary for running the solver. The zip will be accompanied with a PDF-formatted Tool User Manual which will document the steps necessary to configure the user s PC and then launch and utilize the application. Configuration steps will include unzipping the tool zip folder, installing the JRE, and adding a Windows Environment Variable. The tool usage part of the manual will include all of the steps necessary for configuring the term-specific information (e.g. classes, classrooms, teachers, etc.), launching the schedule generation, and then interacting with the output UI to complete the process Website The project team will create and deliver a website to be hosted on the George Mason University domain which will serve as another point of documentation for the project. This site will include a page for describing the background and approach to the problem that the development is intended to address. Another page will provide brief biographies of the team members and their technical backgrounds as they contributed to the success of the project. This site will also host a downloadable version of the final deliverables, so that the tool can be utilized without the need for physical storage media such as a CD or flash drive Final Report and Presentation The project team will deliver two final documents for the benefit of the class and sponsor to communicate the summation of the Systems Engineering process embarked upon by the team in the pursuit of accomplishing this project. The final report will include information similar to the proposal, but with updated final figures and extra information about final design solutions and screenshots of the tool in action. The final presentation will convey similar information in PowerPoint format. 8

10 5. References Schaerf, A (1999a). A survey of automating timetabling. Artificial Intelligence Review, 13(2), Pillay, N (2014). A survey of school timetabling research. Annals of Operations Research, vol. 218, issue 1,

11 Approval from Project Sponsor By undersigning below, project sponsor acknowledges and accepts this proposal for the development of the Trinity School Scheduler. Project sponsor also acknowledges that the scope and requirements may be adjusted as the project progresses. In the event that there is a need to adjust the scope and requirements, coordination with the project sponsor will occur prior to implementation of the adjustments. Timothy Maloney Approved by: 2/21/17 Timothy Maloney, Project Sponsor Date 10

Scheduling for Trinity School at Meadow View. User s Manual. May 8, 2017

Scheduling for Trinity School at Meadow View. User s Manual. May 8, 2017 Scheduling for Trinity School at Meadow View User s Manual May 8, 2017 Prepared By: James DeBolt Valiant Tsang Mary Barthelson Marissa Brienza Zachary Nuzzo Sponsor: Tim Maloney Chair of Math and Science

More information

RenWeb Training. Creating Your Classroom Website

RenWeb Training. Creating Your Classroom Website RenWeb Training Creating Your Classroom Website October 2013 RenWeb Training Manual Table of Contents Ren Web Survey 3 Pre-Training Handout: Saving a Document as a PDF 4 Lesson 1: Adding Homework & Web

More information

Getting started with my.acap

Getting started with my.acap Getting started with my.acap A resource for Students, including: 1. Logging in to my.acap 2. Accessing your Classes 3. Participant Profiles a. Updating your own Profile 4. Announcements and Discussion

More information

MAASTO TPIMS Systems Engineering Analysis. Documentation

MAASTO TPIMS Systems Engineering Analysis. Documentation MAASTO TPIMS Project MAASTO TPIMS Systems Engineering Analysis Documentation Date: November 18, 2016 Subject: MAASTO TPIMS Systems Engineering Analysis and Supplementary Project Documentation Summary Introduction

More information

Microsoft Windows Software Manual for FITstep Pro Version 3

Microsoft Windows Software Manual for FITstep Pro Version 3 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Overview... 3 Goals and Objectives... 3 Roles, Responsibility, and Protocol Calendars... 4

Overview... 3 Goals and Objectives... 3 Roles, Responsibility, and Protocol Calendars... 4 1 Contents Overview... 3 Goals and Objectives... 3 Roles, Responsibility, and Protocol... 3 Calendars... 4 Role Requirements... 4-7 Site Directors/Editors/District Level... 4 Subsite Directors/Editors/Dept.

More information

Microsoft Windows Software Manual for FITstep Stream Version 3

Microsoft Windows Software Manual for FITstep Stream Version 3 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

International Partnerships System

International Partnerships System International Partnerships System User Guide Version 1.0 Contents Chapter One - Introduction... 1 How to use this guide... 1 Application Purpose... 1 How to get help... 1 Online resources... 1 University

More information

feel free to poke around and change things. It's hard to break anything in a Moodle course, and even if you do it's usually easy to fix it.

feel free to poke around and change things. It's hard to break anything in a Moodle course, and even if you do it's usually easy to fix it. Teacher s Manual Teacher Manual This page is a very quick guide to creating online courses with Moodle. It outlines the main functions that are available, as well as some of the main decisions you'll need

More information

Instructional Design: ADDIE Model

Instructional Design: ADDIE Model Instructional Design: ADDIE Model RenWeb Training for Teachers at Trinity Lutheran School EDT 892 Instructional Design Tiffany Gurgel October 2013 EDT 892 Instructional Design - RenWeb Training by Tiffany

More information

User Guide. : Preparation

User Guide. : Preparation User Guide : Preparation : Preparation Contents Part : Part : What is Preparation? Book Resources Page 3. Accessing Pearson resources. Adding resources to Teaching Plans and Overview.3 Adding Pearson resources

More information

Drag and drop. All done!

Drag and drop. All done! Working with Moodle, a Guide for Faculty Posting Course Materials and Managing Files Summary Moodle helps you share many different types of files with your students - Word documents, PowerPoint presentations,

More information

Mac Software Manual for FITstep Pro Version 3

Mac Software Manual for FITstep Pro Version 3 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

SafeAssign. Blackboard Support Team V 2.0

SafeAssign. Blackboard Support Team V 2.0 SafeAssign By Blackboard Support Team V 2.0 1111111 Contents Introduction... 3 How it works... 3 How to use SafeAssign in your Assignment... 3 Supported Files... 5 SafeAssign Originality Reports... 5 Access

More information

Part 3: Essentials for Teachers with New Course Sites

Part 3: Essentials for Teachers with New Course Sites Part 3: Essentials for Teachers with New Course Sites Moodle 2 includes many new features. One of these is the file management system through which you can organize, prepare and upload content into your

More information

This Document is licensed to

This Document is licensed to GAMP 5 Page 291 End User Applications Including Spreadsheets 1 Introduction This appendix gives guidance on the use of end user applications such as spreadsheets or small databases in a GxP environment.

More information

ONLINE CLASSROOM

ONLINE CLASSROOM ONLINE CLASSROOM - 76 - The Online Classroom is available to all staff members. Online Classroom At anytime you can save your information and at the top right of your OLC page you will see Once a teacher

More information

Curriculum Certification Renewal Application Page 1 of 3

Curriculum Certification Renewal Application Page 1 of 3 Curriculum Certification Renewal Application Page 1 of 3 Name of School: Address: Street City State Zip Telephone Number Fax Number Administration: Privately Operated State Supported Community Operated

More information

Request For Proposal ONWAA Website & E-Learn Portal

Request For Proposal ONWAA Website & E-Learn Portal Request For Proposal ONWAA Website & E-Learn Portal ONWAA 880 17 E, Garden River, Ontario P6A 6Z5 Table Of Contents General information Project Overview Statement of Needs Proposal Format Proposal Preparation

More information

Your Essential Skills Online program is a web application, which runs in your web browser on a Windows PC or Macintosh computer.

Your Essential Skills Online program is a web application, which runs in your web browser on a Windows PC or Macintosh computer. TABLE OF CONTENTS OVERVIEW... 3 SYSTEM REQUIREMENTS... 4 SETTING UP YOUR ENVIRONMENT... 5 TEACHER PASSWORDS... 6 GETTING YOUR STUDENTS STARTED... 7 OPEN LOGIN... 7 PRIVATE LOGIN... 7 PRE-TEST... 9 ASSIGNMENT...

More information

How to Access Your Student and Use Other Features from Google. Fall 2017 Michelle Lowe

How to Access Your Student  and Use Other Features from Google. Fall 2017 Michelle Lowe How to Access Your Student Email and Use Other Features from Google USERNAME@K12.SMCPS.ORG Fall 2017 Michelle Lowe To go to a specific part in this slideshow, click the topic below: Accessing your Student

More information

Fronter User Level 2

Fronter User Level 2 London MLE Fronter Waltham Forest How to customise your today page It is easy to customise your today page so that it shows exactly what you want to see when you login. The instructions below will help

More information

INSTRUCTOR CERTIFICATION PROGRAM

INSTRUCTOR CERTIFICATION PROGRAM ADDA International 105 East Main Street Newbern, TN 38059 Telephone 731-627-0802 INSTRUCTOR CERTIFICATION PROGRAM The ADDA Instructor Certification Program is designed to provide professional recognition

More information

Presents The User Guide for PWCS Google Apps for Education

Presents The User Guide for PWCS Google Apps for Education 1 Presents The User Guide for PWCS Google Apps for Education 2 PWCS Google Apps for Education (GAE) is a free cloud-based communication and collaboration tool, hosted by Google and managed by PWCS. GAE

More information

Office 365. Quick Start User Guide

Office 365. Quick Start User Guide Office 365 Quick Start User Guide Contents What is Office 365?... 5 How to Sign In to Office 365... 5 To Sign Out when you are done... 5 Why Use Office 365?... 5 Office 365 Home Page... 6 Top right-hand

More information

[AV-SP2016-SM]: SharePoint 2016 Site Members

[AV-SP2016-SM]: SharePoint 2016 Site Members [AV-SP2016-SM]: SharePoint 2016 Site Members Length : 1 Day Audience(s) : SharePoint Site Members/ Visitors Level : Immediate/ Advanced Technology : SharePoint 2016 Delivery Method : Instructor-led (Classroom)

More information

Dynamic User Interactive Multi Level Management System

Dynamic User Interactive Multi Level Management System Dynamic User Interactive Multi Level Management System Table of Contents Admin HomePage... 3 Admin Main Menu... 4 My Profile... 5 Forum (Discussion groups)... 7 My School... 10 Forms... 10 Newsletter...

More information

PowerSchool Handbook Federal Survey Card Report

PowerSchool Handbook Federal Survey Card Report Handbook Federal Survey Card Report Version 1.0 August 9, 2017 Copyright 2017, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

General Procedures for Exams

General Procedures for Exams General Procedures for Exams Exams occur during a 13-day period following the reading period. The schedule is posted on the Academic Calendar and Daily Announcements. We use Canvas to aid in the administration

More information

Creating an Eportfolio with MS FrontPage: It Doesn t Get Any Easier! Steve M. Hyndman June Hyndman Eastern Kentucky University.

Creating an Eportfolio with MS FrontPage: It Doesn t Get Any Easier! Steve M. Hyndman June Hyndman Eastern Kentucky University. Creating an Eportfolio with MS FrontPage: It Doesn t Get Any Easier! Steve M. Hyndman June Hyndman Eastern Kentucky University Abstract In recent years, many Colleges of Education have converted the educator

More information

I. Downloading Grades from the Grade Center

I. Downloading Grades from the Grade Center I. Downloading Grades from the Grade Center If you use the Blackboard Grade Center for grading, it is recommended that you download the data from the Grade Center into Excel to keep a backup copy for yourself.

More information

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK V-Camp Student Guide INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK 03 EDITION V-Camp Student Guide Table of Contents Unit : Table of Contents...iii How

More information

5 th International Symposium 2015 IntSym 2015, SEUSL

5 th International Symposium 2015 IntSym 2015, SEUSL THE IMPACT OF INTERNATIONAL COMPUTER DRIVING LICENSE (ICDL) TRAINING ON CLASSROOM COMPUTER USE BY SECONDARY SCHOOL TEACHERS (SPECIAL REFERENCE ON BADULLA DISTRICT) J.D.Careemdeen 1 and P.K.J.E. Nonis 2

More information

Google Suites for Educators training. Advanced

Google Suites for Educators training. Advanced Google Suites for Educators training Advanced Hello! I m Kenyatta Forbes! Technology Coordinator/Diverse Learner Teacher, Chicago Public Schools www.msforbestech.com ktforbes@cps.edu or msforbestech@gmail.com

More information

OpenSpace provides some important benefits to you. These include:

OpenSpace provides some important benefits to you. These include: Cengage Education A member of Open Colleges Welcome to OpenSpace OpenSpace is our virtual campus. It is our online space for students, tutors and staff to interact. It provides you with a secure, interactive

More information

Edexcel Online Registrations for Apprenticeships

Edexcel Online Registrations for Apprenticeships Edexcel Online Registrations for Apprenticeships For further information visit our support page: www.pearsonwbl.edexcel.com/our-support 1 Contents Please note clicking on any of the individual sections

More information

Introduction. Lesson 1 Access and Basic Navigation

Introduction. Lesson 1 Access and Basic Navigation Introduction Hello and Welcome to PRA s etmf Basics for External Users This tutorial is designed to provide you with a basic overview of PRA s etmf 3 System that you will be using to access your Trial

More information

School Exam Management System (SEMS) User Manual

School Exam Management System (SEMS) User Manual School Exam Management System (SEMS) User Manual Table of Content Introduction What You Get From SEMS Components of SEMS Setting Up SEMS Connecting The Server With The Clients Providing School And Server

More information

User Guide. Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries)

User Guide. Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries) User Guide Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries) Brief Document Description Overview Sessional staff are required to submit their agreed Work Schedule for

More information

Website Style Guide. Overview. General Rules

Website Style Guide. Overview. General Rules Website Style Guide Overview This document should be used to guide employees in creating and maintaining the school and district websites and pages therein. Abiding by this guide will ensure that all sites

More information

Faculty/Staff Websites

Faculty/Staff Websites Faculty/Staff Websites Create your personal Kean website using the CPD* template. Objective: To create a personal Kean website. The website may include a professional biography, curriculum vitae, publications,

More information

Private Company Audit System (PCAS) Quick Start Guide

Private Company Audit System (PCAS) Quick Start Guide Private Company Audit System (PCAS) Quick Start Guide Thank you for subscribing to PCAS. This guide will help you understand how to use the toolkit. Let s first look at the Contents on the PCAS homepage

More information

Continuity Planning User Guide

Continuity Planning User Guide Continuity Planning User Guide This is a user s guide for the Continuity Planning system. Guidelines and instructions on how to perform simple functions are provided in this document. Categories and options

More information

PORTAL RESOURCES INFORMATION SYSTEM: THE DESIGN AND DEVELOPMENT OF AN ONLINE DATABASE FOR TRACKING WEB RESOURCES.

PORTAL RESOURCES INFORMATION SYSTEM: THE DESIGN AND DEVELOPMENT OF AN ONLINE DATABASE FOR TRACKING WEB RESOURCES. PORTAL RESOURCES INFORMATION SYSTEM: THE DESIGN AND DEVELOPMENT OF AN ONLINE DATABASE FOR TRACKING WEB RESOURCES by Richard Spinks A Master s paper submitted to the faculty of the School of Information

More information

Mintel Oxygen. User s Guide

Mintel Oxygen. User s Guide Mintel Oxygen User s Guide Welcome to Mintel Oxygen. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mintel Oxygen. The Mintel program

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE SHAREPONT 2013 BUSINESS INTELLIGENCE SharePoint 2013 Business Intelligence (SBI2013 version 1.1.0) Copyright Information Copyright 2016 Webucator. All rights reserved. The Author Bruce Gordon Bruce Gordon

More information

PowerSchool Handbook Federal Survey Form Report

PowerSchool Handbook Federal Survey Form Report Handbook Federal Survey Form Report Version 2.1 August 22, 2018 Copyright 2018, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

MICROSOFT ESSENTIALS & SPECIFIC COURSES

MICROSOFT ESSENTIALS & SPECIFIC COURSES MICROSOFT ESSENTIALS & SPECIFIC COURSES INTRODUCTION Microsoft Office is the term adopted for the set of desktop applications that offer flexible and powerful ways for using technology to manage the daily

More information

DRAFT. Approach 1: Emphasize evaluation/feedback with target users

DRAFT. Approach 1: Emphasize evaluation/feedback with target users CS8803 6750 Class Project - Part 3 In part 3 of the project, your group will implement a detailed prototype of your interface. You will further develop one design idea from the three five that you generated

More information

Ryerson Careers External Applicants. Guide for Users Updated on 12 July 2018

Ryerson Careers External Applicants. Guide for Users Updated on 12 July 2018 Ryerson Careers Updated on 12 July 2018 Contents Getting Help... iii Supported Browsers... iii Introduction to Ryerson careers... 1 Find the careers web site... 1 Create your account... 3 Forgot your login

More information

Blackboard 5 Level One Student Manual

Blackboard 5 Level One Student Manual Blackboard 5 Level One Student Manual Blackboard, Inc. 1899 L Street NW 5 th Floor Washington DC 20036 Copyright 2000 by Blackboard Inc. All rights reserved. No part of the contents of this manual may

More information

SAP Roambi SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide

SAP Roambi SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide SAP Roambi 2017-10-31 SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide 1 Table of Contents I. Overview Introduction How it Works II. Setup Requirements Roambi Requirements Created a Roambi

More information

WPM for Departments Using WPM to Edit Your Department s Website

WPM for Departments Using WPM to Edit Your Department s Website Overview Web Profile Manager allows Ithaca College community members to easily edit department sites. All of the specialty language and code has been omitted to provide a consistent format and to make

More information

Access the Student Information Analytics System Powered OBIEE :

Access the Student Information Analytics System Powered OBIEE : Overview: The SIA - Schedule of Classes (Printable) dashboard allows registrars offices and curriculum management staff at the schools to extract data from the my.harvard schedule of classes in a highly

More information

CUBE. Configuration Management Report. Hakan Nizamoğlu Yiğitalp Ertem Murat Toprak Saim Güveloğlu

CUBE. Configuration Management Report. Hakan Nizamoğlu Yiğitalp Ertem Murat Toprak Saim Güveloğlu CUBE Configuration Management Report Configuration Management Report Hakan Nizamoğlu Yiğitalp Ertem Murat Toprak Saim Güveloğlu 2010 C U B E C O N F I G U R A T I O N M A N A G E M E N T R E P O R T Table

More information

MarketLine Advantage

MarketLine Advantage MarketLine Advantage User s Guide Welcome to MarketLine Advantage. This user guide will show you everything you need to know to access and utilize the wealth of information available from MarketLine Advantage.

More information

Web Site Guidelines. University of Texas at El Paso. Prepared by: The Office of Information Resources and Planning. November 16, 2004.

Web Site Guidelines. University of Texas at El Paso. Prepared by: The Office of Information Resources and Planning. November 16, 2004. Web Site Guidelines University of Texas at El Paso Prepared by: The Office of Information Resources and Planning November 16, 2004 Page 1 of 24 REVISION HISTORY Revision Code Revision Date Comments - 11/16/2004

More information

GOOGLE DRIVE & DOCS. USERNAME: [for example,

GOOGLE DRIVE & DOCS. USERNAME: [for example, GOOGLE DRIVE & DOCS CONTENTS Logging In... 1 Creating & Saving Files... 1 Uploading Files to the Drive... 2 Edit and Format A Document... 3 Share and collaborate... 4 Definitions... 7 LOGGING IN All PFHS

More information

Welcome to Google Docs:

Welcome to Google Docs: Welcome to Google Docs: Online free word processor, spreadsheet, and presentation tool that allows collaboration... (alternatives to Microsoft Word, Excel and PowerPoint) Allows users to create basic documents

More information

<PROJECT NAME> IMPLEMENTATION PLAN

<PROJECT NAME> IMPLEMENTATION PLAN IMPLEMENTATION PLAN Version VERSION HISTORY [Provide information on how the development and distribution of the Project Implementation Plan was controlled and tracked.

More information

How to complete the SPC Adjunct Faculty Evaluation Form Summer 2017 Spring 2018

How to complete the SPC Adjunct Faculty Evaluation Form Summer 2017 Spring 2018 How to complete the SPC Adjunct Faculty Evaluation Form Summer 2017 Spring 2018 Logging into Faculty180 Before logging in, make sure to be using Google Chrome as this is the official browser supported

More information

Lab Session: Cost Management of Software/CIS Development Project (using 2016 Microsoft Project tool) Lab Manual

Lab Session: Cost Management of Software/CIS Development Project (using 2016 Microsoft Project tool) Lab Manual Bradley University College of Liberal Arts and Sciences Department of Computer Sciences and Information Systems Lab Session: Cost Management of Software/CIS Development Project (using 2016 Microsoft Project

More information

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Uploading to and working with WebCT's File Manager... Page - 1 uploading files... Page - 3 My-Files... Page - 4 Unzipping

More information

Teaching With Templates (Published in the TechEdge, Spring 2000) by Wesley A. Fryer

Teaching With Templates (Published in the TechEdge, Spring 2000) by Wesley A. Fryer Teaching With Templates (Published in the TechEdge, Spring 2000) by Wesley A. Fryer www.wesfryer.com! It is amazing how easy it is to waste time on a computer. Whether a student or a teacher, computer

More information

Part 4: Using the Power Behind the Process Entering Data & Generating Reports

Part 4: Using the Power Behind the Process Entering Data & Generating Reports Part 4: Using the Power Behind the Process Entering Data & Generating Reports The Power Behind the Process, PowerPath s specially designed software, is an essential piece of the PowerPath System. PowerPath

More information

Brief of Scope Development of School ICT Society Website and EDUCSIRT Website

Brief of Scope Development of School ICT Society Website and EDUCSIRT Website Brief of Scope Development of School ICT Society Website and EDUCSIRT Website 1. Background The Information and Communication Technology Agency of Sri Lanka (ICTA) is the apex body in implementing the

More information

Parent Portal User Guide

Parent Portal User Guide Parent Portal User Guide Table of Contents LOGIN TO THE PARENT PORTAL... 2 RETRIEVE LOST LOGIN DETAILS... 3 CHANGE YOUR PASSWORD... 5 CHANGE OR CONFIRM YOUR DETAILS & MEDICAL INFORMATION... 6 NAVIGATING

More information

Welcome to Dubai English Speaking School. DESS BYOD Information Pack

Welcome to Dubai English Speaking School. DESS BYOD Information Pack Welcome to Dubai English Speaking School DESS BYOD Information Pack 2018 CONTENTS Bring Your Own Device (BYOD) Frequently Asked Questions 1-3 Responsible Use Policy and Agreement Form 2017/18 4-5 Bring

More information

Concourse. Syllabus Management System. Faculty Reference Guide. Revised 2/26/18

Concourse. Syllabus Management System. Faculty Reference Guide. Revised 2/26/18 Concourse Syllabus Management System Faculty Reference Guide Revised 2/26/18 Contents An Overview of Concourse...3 What is Concourse?...3 The Parts of Concourse...3 Section Syllabus...4 Logging in to Concourse...5

More information

Sample Schoology Portfolio screen

Sample Schoology Portfolio screen Sample Schoology Portfolio screen Page 1 of 20 The objective of this lesson: Upon completion of this lesson, you will be able to create a portfolio of your work in Spreadsheet Software Applications and

More information

Blueprints for Success: Organizing an Effective Electronic Submission

Blueprints for Success: Organizing an Effective Electronic Submission Blueprints for Success: Organizing an Effective Electronic Submission An ACCSC Member Services Series Blueprints for Success A Member Services Series Introduction The ACCSC Blueprints for Success highlight

More information

ALM120 Application Lifecycle Management 12.0 Essentials Gold Package

ALM120 Application Lifecycle Management 12.0 Essentials Gold Package Course Data Sheet ALM120 Application Lifecycle Management 12.0 Essentials Gold Package Course No: ALM120-120 For software version(s): Software version used in the labs: 12.0 Delivery formats: Instructor

More information

When you are logged into My Siena, you cannot use the Browser s Back and Forward buttons to navigate from one area to another. You need to use the

When you are logged into My Siena, you cannot use the Browser s Back and Forward buttons to navigate from one area to another. You need to use the When you are logged into My Siena, you cannot use the Browser s Back and Forward buttons to navigate from one area to another. You need to use the tabs at the top of the My Siena page or the links directly

More information

CS 577A Team 1 DCR ARB. PicShare

CS 577A Team 1 DCR ARB. PicShare CS 577A Team 1 DCR ARB PicShare Team and Project Review (DEN) Project Evaluation Positives Resilient Agile detailed design promotes thoroughness before any code is written Development time should be reduced

More information

Media Guide: PowerPoint 2010

Media Guide: PowerPoint 2010 Media Guide: PowerPoint 2010 Contents Introduction... 1 Planning Your Presentation... 2 Media Preparation... 2 Optimizing Images... 3 Media and Your PowerPoint Presentation... 4 Common Tasks in PowerPoint

More information

Redwater ISD Teacher Web Pages

Redwater ISD Teacher Web Pages Redwater ISD Teacher Web Pages Guidelines for Teacher Web Pages 1 Edit the Homepage Template 3 Add Your Syllabus to Your Document Drawer (Not Required for ES/MS) 4 Add a Link to Your Syllabus on Your Homepage

More information

Campus Community Guide October 2012

Campus Community Guide October 2012 Campus Community Guide October 2012 This document is intended for restricted use only. Infinite Campus asserts that this document contains proprietary information that would give our competitors undue

More information

STARTING AN APPLICATION To begin your application, click the BEGIN YOUR APPLICATION button on the Harkness Application page.

STARTING AN APPLICATION To begin your application, click the BEGIN YOUR APPLICATION button on the Harkness Application page. STARTING AN APPLICATION To begin your application, click the BEGIN YOUR APPLICATION button on the Harkness Application page. After completing a brief survey, click the button pictured below to register

More information

Due on: May 12, Team Members: Arpan Bhattacharya. Collin Breslin. Thkeya Smith. INFO (Spring 2013): Human-Computer Interaction

Due on: May 12, Team Members: Arpan Bhattacharya. Collin Breslin. Thkeya Smith. INFO (Spring 2013): Human-Computer Interaction Week 6 Assignment: Heuristic Evaluation of Due on: May 12 2013 Team Members: Arpan Bhattacharya Collin Breslin Thkeya Smith INFO 608-902 (Spring 2013): Human-Computer Interaction Group 1 HE Process Overview

More information

Payroll Made Easy: Developing a Web Based System for Student Employee Payroll

Payroll Made Easy: Developing a Web Based System for Student Employee Payroll Payroll Made Easy: Developing a Web Based System for Student Employee Payroll William S. Thieke, Ph.D. Le Moyne College 1419 Salt Springs Rd. Syracuse, NY 13214 315-445-4599 thiekews@mail.lemoyne.edu ABSTRACT

More information

Adding Content. 4. The following page will display (see image to the right): 5. Enter the title of the text page in the Name* field (required).

Adding Content. 4. The following page will display (see image to the right): 5. Enter the title of the text page in the Name* field (required). Adding Content When content is added to ecourses, two things must happen: 1. The content must be either composed within ecourses or uploaded from an offline storage area or located at an online site. 2.

More information

Multimedia Designer. lulu's drawer. campaign

Multimedia Designer. lulu's drawer. campaign Multimedia Designer lulu's drawer campaign Exam Project 2 nd sem. May 2016 Jun. 2016 1. Introduction The scope of your assignment. 1. You are to brainstorm and create a marketing campaign for the newly

More information

Audit and Assurance Overview

Audit and Assurance Overview Chartered Professional Accountants of Canada, CPA Canada, CPA are trademarks and/or certification marks of the Chartered Professional Accountants of Canada. 2018, Chartered Professional Accountants of

More information

Accessibility of Web

Accessibility of Web Web Accessibility Policy and Procedure Accessibility of Web Last Updated: August 2018 Content: Outlined in Section 504 of the Rehabilitation Act of 1973 (Section 504), 29 U.S.C. 794, and its implementing

More information

Works Reports Training Script

Works Reports Training Script Works Reports Training Script Slide 1 Welcome to Works Reporting training presented by the Department of Financial Services, Office of Florida Financial Education. Over the past year, the Florida Department

More information

How to complete the SPC Full-time Evaluation Form Summer 2018 Spring 2019

How to complete the SPC Full-time Evaluation Form Summer 2018 Spring 2019 How to complete the SPC Full-time Evaluation Form Summer 2018 Spring 2019 Logging into Faculty180 Before logging in, make sure to be using Google Chrome as this is the official browser supported by Faculty180.

More information

Introduction to Ardora

Introduction to Ardora Ardora is an authoring software focused mainly on the development of educational content for the Web. Its main purpose is that teachers focus their efforts on the methodological and didactic aspects of

More information

SECTION 1: LOGGING IN AND SITE SETUP. Teacher Website Manual Page 3

SECTION 1: LOGGING IN AND SITE SETUP. Teacher Website Manual Page 3 SECTION 1: LOGGING IN AND SITE SETUP Teacher Website Manual Page 3 FIRST STEPS TO CREATING YOUR NEW TEACHER WEBSITE: This is a multi-section document. The first section is designed to help you set up your

More information

BOCES Phase 1 Overview

BOCES Phase 1 Overview ClassLink ClassMate 2012-13 BOCES Phase 1 Overview An Overview of How ClassMate Software will help your school to comply with NYSED s New SIRS Requirements Our technical staff will be working closely with

More information

Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts

Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts To begin, log in to the NSO Genius page: http://mn.geniussis.com/publicwelcome.aspx?id=2 There is also a link

More information

A Blaise Editing System at Westat. Rick Dulaney, Westat Boris Allan, Westat

A Blaise Editing System at Westat. Rick Dulaney, Westat Boris Allan, Westat A Blaise Editing System at Westat Rick Dulaney, Westat Boris Allan, Westat Introduction Editing and delivering survey data pose challenges often quite separate from developing Blaise applications for data

More information

SES User Manual. Offline Exam Result Entry & Result Import in M-Star SES

SES User Manual. Offline Exam Result Entry & Result Import in M-Star SES SES User Manual Offline Exam Result Entry & Result Import in M-Star SES Contents Contents... 2 Introduction!... 3 04-19-01: Generate Exam Result Porting Sheet... 4 04-20-01: Import Exam Result from the

More information

Technology in the Classroom Google Drive

Technology in the Classroom Google Drive Technology in the Classroom Google Drive drive.google.com Google Drive that gives users the freedom to create, share and collaborate with documents over the web. Store and access files from anywhere! Instead

More information

PROJ 302. Project Report, Poster and Digest Guidelines. for Industrial Engineering Students. Summer 2017

PROJ 302. Project Report, Poster and Digest Guidelines. for Industrial Engineering Students. Summer 2017 PROJ 302 Project Report, Poster and Digest Guidelines for Industrial Engineering Students Summer 2017 General Notes - Read this document carefully before writing your internship report, poster, and digest.

More information

Guidance for upload of Desktop Review documents

Guidance for upload of Desktop Review documents Overview One Awards require all providers to submit the following Access to HE Diploma assessment planning documents by the 30 th September each year: A Diploma Assessment Plan for each diploma being delivered

More information

DATA MANAGEMENT. About This Guide. for the MAP Growth and MAP Skills assessment. Main sections:

DATA MANAGEMENT. About This Guide. for the MAP Growth and MAP Skills assessment. Main sections: DATA MANAGEMENT for the MAP Growth and MAP Skills assessment About This Guide This Data Management Guide is written for leaders at schools or the district who: Prepare and upload student roster data Fix

More information

Discovering Information through Summon:

Discovering Information through Summon: Discovering Information through Summon: An Analysis of User Search Strategies and Search Success Ingrid Hsieh-Yee Professor, Dept. of Library and Information Science, Catholic University of America Shanyun

More information

Online Duplicate Resolution Process Step By Step Instructions for District Offices

Online Duplicate Resolution Process Step By Step Instructions for District Offices Online Duplicate Resolution Process Step By Step Instructions for District Offices Using your web browser navigate to the SLD home page at www.bced.gov.bc.ca/datacollections. Click on the Verification

More information

Great Start to Quality STARS Quality Improvement Consultants User Manual STARS - Systematic Tiered Assessment and Rating Solution

Great Start to Quality STARS Quality Improvement Consultants User Manual STARS - Systematic Tiered Assessment and Rating Solution STARS Quality Improvement Consultants User Manual STARS - Systematic Tiered Assessment and Rating Solution Table of Contents 1 Great Start to Quality... 4 1.1 Welcome... 4 1.2 Introduction to the Great

More information

Pace University. R25 Webviewer Guide. Revision: May, 2009

Pace University. R25 Webviewer Guide. Revision: May, 2009 Pace University R25 Webviewer Guide Revision: May, 2009 Webviewer Guide Table of Contents Introduction:... 3 Event Filters:... 3 Webviewer Event Filters:... 3 Featured Events:... 4 Event Catalog:... Error!

More information