DESIGNING AN INTERACTIVE PERSONAL ASSISTANT WEB APPLICATION SYSTEM

Size: px
Start display at page:

Download "DESIGNING AN INTERACTIVE PERSONAL ASSISTANT WEB APPLICATION SYSTEM"

Transcription

1 DESIGNING AN INTERACTIVE PERSONAL ASSISTANT WEB APPLICATION SYSTEM Joo Tan, David Day, Kyle Wamsley Department of Computer Science Kutztown University of Pennsylvania Kutztown, PA ABSTRACT The purpose of this paper is to present the components and design process of the backend user interface that is included in the Interactive Personal Assistant Web-Application System (ipaws). The front end user interface of ipaws is designed to assist adults on the autism spectrum with task completion and reduce the need for constant supervision. The back end user interface provides functionality to manage user accounts, generate reports, create tasks and assign categories. Design of the system components, derivation of functionality, and implementation requirements are explained. Future work is also discussed. BACKGROUND In the past, the development of applications for individuals on the autism spectrum focused on aiding and teaching children with autism [7, 10]. Riemer-Reiss [11] discussed how the drive to develop new assistive technology [2] diminishes after a period of interest has elapsed. This concept provides an explanation for the lack of development of applications to aid and teach adults with autism. Problems with social interaction and receiving verbal instruction cause difficulties for these adults to learn in the classroom and train for a work environment [1]. Tachibana [12] described how an adult on the spectrum can excel with proper training in specific roles in the workplace. Grynszpan [9] suggested that learning through human computer interfaces can be more effective than just social dialog. Realizing this, Duncan [4] identified the need for an assistive web application that combines the components of supervisor instruction and a human computer interface to assist an adult with autism be able to complete tasks in specified categories. Duncan s application, named Task Manager, displays the description of a task paired with a picture. This picture/description pairing supports image-based learning [6], which is traditionally used for instructing individuals on the autism spectrum. INTRODUCTION Although Task Manager performed well in initial user testing [4], it remains a standalone front end web application (webapp). Rapid prototyping of the backend component resulted in tasks being hard coded into the system. Together, the frontend and backend components combine to become part of the web application system referred to as ipaws. There is a need for a simple backend user interface where a Supervisor can quickly build task instruction sets for a User. A User is defined as the adult with autism being aided by the webapp. Tasks will be classified by category; so every category has a list of accompanying tasks. The Supervisor needs to be able to assign a User to a category. With both Supervisor and User accounts available for accessing the system, there is a need for a third account type, which is a Manager to control account management. Lastly, security will be required to grant the correct authorizations at login for each account type. This paper will describe the basic design of the backend component, named Task Developer, and design decisions which satisfy the aforementioned requirements. SYSTEM DESIGN The design goals of ipaws include accessibility, portability and ease of navigation. The application must be easily accessible by multiple users and use technology that is available to individuals on the spectrum, their families, and their employers. A portable application is

2 necessary for the users; this is accomplished through accessing the application with mobile tablets. Finally, the interfaces must be simple and intuitive to reduce the amount of learning time needed to use the application effectively. Meeting these goals will help create an easily adoptable assistive application [3, 8]. The ipaws system consists of two main components, Task Manager and Task Developer. The Task Manager is used for the client interface. This is the component that the User will deal with directly. The Task Developer is the backend user interface, and is the focus of this paper. The Task Developer allows access to two user (actor) types: Manager and Supervisor. The Manager role is the person in charge of the account management. The Supervisor role is the person in charge of task creation and task assignment. The web server for the system contains a database for holding task instruction sets as well as account information. The overall system organization is shown in Figure 1. ipaws forges a link between the Supervisor and User, allowing a supervisor to create a task in the database, which is then viewable by a User on a tablet. Figure 1: System Design The ASP.NET framework has been chosen for building the system. The ipaws design leverages role management, URL authorization, and security trimming that are built into the.net Framework [13]. This design allows a single web access point for all three actor types. Upon login, the actor will be filtered to the matched site node based on his/her account type. Each site node will implement the functional requirements for the matching role, including access to the application database. Finally, building the user interfaces with current web technologies (HTML5, jquery, and jquery Mobile) will aid in cross browser/platform compatibility, allowing the application to be used on mobile devices/tablets without being tied to a particular platform. Design of Manager Role The organization s system administrator creates one or more manager accounts. The primary function of the Manager is account management. A Manager is able to access all User and Supervisor accounts on the system as well as having the authority to disable/enable any of these accounts. Disabling an account prevents a User or Supervisor from logging into the system while retaining their account for future use. A Manager also has the permissions to update account information for all users in the system. A secondary function of the Manager is to create/generate reports. This means that s/he has the ability to create a text document detailing the progress and activity of Users. The report will include details such as tasks that a User was assigned, tasks that the User completed, and dates/times that the tasks were assigned/completed. The purpose of the reports is to analyze and assess the progress of the Users. The original design of the generate reports page had limited

3 functionality where reports were printed with only two options; either for all Users or a single User. Further design discussions indicated that additional filters are needed. This includes the ability to generate users assigned to a specific Supervisor. There are many options given to the Manager when generating reports, some of these options include: filtering Users by name, allowing the Manager to search for a specific individual, and filtering by tasks to see Users that have completed a specific task. Another useful design feature is the ability to generate reports for a specific time period. Lastly, a Manager can review data on a report by either generating a printed copy or sending it by . Table 1 explains the functionality supported for each account type. Role Functionality Supported Reason Manager Account management Security Report generation Analysis for improvement Print Report Review View logged-in users Monitor users; remote supervision possible Task creation Aid users in their work Supervisor Preview tasks Check for accuracy and correctness Assign user(s) to categories Tasks in category ready for use View user s task request Review work assignments / load Users View assigned task(s) Need help in completing task(s) Request new tasks Renewed confidence Table 1: Roles and Responsibilities Design of Supervisor Role The Supervisor is a major actor in Task Developer and has many responsibilities. Among them is the ability to view logged in Users, create tasks, assign work roles, and view task requests submitted by Users. A useful design feature allows the Supervisor (upon login) to view all Users that are currently logged into the system. Each User s name can be further expanded to reveal information about his/her assigned categories/tasks. Figure 2 shows two Users currently using the system. One User (Kyle) is assigned the Make Pies category. The Supervisor can view detailed information about each User by selecting the View button. Figure 2: Design of the Supervisor s home page The Supervisor s home page is designed for easy navigation to his/her functions. Major functions fall into Tasks and Categories as can be seen in Figure 2. The Tasks menu provides options to work with task-related functions (create, view, and update); whereas the

4 Category menu gives options to work with categories (create and assign). The Supervisor is able to create, update and assign categories. Categories are specified classifications of related tasks. A category in Task Developer can be thought of as a work role. Example categories are Make Pies, Shelve Books, Clean Cafeteria, etc. Specific tasks are then created within each category. For example the Make Pies category might include tasks such as Make Pumpkin Pie, Make Blueberry Pie, etc. These categories can be assigned to a User if, for example, s/he is regularly performing tasks from that category. Categories are designed to improve the ease of searching for specific tasks. Therefore, if two tasks are related finding one makes it easy to find the other, when both are in the same category. The most important role of the Supervisor is to create new tasks for the Users. Tasks are the driving force of the application, designed to enable the User to be a more effective and productive employee. The Supervisor s screens are designed to make essential operations flow cleanly, including the ability to insert a task into a specified category, naming a task, adding steps (both main and detailed) for a task, and adding an image to a task step. Figure 3 shows the starting page of task creation. Tasks are created and assigned to an existing category (chosen from a dropdown list). Figure 3: Creating a new task The design of task creation is simple, and intuitive, allowing the Supervisor to implement a variety of tasks. It is possible for tasks to contain a lot of steps and information, or for a task to be very short and simple. During design of the screens it became apparent that there needed to be multiple options for each task. Some tasks require lots of detail while others need very little. For that reason each main step added is given a number of options. A main step can have a video clip attached, an audio clip attached, and it can be supplemented with detailed steps. Furthermore, each detailed step can include a picture as visual aid. Detailed steps can continually be added till the Supervisor decides to move on to the next main step. This process will continue until the entire task has been constructed. A very important part of this process is the ability, at any time, to preview the task. The preview task feature allows the Supervisor to view the task just as a User would and run through the processes of the task until s/he decides to continue with construction of the task, or has finished the task altogether. The preview button is an important option that has been included. The ability for a Supervisor to preview a task, and be presented with the same screens the User would, really allow the Supervisor to make an evaluation of the task, to an ideal level of detail. Some example use cases of tasks are illustrated in [5]. The Supervisor s login screen also includes a notification bar that will inform the Supervisor when there are pending task requests from the Users. While handling those task requests a Supervisor has the option to set the status of each task, assign the task, or send the request to another Supervisor to handle it.

5 Design of User Role The User role is defined as an individual with autism that requires assistance with task completion. Upon using the Task Manager on login through a mobile tablet, his/her assigned categories and their associated tasks are immediately displayed on the home page. While the functional requirements of the User remain the same as explained by Duncan [4], one new function has been added to the design after reviewing previous prototypes. The User will now have the ability to request a new task from a Supervisor. Adding this ability improves the Supervisor/User relationship as the User has the ability to notify a Supervisor if s/he requires additional instructions on how to complete a new task or is struggling to complete a current task. CONCLUSION ipaws will be designed and developed as a web application system. The web technologies used to implement it allows for platform independence. The Supervisor will be able to build a task instruction set, insert pictures, and include video all within the Task Developer. Further, it is possible for a Supervisor to simultaneously update a task instruction set while introducing the task to a User. The possibility of real-time building and updating of instruction sets would greatly increase the productivity of the Supervisor. More importantly, a Supervisor can have immediate feedback that a new instruction set is comprehensible by the User from the Task Manager. The design of the Task Developer node of ipaws provides multiple functions for both the Manager and Supervisor, which ultimately benefit the individual with autism. Task reports that are generated provide valuable data for analyzing and optimizing the Supervisor/User relationship. Supervisors can build tasks and assign Users to categories by completing simple web forms, which require minimal training. A User can be remotely assigned to a category, further minimizing the amount of supervision needed for the individual. Finally, task instruction sets built in Task Developer support the picture/description based learning for individuals on the autism spectrum as they view step instructions in the Task Manager node of ipaws. FUTURE WORK The focus of this paper was to present the design of the Task Developer node of ipaws. The outlined functionalities were designed and derived from prototypes of the system including both frontend and backend user interfaces. In the near future, the authors intend to implement the Task Developer with current web technologies making it a comprehensive web application system. We envision that ipaws can be used for diverse range of applications and communities, including learning at the elementary school level and daily assistance for senior citizens. The authors recently contacted Keystone Goodwill, a regional non-profit organization, for help with subject testing. Goodwill employs many individuals with various disabilities and will be a good base for testing ipaws. We also anticipate that further design and development of ipaws will facilitate collaboration between computer scientists and other research disciplines such as special education. REFERENCES [1] American Psychiatric Association (APA). Diagnostic and statistical manual of mental disorders, 4 th ed. Washington (DC): APA(1994). [2] Cramer, M., hirano, S.H., Tentori, M., Yeganyan, M.T., Hayes, G.R., Classroom-based assistive technology: collective use of interactive visual schedules by students with autism, Proceedings of the SIGCHI Conference on Human Factors in Computing Systems, 1-10, 2011.

6 [3] Dawe, M., Desperately seeking simplicity: how young adults with cognitive disabilities and their families adopt assistive technologies, Proceedings of the SIGCHI Conference on Human Factors in Computing Systems, [4] Duncan, H., Tan, J., A Visual Task Manager Application for Individuals with Autism. The Journal of Computing Sciences in Colleges, Northeast Region. 27(6), 49-57, 2012 [5] Tan J., ipaws Interactive Personal Assistant Web Application System. PACISE, [6] Hayes, G.R., Hirano, S. Marcu, G., Monibi, M., Nguyen, D.H., Yeganyan, M., Interactive visual supports for children with autism, Personal and Ubiquitous Computing, 14 (7), , [7] Hourcade, J.P., Bullock-Rest, N.E., Hansen, T.E., Multitouch table applications and activities to enhance the social skills of children with autism spectrum disorders, Personal and Ubiquitous Computing, 16 (2), , [8] Hurst, A., Tobias, J., Empowering individuals with do-it-yourself assistive technology, The proceedings of the 13 th international ACM SIGACCESS conference on Computers and accessibility. ASSETS 11, 11-18, October [9] Grynszpan, O., Martin, J., Nadel, J., Human Computer Interfaces for Autism: Assessing the influence of Task Assignment and Output Modalities, CHI 2005, Retrieved April 10, 2014 from [10] Milne, M., Powers, D., Leibbrandt, R., Development of a software-based social tutor for children with autism spectrum disorders, Proceedings of the 21 st Annual Conference of the Australian Computer-Human Interaction Special Interest Group: Design: Open 24/7, , 2009 [11] Riemer-Reiss, M., Wacker, R. Factors associated with assistive technology discontinuance among individuals with disabilities, Journal of Rehabilitation, 66 (3), 2000 [12] Tachinabana, C., Autism seen as asset, not liability, in some jobs, retrieved April 10, [13] Walkthrough: Filtering Site-map Nodes Based on Security Roles, =vs.80).aspx, retrieved March 31, 2014.

Banner Web Time Entry User Guide. Students. Delaware State University 1 Banner Web Entry

Banner Web Time Entry User Guide. Students. Delaware State University 1 Banner Web Entry Banner Web Time Entry User Guide Students Delaware State University 1 Banner Web Entry Introduction to Web Time Entry Delaware State University is now pleased to provide its employees with online services

More information

A Visual Task Manager Application for Individuals with Autism

A Visual Task Manager Application for Individuals with Autism A Visual Task Manager Application for Individuals with Autism Heather Duncan & Joo Tan Department of Computer Science Kutztown University of Pennsylvania Kutztown, PA 19530 Phone: 610-683-4413, Fax: 484-646-4129

More information

Onboarding for Administrators

Onboarding for Administrators This resource will walk you through the quick and easy steps for configuring your Paylocity Onboarding module and managing events. Login Launch Events Complete Tasks Create Records Configure Events Module

More information

Involving Children and Young Adults With Complex Needs in Game Design

Involving Children and Young Adults With Complex Needs in Game Design Involving Children and Young Adults With Complex Needs in Game Design Kathrin Gerling kgerling@lincoln.ac.uk Conor Linehan clinehan@lincoln.ac.uk Jonathan Waddington WESC Foundation Exeter EX2 6HA, UK

More information

Onboarding for Administrators

Onboarding for Administrators Welcome! This resource will walk you through the quick and easy steps for configuring your Paylocity Onboarding module and managing events. Login Launch Events Complete Tasks Create Records Configure Events

More information

edtpa Video Requirements 2014-2105 Task 3: Student Work Samples Student Work

edtpa Video Requirements 2014-2105 Task 3: Student Work Samples Student Work edtpa Video Requirements 2014-2105 Discipline Task 2: Video Clips of Engagement (required) Agriculture Early Elementary Literacy more than 15 no more than 15 Task 3: Samples written student work samples

More information

Terminal Four. Content Management System. Moderator Access

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

More information

Student Employment Website User Guide for Off-Campus Employers

Student Employment Website User Guide for Off-Campus Employers Student Employment Website User Guide for Off-Campus Employers Student Employment University Hall 255 2197 South University Boulevard Denver, Colorado 80208 Ph: 303.871.6792 Fax: 303.871.2341 Email: stuemp@du.edu

More information

Publishing with Adobe Presenter 10 (Detailed)

Publishing with Adobe Presenter 10 (Detailed) Publishing with Adobe Presenter 10 (Detailed) Open PowerPoint Find PowerPoint and open it by clicking its icon. The PowerPoint icon may be found in one of the following locations: 1. Desktop 2. Start Menu

More information

Session Administration System (SAS) Manager s Guide

Session Administration System (SAS) Manager s Guide Session Administration System (SAS) Manager s Guide Blackboard Collaborate 1 Contents SAS Overview... 4 Getting Started... 4 Creating Sessions Using the SAS... 5 Sample Manager Utilities Page... 5 Creating

More information

Security Management Made Easy

Security Management Made Easy Security Management Made Easy Incident Report Module The Incident Report module is designed to quickly collate information on an urgent situation, to respond promptly and effectively. It will assist in

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

Appscend Mobile Platform Presentation Enterprise Solutions Whitepaper

Appscend Mobile Platform Presentation Enterprise Solutions Whitepaper Appscend Mobile Platform Presentation Enterprise Solutions Whitepaper The VAP License Appscend s Value Added Partner license is the best solution for large organizations in need of a unified mobile platform

More information

Echo360 Personal Capture

Echo360 Personal Capture ACCC-ITL GUIDE Echo360 Personal Capture User Manual - Windows accc.uic.edu/service/lecture-capture Table of Contents Installation...2 Configuration...4 Recording...6 Editing...7 Publishing...9 ECHO360

More information

Connect Ticket Entry. Quick Reference Guide

Connect Ticket Entry. Quick Reference Guide Connect Ticket Entry Quick Reference Guide Davisware 514 Market Loop West Dundee, IL 60118 Phone: (847) 426-6000 Fax: (847) 426-6027 Contents are the exclusive property of Davisware. Copyright 2015. All

More information

Managing Software Updates with System Center 2012 R2 Configuration Manager

Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Microsoft Updates with Configuration Manager 2012 R2 This document is for informational purposes only. MICROSOFT MAKES

More information

AMA, an application for Monitoring, Analysis and Monitoring A tool to better understand autism

AMA, an application for Monitoring, Analysis and Monitoring A tool to better understand autism AMA, an application for Monitoring, Analysis and Monitoring A tool to better understand autism MAS 771: Autism Theory & Technology Akane Sano (akanes@mit.edu) Javier Hernandez (javierhr@mit.edu) Introduction

More information

SIMULATIONiQ Counseling Student Training Guide

SIMULATIONiQ Counseling Student Training Guide Education Management Solutions, LLC 436 Creamery Way, Suite 300 Exton, PA 19341 Phone: 877.EMS.5050 / (877) 367.5050 www.simulationiq.com SIMULATIONiQ Counseling Student Training Guide Contents Login...

More information

Student Employment Website Employer User Guide Updated March 12, 2008

Student Employment Website Employer User Guide Updated March 12, 2008 EMPLOYER USER GUIDE Getting Started...2 Request Log-In Permission...3 Log In...4 My Control Panel...5 Post a New Job...7 Review Student Applications...11 Contact Applicants...12 Hire a Student...13 Manage

More information

MnSCU MediaSpace. Getting Started with MediaSpace

MnSCU MediaSpace. Getting Started with MediaSpace MnSCU MediaSpace Minnesota State Colleges & Universities Getting Started with MediaSpace Logging In Login to MediaSpace at http://mediaspace.mnscu.edu Use your StarID and password. If you do not know your

More information

Sharing Data with Your Accountant or Your Client

Sharing Data with Your Accountant or Your Client Chapter 15 Sharing Data with Your Accountant or Your Client Sharing QuickBooks Data QuickBooks File Types Data Sharing for the Business Owner Data Sharing for the Accountant 412 Chapter 15 Sharing Data

More information

Student Employment Website Employer User Guide Updated July 17, 2015

Student Employment Website Employer User Guide Updated July 17, 2015 EMPLOYER USER GUIDE Getting Started... 2 Request Log-In Permission... 3 Log In... 4 My Control Panel... 5 Post a New Job... 7 Review Student Applications... 11 Contact Applicants... 13 Hire a Student...

More information

1. Introduction 3 Overview 1.1 Profiles

1. Introduction 3 Overview 1.1 Profiles QUICK START GUIDE In this guide, you will find a brief summary of the steps needed to begin using your FingerCheck Workforce Management Solution. To see detailed instructions on all of the features available,

More information

College of Continuing Education Video Production Room

College of Continuing Education Video Production Room College of Continuing Education Video Production Room To Begin a Session: Step 1: Turn on the Station by pressing the red switch near the desktop monitor. By doing this the following equipment will be

More information

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud CaseWare Time CaseWare Cloud Integration Guide For Time 2015 and CaseWare Cloud Copyright and Trademark Notice Copyright. 2015 CaseWare International Inc. ( CWI ). All Rights Reserved. Use, duplication,

More information

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide Deliver file sharing and synchronization services using Citrix ShareFile Self-paced exercise guide Table of Contents Table of Contents... 2 Overview... 3 Exercise 1: Setting up a ShareFile Account... 6

More information

QUERY DATA FROM ACTIVE DIRECTORY

QUERY DATA FROM ACTIVE DIRECTORY QUERY DATA FROM ACTIVE DIRECTORY Active Directory includes a wealth of information about your company s organization. This task will show you how to auto populate fields in your InfoPath form with the

More information

Participate in an Adobe Connect Meeting For Meeting Participants

Participate in an Adobe Connect Meeting For Meeting Participants Participate in an Adobe Connect Meeting For Meeting Participants Contents Contents... 1 Connection Test:... 2 Join a meeting:... 3 Change your status:... 3 Meeting Audio:... 3 Audio Setup Wizard:... 3

More information

Aesop QuickStart Guide for Employees

Aesop QuickStart Guide for Employees Aesop QuickStart Guide for Employees This guide will show you how to: -Log on to the Aesop system -Navigate your Aesop home page -Create an absence online -Assign a substitute to an absence* -Attach a

More information

Magento Integration Manual (Version 2.1.0-11/24/2014)

Magento Integration Manual (Version 2.1.0-11/24/2014) Magento Integration Manual (Version 2.1.0-11/24/2014) Copyright Notice The software that this user documentation manual refers to, contains proprietary content of Megaventory Inc. and Magento (an ebay

More information

Helpdesk manual. Version: 1.1

Helpdesk manual. Version: 1.1 Version: 1.1 Date: 06-May-2014 Introduction Once a new system has been delivered, or an update has taken place, issues could occur, questions raised and new functionality needed. You can register these

More information

How to search for a draft travel & subsistence claim

How to search for a draft travel & subsistence claim How to search for a draft travel & subsistence claim Background Sometimes you may have been entering a travel & susbsistence claim, saved it in Draft mode, and logged off to return to edit the claim at

More information

Helpful Links 8 Helpful Documents 8 Writing History 9 Pending Peer Reviews 9 Navigation Tabs 10 Changing Courses 10

Helpful Links 8 Helpful Documents 8 Writing History 9 Pending Peer Reviews 9 Navigation Tabs 10 Changing Courses 10 V7.30.15 2014 GETTING STARTED Table of Contents Welcome to WPP Online 3 WPP Online Welcome Page 3 Logging in to WPP Online 4 Changing your Password 5 Accessing your Courses 7 Selecting a Course 7 The Course

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2 Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

http://pkp.sfu.ca/ojs/docs/userguide/2.3.3/es/sectio neditor.html

http://pkp.sfu.ca/ojs/docs/userguide/2.3.3/es/sectio neditor.html Basic steps for section editors You should follow some preliminary considerations and diagrams for the purpose of assigning and managing a review. You have to do a quick reading of the text to evaluate

More information

FPT UNIVERSITY. Capstone Project

FPT UNIVERSITY. Capstone Project MINISTRY OF EDUCATION AND TRAINING FPT UNIVERSITY Capstone Project Online Event Organizing Company Management System Group Group Members Đoàn Minh Thiện 60130 Nguyễn Thanh Thống 60561 Mai Hoàng Trí Anh

More information

Client Management WalkThrough

Client Management WalkThrough PRACTICE CS Client Management WalkThrough version 2014.x.x TL 27716a (1/16/15) Copyright Information Text copyright 2004-2015 by Thomson Reuters. All rights reserved. Video display images copyright 2004-2015

More information

INPEX CONTRACT MANAGEMENT SYSTEM

INPEX CONTRACT MANAGEMENT SYSTEM INPEX CONTRACT MANAGEMENT SYSTEM Contractors Manual - Contract Management Document No.: PROCON-00276 Document no.: PROCON-00276 Page 1 NOTICE All information contained with this document has been classified

More information

Instructor Getting Started Guide for Desire2Learn

Instructor Getting Started Guide for Desire2Learn Instructor Getting Started Guide for Desire2Learn Table of Contents About McGraw-Hill Campus... 2 Before you begin... 2 Initial Setup of the McGraw-Hill Campus Module... 3 Accessing McGraw-Hill Campus...

More information

A Monitored Student Testing Application Using Cloud Computing

A Monitored Student Testing Application Using Cloud Computing A Monitored Student Testing Application Using Cloud Computing R. Mullapudi and G. Hsieh Department of Computer Science, Norfolk State University, Norfolk, Virginia, USA r.mullapudi@spartans.nsu.edu, ghsieh@nsu.edu

More information

Spot and Park: Where Mobile Technology Meets Parking Management

Spot and Park: Where Mobile Technology Meets Parking Management Spot and Park: Where Mobile Technology Meets Parking Management Sonia Ng Zeng Department of Computer Science University of Maryland, College Park sng@umd.edu ABSTRACT Spot and Park is a parking and event

More information

Session Administration System (SAS) Manager s Guide

Session Administration System (SAS) Manager s Guide Session Administration System (SAS) Manager s Guide 2010 Elluminate, Inc. All Rights Reserved. Contents Section 1 SAS Overview... 1 Getting Started... 1 Creating Sessions Using the SAS... 2 Creating Users...

More information

Assistant-Enterprise Toolbar Go to http://www.vc3.com/support/pages/voiceadvantage-guides.aspx to access the toolbar download.

Assistant-Enterprise Toolbar Go to http://www.vc3.com/support/pages/voiceadvantage-guides.aspx to access the toolbar download. Assistant-Enterprise Toolbar Go to http://www.vc3.com/support/pages/voiceadvantage-guides.aspx to access the toolbar download. Assistant Enterprise Toolbar in Internet Explorer: Assistant Enterprise Toolbar

More information

EmpCenter Employee Training for Harvey Mudd College. TR-01: Time and Attendance Employee Functions

EmpCenter Employee Training for Harvey Mudd College. TR-01: Time and Attendance Employee Functions ` EmpCenter Employee Training for Harvey Mudd College TR-01: Time and Attendance Employee Functions LEGAL NOTICES Copyright 2012 WorkForce Software All Rights Reserved. WorkForce Software 38705 Seven Mile

More information

WHAT TO DO WHEN YOU RECEIVE A LITIGATION HOLD NOTICE. A Guide for University Faculty, Staff, and Others

WHAT TO DO WHEN YOU RECEIVE A LITIGATION HOLD NOTICE. A Guide for University Faculty, Staff, and Others WHAT TO DO WHEN YOU RECEIVE A LITIGATION HOLD NOTICE A Guide for University Faculty, Staff, and Others What is a Litigation Hold Notice? Notice from an authorized UW department (Attorney General s Office,

More information

NBC Learn External Tool. Administrator s Guide V2.0

NBC Learn External Tool. Administrator s Guide V2.0 NBC Learn External Tool Administrator s Guide V2.0 Trademarks NBC Universal and NBC News Learn are registered trademarks of the National Broadcasting Company. All other trademarks and registered trademarks

More information

ViSH User Manual. ViSH is a social network for teachers and scientist to meet and collaborate in the science teaching.

ViSH User Manual. ViSH is a social network for teachers and scientist to meet and collaborate in the science teaching. MANUAL ViSH User Manual ViSH is a social network for teachers and scientist to meet and collaborate in the science teaching. ViSH includes a variety of functionalities that aim to provide users with the

More information

DSI File Server Client Documentation

DSI File Server Client Documentation Updated 11/23/2009 Page 1 of 10 Table Of Contents 1.0 OVERVIEW... 3 1.0.1 CONNECTING USING AN FTP CLIENT... 3 1.0.2 CONNECTING USING THE WEB INTERFACE... 3 1.0.3 GETTING AN ACCOUNT... 3 2.0 TRANSFERRING

More information

Microsoft 311 Service Center accelerator Demo Script

Microsoft 311 Service Center accelerator Demo Script MICROSOFT 311 SERVICE CENTER DEMO SCRIPT 1 DEMO NOTES 3 OVERVIEW 4 END USER ROLES IN THE LIFECYCLE OF A SERVICE REQUEST 4 HIGH LEVEL DEMONSTRATION FLOW 5 CITIZEN PORTAL OVERVIEW 6 CITIZEN INTERACTION WITH

More information

Overview. Benefits for the Business Owner. For more information, refer to Appendix A, Client Data Review.

Overview. Benefits for the Business Owner. For more information, refer to Appendix A, Client Data Review. SHARING QUICKBOOKS DATA WITH YOUR ACCOUNTANT One feature that truly sets QuickBooks apart from other business accounting software is the ease and flexibility of sharing a copy of the data between the business

More information

Get Moving. Washington, DC: American Psychological Association, 2005. American

Get Moving. Washington, DC: American Psychological Association, 2005. American Get Moving A review of the video Exercise with Kate F. Hays Washington, DC: American Psychological Association, 2005. American Psychological Association Psychotherapy Video Series III, Item No. 4310584.

More information

Problem Statement. Jonathan Huang Aditya Devarakonda. Overview

Problem Statement. Jonathan Huang Aditya Devarakonda. Overview Jonathan Huang Aditya Devarakonda Problem Statement Overview Automated job schedulers have been extensively studied and implemented in large clusters and supercomputers. However, many of these clusters

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

More information

Off-Campus Employer JobX Training Guide

Off-Campus Employer JobX Training Guide Off-Campus Employer JobX Training Guide Student Employment Services Training Topics: 1. Introduction 2. Login 3. Add a job 4. Edit a job 5. Review on-line applications 6. Send Hiring Correspondence to

More information

The HR department has provided these training materials to assist with your understanding and use of this system.

The HR department has provided these training materials to assist with your understanding and use of this system. PEOPLEADMIN PERFORMANCE APPRAISAL PROCESS SUPERVISOR ROLE Welcome to the University of Dayton Online Employment and Performance Management System. The Human Resources department has implemented this system

More information

StruxureWare Power Monitoring 7.0.1

StruxureWare Power Monitoring 7.0.1 StruxureWare Power Monitoring 7.0.1 Installation Guide 7EN02-0308-01 07/2012 Contents Safety information 5 Introduction 7 Summary of topics in this guide 7 Supported operating systems and SQL Server editions

More information

Australian JobSearch. Remote Jobs and Communities Program

Australian JobSearch. Remote Jobs and Communities Program Australian JobSearch Remote Jobs and Communities Program A practical guide to creating job vacancies and finding staff in the Employment and Participation Services Industry with a focus on employment in

More information

Normandale Community College Student Employment Website Employer User Guide Updated December 15, 2010

Normandale Community College Student Employment Website Employer User Guide Updated December 15, 2010 EMPLOYER USER GUIDE Getting Started... 2 Request Log-In Permission... 3 Log In... 4 My Control Panel... 5 Post a New Job... 7 Review Student Applications... 12 Contact Applicants... 13 Hire a Student...

More information

Tips & Tricks. Guide to Accessing and Navigating Around the ABB Customer Portal and Downloading LinkOne Software

Tips & Tricks. Guide to Accessing and Navigating Around the ABB Customer Portal and Downloading LinkOne Software Page 1 of 6 Tips & Tricks Guide to Accessing and Navigating Around the ABB Customer Portal and Downloading LinkOne Software The purpose of this document is to assist users to access the ABB Customer Portal

More information

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 Contents Contents INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 IMPORT UPDATES 12 CUSTOM TEXT FIELDS MAPPING 13

More information

The College of New Jersey. TimesheetX

The College of New Jersey. TimesheetX The College of New Jersey TimesheetX TRAINING Supervisors Getting Started Time sheets must now be entered online for all Student Employment jobs. You can access this system only through the Internet Explorer

More information

Blackboard Collaborate Classroom in Desire2Learn. Presenters

Blackboard Collaborate Classroom in Desire2Learn. Presenters Blackboard Collaborate Classroom in Desire2Learn Presenters Copyright 2014 Information Technology Services Kennesaw State University This document may be downloaded, printed, or copied, for educational

More information

Technology Corner. IIS Configuration for Sage ACT! Premium A Review in Pictures

Technology Corner. IIS Configuration for Sage ACT! Premium A Review in Pictures Technology Corner IIS Configuration for Sage ACT! Premium A Review in Pictures In order to leverage the web capabilities built into Sage ACT! Premium, it can be very helpful to understand IIS (Internet

More information

ACTIVE CONTENT MANAGER (ACM)

ACTIVE CONTENT MANAGER (ACM) ITServices SSC007-3333 University Way Kelowna, BC V1V 1V7 250.807.9000 www.ubc.ca/okanagan/itservices ACTIVE CONTENT MANAGER (ACM) An Introduction March 8, 2007 Introduction.ppt 1 Overview Content Management

More information

CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL

CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL 2011-2012 CARSON- NEWMAN COLLEGE CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL Table of Contents Introduction... 1 Getting Started... 1 Accessing and Logging In to C-N Online... 2 Access... 2 Log

More information

ProFiler Client Software User s Guide

ProFiler Client Software User s Guide ProFiler Client Software User s Guide Rev. 7/17/03 Manual version 2.0 for version 2.0 and later Contacting Telos By phone/fax in the USA: Customer service is available from 9:30 AM to 6:00 PM USA Eastern

More information

Microsoft Dynamics CRM Online Fall 13 Service Update

Microsoft Dynamics CRM Online Fall 13 Service Update How to Prepare for the Microsoft Dynamics CRM Online Fall 13 Service Update COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information

More information

University of North Carolina TEACCH Autism Program Professional Certification

University of North Carolina TEACCH Autism Program Professional Certification University of North Carolina TEACCH Autism Program Professional Certification INTRODUCTION AND RATIONALE The University of North Carolina TEACCH Autism Program was established in 1972 to serve as a statewide

More information

Login/ Logout RMS Employer Login Go to Employer and enter your username and password in the Employer Login section. Click on the LOGIN NOW button.

Login/ Logout RMS Employer Login Go to Employer and enter your username and password in the Employer Login section. Click on the LOGIN NOW button. Recruitment Management System Version 8 User Guide What is Recruitment Management System (RMS)? Recruitment Management System (RMS) is an online recruitment system which can be accessed by corporate recruiters

More information

REQUEST FOR BIDS -- Website Design

REQUEST FOR BIDS -- Website Design REQUEST FOR BIDS -- Website Design 1. DESCRIPTION & OBJECTIVES OF WEBSITE A. Description Utilizing a competitive procurement process, the Office of the Virginia Senior Medicare / Medicaid Patrol (SMP)

More information

The portal is organized into two basic views, one for public interaction on the Internet, and another that is password protected for Subscribers.

The portal is organized into two basic views, one for public interaction on the Internet, and another that is password protected for Subscribers. Help Pages - Threat Intelligence Portal Overview - The portal is a web-based means of supporting both the production and dissemination of Threat Intelligence. Powered by the improved TRITON database and

More information

Online Performance Reviews with PeopleAdmin

Online Performance Reviews with PeopleAdmin Online Performance Reviews with PeopleAdmin Employee Handbook This handbook is designed to help you, the employee, navigate the online Performance Appraisal Process using the PeopleAdmin portal. Your information

More information

Edline Manual Parents Guide Version: July, 2013

Edline Manual Parents Guide Version: July, 2013 Edline Manual Parents Guide Version: July, 2013 Copyright Statements: Edline software is a trademark of Blackboard Engage. Copyright 2013. All other trademarks and copyrights are the property of their

More information

Intelligent Systems for Health Solutions

Intelligent Systems for Health Solutions Bringing People, Systems, and Information Together Today s health organizations are increasingly challenged to accomplish what we call the triple aim of effective healthcare: deliver higher quality care

More information

Priority: Medium Channel to Actor: Graphical User Interface (GUI) Usage Frequency: Weekly Secondary Actors: Database, Brisk Application

Priority: Medium Channel to Actor: Graphical User Interface (GUI) Usage Frequency: Weekly Secondary Actors: Database, Brisk Application University of Arkansas CSCE Department Capstone I Preliminary Report Spring 2015 Abstract Brisk - Intelligent Time Management Riley Turben, Daniel Pumford, Eric Hall, Ryan McAlister Managing teams of people

More information

Edwin Analytics Getting Started Guide

Edwin Analytics Getting Started Guide Edwin Analytics Getting Started Guide This guide provides assistance for accessing and using Edwin Analytics, the Department of Elementary and Secondary Education s (ESE) online tool for expanding data

More information

ProvisionPoint Delegate Admin

ProvisionPoint Delegate Admin ProvisionPoint Delegate Admin Thursday, March 24, 2011 Contents ProvisionPoint Overview... 3 ProvisionPoint Login... 3 Invite New Users... 4 View New User Requests... 5 Quick Approve/Approve New User Requests...

More information

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide Microsoft Dynamics GP 2010 SQL Server Reporting Services Guide April 4, 2012 Copyright Copyright 2012 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information

More information

Siemens Industry Online Support Searching and filtering - keyword search. Search Alternative 1. Keyword search

Siemens Industry Online Support Searching and filtering - keyword search. Search Alternative 1. Keyword search Searching and filtering - keyword search Search Alternative 1 Keyword search Enter one or more keywords in the search box on the home page. For example: - Contactor 5.5 kw - S7 1200 - Frequency converter

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Dashboards 2010 IBM Corporation This presentation should provide an overview of the dashboard widgets for use with WebSphere Business Monitor. WBPM_Monitor_Dashboards.ppt Page

More information

RPCN Website Redesign Project Request for Proposal (RFP)

RPCN Website Redesign Project Request for Proposal (RFP) RPCN Website Redesign Project Request for Proposal (RFP) 1. DESCRIPTION, PURPOSE AND OBJECTIVES OF WEB SITE Redesign Project The Rochester Professional Consultants Network (RPCN) wishes to undertake a

More information

Chapter and Support Group Custom Web Page Creation

Chapter and Support Group Custom Web Page Creation Chapter and Support Group Custom Web Page Creation This document provides instructions on creating and managing custom web pages for Chapters and Support Groups of the National Ataxia Foundation. While

More information

ITRANS PENDING CLAIMS MAILBOX

ITRANS PENDING CLAIMS MAILBOX ITRANS PENDING CLAIMS MAILBOX INSTRUCTIONS FOR EAGLESOFT USERS ON HOW TO RETRIEVE PENDING CLAIMS Updated: April 2013 OVERVIEW As of February 20 th, 2012, itrans began to send a message to Dental Offices

More information

Category: Improving State Operations

Category: Improving State Operations UTAH WARRANTS CHECK Category: Improving State Operations Contact: David Fletcher, Chief Technology Officer State of Utah Project Initiation and Completion Dates: June 2011 - October 2011 NASCIO 2012 1

More information

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010 December 14, 2012 Authors: Wilmer Entena 128809 Supervisor: Henrik Kronborg Pedersen VIA University College, Horsens Denmark ICT Engineering Department Table of Contents List of Figures and Tables... 3

More information

Volume FIRST WALKTHROUGH. The 10-Minute Guide to Using Newsletter Services. First Walkthrough: the 10-Minute Guide

Volume FIRST WALKTHROUGH. The 10-Minute Guide to Using Newsletter Services. First Walkthrough: the 10-Minute Guide Volume 1 FIRST WALKTHROUGH The 10-Minute Guide to Using Newsletter Services First Walkthrough: the 10-Minute Guide Table of Contents Step - 1... 3 Sign-up for an account... 3 Step 2... 4 Authenticate your

More information

Form Builder Manual. A brief overview of your website s Form Builder with screenshots.

Form Builder Manual. A brief overview of your website s Form Builder with screenshots. A brief overview of your website s with screenshots. 1 Table of Contents:...1...3 Creating a New Web Form...4 Editing a Form Element...7 Creating a Form Action...9 Adding a Form Layout to an Action...11

More information

CrownPeak Platform Dashboard Playbook. Version 1.0

CrownPeak Platform Dashboard Playbook. Version 1.0 CrownPeak Platform Dashboard Playbook Version 1.0 2015 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

Microsoft Windows SharePoint

Microsoft Windows SharePoint Microsoft Windows SharePoint SharePoint Basics Introduction What is Microsoft SharePoint? SharePoint is a tool to connect people and information. It provides a central site for sharing information with

More information

Kentico CMS 7.0 E-commerce Guide

Kentico CMS 7.0 E-commerce Guide Kentico CMS 7.0 E-commerce Guide 2 Kentico CMS 7.0 E-commerce Guide Table of Contents Introduction 8... 8 About this guide... 8 E-commerce features Getting started 11... 11 Overview... 11 Installing the

More information

On Demand Customer Feedback at the Point of Experience

On Demand Customer Feedback at the Point of Experience On Demand Customer Feedback at the Point of Experience For further information, please contact: Morgan Strickland, CEO Opinionmeter International, Ltd. 510-352-4943, x101 morgan@opinionmeter.com www.opinionmeter.com

More information

Hosted PBX Call Control Toolbar Guide

Hosted PBX Call Control Toolbar Guide Hosted PBX Call Control Toolbar Guide 10/15/2014 TELEPACIFIC CALL CONTROL TOOLBAR Call Control Toolbar in IE or Firefox: Call Control Toolbar in Outlook 2010: Log In and Log Out To log in, click Login.

More information

Dayforce HCM Employee Access Employee Guide

Dayforce HCM Employee Access Employee Guide Dayforce HCM Employee Access Employee Guide Contents Employee Tasks... 2 Dayforce HCM Login... 2 Tool Bar Buttons... 3 Time Entry 4 Time Clock Entry 4 Hours Entry..6 Time In/Out Manually Entered..7 Salaried

More information

E-Commerce Manual. A brief overview of your website s E-commerce system with screenshots. E-commerce Manual

E-Commerce Manual. A brief overview of your website s E-commerce system with screenshots. E-commerce Manual E-Commerce A brief overview of your website s system with screenshots. 1 Contents Categories:...3 Products:...4 Adding a New Product:...5 Adding an Image to a Product:...7 Creating a New Attribute:...8

More information

Upload Your Culminating Project to The Repository at St. Cloud State University

Upload Your Culminating Project to The Repository at St. Cloud State University Upload Your Culminating Project to The Repository at St. Cloud State University There are two parts to uploading your culminating project (starred paper, thesis, or dissertation) to The Repository at St.

More information

Instructor Getting Started Guide for Desire2Learn

Instructor Getting Started Guide for Desire2Learn Instructor Getting Started Guide for Desire2Learn Table of Contents About McGraw-Hill Campus... 2 Before you begin... 2 Initial Setup of the McGraw-Hill Campus Module... 3 Accessing McGraw-Hill Campus...

More information

Verified Volunteers. System User Guide 10/2014. For assistance while navigating through the system, please contact Client Services at:

Verified Volunteers. System User Guide 10/2014. For assistance while navigating through the system, please contact Client Services at: Verified Volunteers System User Guide 10/2014 For assistance while navigating through the system, please contact Client Services at: RCAN@verifiedvolunteers.com - (855) 326-1860 - Option 1 Welcome to Verified

More information