1. Introduction. 1.1 Purpose of this document

Size: px
Start display at page:

Download "1. Introduction. 1.1 Purpose of this document"

Transcription

1 1. Introduction 1.1 Purpose of this document This is the Software Design Specification for Timeless Solutions EW^2 solution. This document will outline the software design and specification of our workflow task management system in addition to system architecture, system components, and software requirements as agreed upon by the customer and the project team. 1.2 Scope of the development project This will be called EW^2, a website that will manage tasks determined by TAA and completed by independent proctors for a set amount of money. This website will handle the tasks and the users. 1.3 Definitions, acronyms, and abbreviations TAA - The American Academy EW2 - Education With an Elastic Workforce Drupal - Content Management System PHP - A server scripting language used by Drupal MySQL - The database that will be used for this project Apache - A web service Task - Unit of work for which TAA offers payment 1.4 References Overview of document This document will contain specifics about the design of our software. It is a high level explanation of how the project will function, and which components will be developed to help it do so. This document will also serve to explain the technologies used to develop the website, as well as the user's interaction with various features.

2 2. System architecture description 2.1 Overview of modules / components Core UI and our custom theme - The UI will be handled completed through the Drupal Core UI. The modifications we will make will be through a custom theme module. Database Handler The Drupal module "Views" will act as the link between our MySQL database and our application in Drupal. Views creates tables, does queries, stores information and alters data all by itself. We will incorporate this powerful open source module to keep manage our data. Data Processing All data processing is done within the Drupal framework. Security Sessions, authentication, encryption, password protection (and hashing), auto logout will all be done with Drupal. These are built in features of the CMS. User Modules Allows a user to log into a website with secure credentials Determines their credentials which will allow for a smarter search heuristic for the projects displayed on the screen Keeps track of user web activity on the site Search Modules Uses an AJAX component (web service) that will handle dynamic searching of workflow modules to be displayed to the user Links the user and the workflow together Workflow Modules Handles all tasks and projects Highly customizable States can be Available, In Progress, In Review and Finished Project Modules

3 A unit of work that TAA needs to have completed 2.2 Structure and relationship 2.3 User interface issues Proctor/Teacher: When the user first logs into the site, they will be presented with a few suggestions of tasks they may like to try, which is based on their previously accepted tasks. Below that will be a list of tasks or projects listed in order of which was posted the most recently. There will be a search bar where the user can search the tasks. After searching, the recommended tasks will move to the bottom of the screen and the search results will appear on top. On every user page, there will be left and right columns with additional information that may be useful to the user. The menus on the right will include a link to take them to a shopping cart of their selected tasks, as well as a brief summary of what tasks are in the cart at the time. Additionally, the bar on the right will provide the user with any notifications of payment received, as well as a link to see information about those payments. The menus on the left will assist in searching the tasks, by filtering results much like many shopping websites do. The table of tasks will give some summary information, such as the task name, how much the task is worth, and deadlines or limits, if any. Each task is click able, which will take you to a new page with the rest of the task's information.

4 The information the task presents depends on the information specified when the task was created. A task will include space for (although depending on the task, it may be blank): 1. Description 2. Type of task (weather it is paid to the best submission or to everyone who completes the task satisfactorily) 3. Due date 4. Limit of how many people can complete the task 5. Limit of how many times a single person can complete the task 6. etc "etc" is in case TAA wants more criteria, ideally they can extend it. After browsing to the cart, the user can decide to commit to complete the tasks, or save tasks for later if they don't want to commit yet. After committing to complete some tasks, the user's right menus will now include an option to work on tasks. The option will take them to a screen listing the tasks they have accepted, and when they click on a task, they can see the description again. There they will be given options to upload documents as attachments to complete the task. If a workflow was created in addition to documents, they will be prompted through it. Worflows vary depending on the task, but typically most tasks will be attaching the finished work and submitting it for evaluation. The bar on the right will also allow the user to navigate to a summary of tasks pending evaluation. TAA Employee/Admin: Upon logging in, the administrator will be presented with a list of tasks which need to be approved or rejected for having been completed by the users. There will be the typical administrative menus available through Drupal, as well as an option to create a new task for a user. The administrator will be able to add users through the Drupal's integrated user administrator menu. If the administrator clicks on a completed task, they will be presented with the task's information, as well as any attachments for having completed the task. They can review the results and click a button to accept or reject the work. After selecting the option to create a new task, the administrator will be taken to a screen with the same spaces as the task screen on a user's individual task's page, only the page will have fields for the administrator to edit instead. If the administrator wants to add fields to tasks, they can use the Content Type option on their menu, which is a feature integrated with drupal. In addition to creating a task with default fields, the administrator can also add a workflow to the task, by giving a series of steps and prompts. To do this, the administrator can click a button labeled "Add step" and with each new step he will be able to add task criteria such as a description of what he wants done. The administrator, on any of these task completion screens, can attach a document for the user to download. This may include further instructions, a contract to be signed and returned, or an example or template of what they are looking for.

5 3. Detailed description of components This will be completed in SDSv Reuse and relationships to other products Role in Product Design Existing Drupal Modules are to be used whenever possible Modules that are close to what we need will be "tweaked" using module "hooks." This is Drupal's modular ability to affect different modules through method overloading. Product Implementation and Reasons for Changes As we discover better modules, our project's goals may change to accommodate. Different modules will require different enhancements If we discover there is no suitable module for a particular need, we will need to implement one from scratch ourselves. Thrown Out Reusable Information Modules which are too difficult to use for our tasks will be discarded. 5.0 Design decisions and trade offs The requirement of using Drupal to design the website made many of the design decisions for us. Leveraging the strengths of Drupal require the use of preexisting modules instead of creating custom modules. Mechanical Turk was considered as a method of tracking tasks any paying employees, however Mechanical Turk failed to offer user API which was needed for the teachers to accept the tasks. Because of this Mechanical Turk was abandoned and Drupal will be used instead to manage tasks. 6.0 Pseudo code for components The following is an example of some code used for writing "hooks" in drupal. This is how we can tweak a module's functionality: /** * php Drupal code example * This demonstrates how to remove unwanted content created * by another module. */ function modulename_link_alter(&$links, $node) { if ($links->type == "contenttype") { $links->linktype = array(); // empties the links. }

6 } It is still fairly early in the development process to give a large amount of pseudo code for components and modules that may have Drupal alternatives already. The following are ideas for some custom modules if needed: Workflow(class) This class will control the Project class for access with different settings and customization, such as specific pay procedures. Project(class) This will be a very low level implementation of our Project/Task idea. Basically a project can be a task, but a task is the lowest level. This will be controlled by Workflow. Search(class) This will be the glue that keeps the User and Workflow communicating. There will be AJAX implementations to allow for fast searching while also presenting the data in a pleasing way to the user. 7.0 Appendices (if any)

1. Introduction and overview

1. Introduction and overview 1. Introduction and overview 1.1 Purpose of this Document This document describes how we will test our code for robustness. It includes test cases and other methods of testing. 1.2 Scope of the Development

More information

XTM Connect Drupal Connector. A Translation Management Tool Plugin

XTM Connect Drupal Connector. A Translation Management Tool Plugin XTM Connect Drupal Connector A Translation Management Tool Plugin Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this publication may be reproduced

More information

The Kresge Foundation FLUXX THE KRESGE FOUNDATION PORTAL

The Kresge Foundation FLUXX THE KRESGE FOUNDATION PORTAL FLUXX THE KRESGE FOUNDATION PORTAL Portal This document outlines some information and tips about the Portal: Install Google Chrome Browser Log into Portal Reset or Create Password Overview of Portal Navigating

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

Physician Quality Reporting System (PQRS) Physician Portal

Physician Quality Reporting System (PQRS) Physician Portal The American College of Radiology Physician Quality Reporting System (PQRS) Physician Portal User Guide November 15, 2016 American College of Radiology 1891 Preston White Drive Reston, VA 20191-4397 Copyright

More information

CAMWS CMS Redesign. Request for Proposals FAX E. Broadway Monmouth, IL

CAMWS CMS Redesign. Request for Proposals FAX E. Broadway Monmouth, IL CAMWS CMS Redesign Request for Proposals 700 E. Broadway Monmouth, IL 61462 309-457-2284 FAX 815-346-2565 camws@camws.org www.camws.org Table of Contents I. Summary... 2 II. Proposal Guidelines... 2 Timeline

More information

HOW TO SETUP A NEW USER

HOW TO SETUP A NEW USER In this guide you will learn how to create a new user, define their settings, assign limits and permissions, and establish their Single Sign On credentials in the Online Banking System. User Administration

More information

ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A.

ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A. Republic of Armenia Armenian e-procurement System (ARMEPS) ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A. Table of Contents Table of Contents... 2 1. ARMEPS workflow and terms... 8 2. General Functionality...

More information

KeyNavigator Book Transfer

KeyNavigator Book Transfer Created (10/2018) KeyNavigator Book Transfer User Guide Table of Contents 1. Introduction to Book Transfer... 3 Overview... 3 Features... 3 Navigation... 3 Transfer Processing Timing... 4 2. User-Level

More information

Merchant Portal User Guide

Merchant Portal User Guide Merchant Portal User Guide TABLE OF CONTENTS Accessing the Click Merchant Portal... 3 Virtual Terminal... 4 Single Entry (Merchant Enters Card Details)... 5 Payment Using Collected Card Details... 5 Payment

More information

Quick Start Guide (CM)

Quick Start Guide (CM) NetBrain Integrated Edition 7.1 Quick Start Guide (CM) Version 7.1 Last Updated 2018-08-20 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Managing Network Changes... 3

More information

Steps on How to Create Cash Advances

Steps on How to Create Cash Advances FAST Travel System Guide: How to Create Cash Advances Purpose: Definition: Navigation: Notes: To provide instructions on how to create Cash Advances (CAs) in the FAST Travel module. Cash Advance - In some

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal About the Tutorial is a free and open source Content Management System (CMS) that allows organizing, managing and publishing your content. This reliable and secure CMS is built on PHP based environment

More information

What are Non-Catalog Orders?

What are Non-Catalog Orders? What are Non-Catalog Orders? Non-Catalog Orders are intended to address purchasing needs that fall outside of typical requests within a punch-out site, catalog or form. Prior to beginning a Purchase Request,

More information

Project Development Steps using RP framework

Project Development Steps using RP framework RP Framework RP Web Application Framework is a proprietary web application development framework in PHP. It is a MVC (Model View Controller) framework based on Strut (Apache Group), the renowned MVC framework

More information

PEOPLEADMIN USER S GUIDE. Sam Houston State University

PEOPLEADMIN USER S GUIDE. Sam Houston State University PEOPLEADMIN USER S GUIDE Sam Houston State University Revised 05/2015 PeopleAdmin, Inc. 816 Congress Avenue Suite 1800 Austin, TX 78701 TABLE OF CONTENTS INTRODUCTION... 5 GETTING STARTED... 6 SYSTEM

More information

SIAM R3.0 USER GUIDE

SIAM R3.0 USER GUIDE SIAM R3.0 USER GUIDE Document Reference: 8295 September 2016 Revision: 3 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Jun Sam Unsuspending a SIM card description updated. 2016 Smith 3 Sep

More information

STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS

STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS Rev: 01/2017 In This Document Logging In... 1 Creating a New Protocol... 2 Revising a Returned Protocol... 7 Submitting an Amendment or Renewal Application...

More information

SUPPLEMENTS MANAGEMENT PROGRAM v2.2 User Guide. Table of contents

SUPPLEMENTS MANAGEMENT PROGRAM v2.2 User Guide. Table of contents 1 SUPPLEMENTS MANAGEMENT PROGRAM v2.2 User Guide Table of contents Supplement Functions Supplement 1 6 My Entered Supplements 6 7 Approval Functions Supplements Pending My Approval 7 8 Other Options Change

More information

TERMS OF REFERENCE Design and website development UNDG Website

TERMS OF REFERENCE Design and website development UNDG Website TERMS OF REFERENCE Design and website development UNDG Website BACKGROUND The United Nations Development Coordination and Operations Office (UN DOCO) launched a new website in 2015 to ensure accessibility

More information

Online Store. General Store Front User Guide

Online Store. General Store Front User Guide Online Store General Store Front User Guide March 2018 Version 2.3 shop.bunzl.com.au 1 Table of Contents TABLE OF CONTENTS... 2 1 INTRODUCTION... 4 2 USER ROLES AND PERMISSIONS WITHIN ONLINE STORE... 5

More information

Welcome to the USF Computer Store Web Store. Or navigate directly to:

Welcome to the USF Computer Store Web Store. Or navigate directly to: Welcome to the USF Computer Store Web Store Access via: http://www.usf.edu/techpurchases/ for complete USF Tech Purchases guidelines Or navigate directly to: https://usm.channelonline.com/bellind/usfstore/login/?destination=/bellind/usfstore/

More information

B2B Portal User Guide

B2B Portal User Guide B2B Portal User Guide Table of Contents Introduction..3 Logging In.4 Changing your original password......6 Ordering Product....7 Product Waiting Lists......8 Payment Options.. 14 Finalizing your Order...

More information

Rabo Supplier Finance User Manual - Suppliers -

Rabo Supplier Finance User Manual - Suppliers - Rabo Supplier Finance User Manual - Suppliers - Page 2 of 33 Table of Contents 1 About This Document... 3 1.1 Objectives of This Document... 3 1.2 Inside This Document... 3 2 Rabo Supplier Finance platform...

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

Website Designing for

Website Designing for 5 Website Designing for www.scap.com.pk Complete Proposal for website designing and associated web solutions of www.scap.com.pk. The web solutions included, Search Engine Optimization and web hosting.

More information

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM This edition applies to version 6.0 of IBM Atlas Suite

More information

CETA SKILLS TRAINING MANUAL

CETA SKILLS TRAINING MANUAL CETA SKILLS TRAINING MANUAL Author: Andisiwe Ganjana Date: 28 January 2015 How to access the Skills System Step 1:. To access the system the user must be connected to the internet. The user must navigate

More information

Client Admin Release Summary

Client Admin Release Summary April 2019 Client Admin Release Summary Budget for Concur Invoice, Expense, and Request Professional Edition Initial post Release Note Summaries The items in this section are summaries of the release notes

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.1) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 36 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

Wisconsin Transportation Management Plan (WisTMP) System User Guide

Wisconsin Transportation Management Plan (WisTMP) System User Guide Wisconsin Transportation Management Plan (WisTMP) System User Guide March, 2017 1. Introduction 1.1 Description The FHWA Final Rule on Work Zone Safety and Mobility (2004) requires all states to develop

More information

USER MANUAL TABLE OF CONTENTS. Quotation Manager. Version: Compatibility:

USER MANUAL TABLE OF CONTENTS. Quotation Manager. Version: Compatibility: USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Quotation Manager... 1 Installation& Activation... 2 Installation Steps... 2 Installation (Custom theme)... 3 Extension Activation... 3 How it

More information

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps Software Requirements Document for Graffiti Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon Version Date Author Change 0.1 09/13/ SM Initial Document 07 0.2 09/22/

More information

Sitelok Manual. Copyright Vibralogix. All rights reserved.

Sitelok Manual. Copyright Vibralogix. All rights reserved. SitelokTM V5.5 Sitelok Manual Copyright 2004-2018 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the Sitelok product and is

More information

Requesting Testing Accommodations for the SSAT

Requesting Testing Accommodations for the SSAT Requesting Testing Accommodations for the SSAT This document provides the step-by-step process for submitting an application for accommodations on the SSAT. Additional information for students regarding

More information

How to Enroll Online in Northern California Training Academy Courses

How to Enroll Online in Northern California Training Academy Courses How to Enroll Online in Northern California Training Academy Courses June 1, 2017 Online Enrollment System To continue to improve and simplify the enrollment process participants will only need to provide

More information

Event Planning Site User Guide

Event Planning Site User Guide Event Planning Site User Guide 1 Table of Contents Logging In... 3 Submitting Events... 5 Tracking an Event... 6 Editing or Copying an Event... 8 Adding Documents... 8 Using the Event Planning Guide &

More information

Names and Numbers SpecArt System ver 4.0 Introduction and Functional Overview

Names and Numbers SpecArt System ver 4.0 Introduction and Functional Overview Introduction and Functional Overview General Introduction and Outline SpecArt Ver 4 represents a significant improvement over the former systems. It includes many of the positive features of the previous

More information

Team Members. Brief Description:

Team Members. Brief Description: Team Members Team Members Important: This part of the HelpDesk User s Guide is the Team Member section, and contains information about the Team Members role in the HelpDesk system. For other information,

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

FOR INTERNAL APPLICANTS ONLY. Current FSU Employees MUST USE Self Service, Recruiting Activities, Careers, to apply for FSU jobs.

FOR INTERNAL APPLICANTS ONLY. Current FSU Employees MUST USE Self Service, Recruiting Activities, Careers, to apply for FSU jobs. FOR INTERNAL APPLICANTS ONLY Current FSU Employees MUST USE Self Service, Recruiting Activities, Careers, to apply for FSU jobs. This job aid outlines the basic steps to apply for a job at Florida State

More information

Client Admin Release Summary

Client Admin Release Summary April 2019 Client Admin Release Summary Concur Request Professional / Premium Edition Initial Post Release Note Summaries Request The items in this section are summaries of the release notes for this month.

More information

VSP18 Venafi Security Professional

VSP18 Venafi Security Professional VSP18 Venafi Security Professional 13 April 2018 2018 Venafi. All Rights Reserved. 1 VSP18 Prerequisites Course intended for: IT Professionals who interact with Digital Certificates Also appropriate for:

More information

Agency User Manual. Version 2.0

Agency User Manual. Version 2.0 Agency User Manual Version 2.0 October 2015 Copyright Information 2015 by. All rights reserved. This document is the copyrighted property of the. It should not be duplicated, used, or disclosed in whole

More information

POC Evaluation Guide May 09, 2017

POC Evaluation Guide May 09, 2017 POC Evaluation Guide May 09, 2017 This page intentionally left blank P r o p r i e t a r y a n d C o n f i d e n t i a l. 2 0 1 7 R F P M o n k e y. c o m L L C Page 2 CONTENTS Read Me First... 4 About

More information

TE.0X0 SUPPLIER GUIDE Oracle NAC Subcontractor Staffing Tool (SST)

TE.0X0 SUPPLIER GUIDE Oracle NAC Subcontractor Staffing Tool (SST) OUM TE.0X0 SUPPLIER GUIDE Oracle NAC Subcontractor Staffing Tool (SST) Author: Adrienne Little Creation Date: May 6, 2012 Last Updated: September 5, 2012 Version: 1.0 1 DOCUMENT CONTROL 1.1 Change Record

More information

How to Enroll into Health Benefits via Employee Self Service: Open Enrollment 2017

How to Enroll into Health Benefits via Employee Self Service: Open Enrollment 2017 Employee Self Service (ESS): Online Benefits Open Enrollment allows fast and convenient processing of your Benefits Enrollment elections through Employee Self Service (ESS). ESS is an online module within

More information

Center for Science Outreach Public View

Center for Science Outreach Public View Vanderbilt University Center for Science Outreach Public View Destiny One Page 1 Contents Create a Student Profile/Account... 3 Browse for a Course... 5 Register for a Course and Checkout... 7 Page 2 Create

More information

N Touch Treasury. Getting Started

N Touch Treasury. Getting Started N Touch Treasury Getting Started Revised 12-15-17 TreasurySupport@NTouchBanking.com (833) 846-2699 How Do I Log into N Touch Treasury? You will be provided a Company ID and Login ID prior to logging in

More information

Welcome to Client Access Web!

Welcome to Client Access Web! Welcome to Client Access Web! Introduction W elcome to the Express Collections Client Access Portal. This portal has been crafted so that you, our valued client, can have convenient and secure access to

More information

Positive Pay User Guide. Positive Pay User Guide - 1 -

Positive Pay User Guide. Positive Pay User Guide - 1 - - 1 - Table of Contents Positive Pay Overview... 3 User Login... 3 Transaction Processing- Submitting Issued Check File... 4 Transaction Processing Add New Issued Check... 5 Transaction Processing - Exception

More information

IntegraFlex Employee Portal. Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account

IntegraFlex Employee Portal. Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account IntegraFlex Employee Portal Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account 1 IntegraFlex Employee Portal Contents Getting started... 2 Registration...

More information

Community College of Vermont

Community College of Vermont Page 1 of 5 Community College of Vermont Request for Proposal: Web Design & Development..................................................................................................................

More information

VSP16. Venafi Security Professional 16 Course 04 April 2016

VSP16. Venafi Security Professional 16 Course 04 April 2016 VSP16 Venafi Security Professional 16 Course 04 April 2016 VSP16 Prerequisites Course intended for: IT Professionals who interact with Digital Certificates Also appropriate for: Enterprise Security Officers

More information

Portfolio Series. True+Way ASL. Daniel Cox. UI/UX Design Process. Web Development Process

Portfolio Series. True+Way ASL. Daniel Cox. UI/UX Design Process. Web Development Process Portfolio Series True+Way ASL Daniel Cox UI/UX Design Process Web Development Process True+Way ASL www.truewayasl.com True Way ASL is an American Sign Language curriculum content provider serving high

More information

Welcome to Energia Bureau. Project Manager Users guide

Welcome to Energia Bureau. Project Manager Users guide Welcome to Energia Bureau Project Manager Users guide Contents Welcome to Energia Bureau... 2 Logging in and out... 3 Dashboard... 4 Your Projects...5 & 6 Meeting Organiser... 7 Manage Ideas... 8 Your

More information

CMS Client Smart Meetings User Guide & FAQ s

CMS Client Smart Meetings User Guide & FAQ s CMS Client Smart Meetings User Guide & FAQ s AstraZeneca UK Version 7 (24/04/2017) 1 P a g e Xerox Customer Service Team Phone: 01952 566539 Email: AZUKMCservice@xerox.com Task Page No Introduction...

More information

HOW TO REGISTER FOR THE TEAS ASSESSMENT

HOW TO REGISTER FOR THE TEAS ASSESSMENT How to Register for the TEAS Assessment 1 HOW TO REGISTER FOR THE TEAS ASSESSMENT You can now register for the TEAS Assessment through our Online Store. How you access the Online Store depends on whether

More information

Policy Manager in Compliance 360 Version 2018

Policy Manager in Compliance 360 Version 2018 Policy Manager in Compliance 360 Version 2018 Policy Manager Overview 3 Create a Policy 4 Relate a Policy to Other Policies, Departments, and Incidents 8 Edit a Policy 10 Edit a Policy by Using the Edit

More information

How to Search and Register for Continuing Education Programs

How to Search and Register for Continuing Education Programs How to Search and Register for Continuing Education Programs 1. Search for a course and/or create an account: Search for portion of title Drop down menu: - Browse Our Programs (view by title) - Events

More information

Hard Service Development Charges (DC) Portal. User Guide Update: March 2019

Hard Service Development Charges (DC) Portal. User Guide Update: March 2019 Hard Service Development Charges (DC) Portal User Guide Update: March 2019 1 The Region of Peel s new policy to collect Hard Service (HS) DCs directly for residential developments except apartments came

More information

Web Client User Guide

Web Client User Guide ImageTag, Inc. 2016 Contents Introduction... 2 Logging Into Your KwikTag Client... 3 KwikTag Tabs and Your Landing Page... 4 Drawers Tab Features and Functions... 7 My Lists... 7 The KwikTag Library...

More information

UOB TRANSACTION BANKING. BIBPlus Cash Management User Guide

UOB TRANSACTION BANKING. BIBPlus Cash Management User Guide UOB TRANSACTION BANKING BIBPlus Cash Management User Guide Table of Contents 1 Account Services 1.1 Account Summary 1.2 Account Statement 1.3 External Accounts 1.4 Trade Bill Summary 1.5 Global View 1.6

More information

Quick Guide to TIDE: Adding Users and Students

Quick Guide to TIDE: Adding Users and Students Quick Guide to TIDE: Adding Users and Students Test Coordinators use TIDE to add and manage user accounts and to add students participating in the South Carolina Alternate Assessment. This Quick Guide

More information

Applying for an Elective Opportunity

Applying for an Elective Opportunity I. Finding elective opportunities to apply for Go to the portal main page (https://www.afmcstudentportal.ca) and sign in with your username and password. If you have not yet registered for the portal,

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

Getting Your Data out of Salesforce Leveraging Your Salesforce Data in ZoomInfo Shipping Data Back to Salesforce

Getting Your Data out of Salesforce Leveraging Your Salesforce Data in ZoomInfo Shipping Data Back to Salesforce 1 Table of Contents Getting Your Data out of Salesforce Importing Data from Salesforce to ZoomInfo Signing into Salesforce from ZoomInfo Selecting a Resource and Naming a File Filtering Your Data Processing

More information

E-Requisition Order (E-RO UG) v1.0

E-Requisition Order (E-RO UG) v1.0 E-Requisition Order (E-RO UG) v1.0 User Manual Rev. B Information Technology Department Revision Sheet Release Date Author Revision Description No. Rev. A 22/11/2013 Chuah Chong Hee Creation of E-Requisition

More information

Cart & Assign. 6. Enter an optional Note to the Assignee and click the Assign button.

Cart & Assign. 6. Enter an optional Note to the Assignee and click the Assign button. Revised 11/18/13 Cart & Assign Modify The Shopping Cart You may Unassign the shopping cart only until the Requester has submitted it. 1. Click the Shop icon, hover over My Carts And Orders, and click View

More information

My SmartCare Online Portal

My SmartCare Online Portal My SmartCare Online Portal Your reimbursement management portal from Benefit Coordinators Corporation (BCC). Customer Service Call Center: 800-685-6100 M-Thurs: 8:00am - 8:00pm ET / F: 8:00am - 6:00pm

More information

Your step-by-step instructions to getting started on ipage. Includes:

Your step-by-step instructions to getting started on ipage. Includes: Your step-by-step instructions to getting started on ipage. Includes: Ordering Setting up Selection Lists What's on ipage Managing Your Relationship with Spring Arbor Through ipage Welcome to ipage, Spring

More information

Table of Contents. 1. Introduction 1. 1 Overview Business Context Glossary...3

Table of Contents. 1. Introduction 1. 1 Overview Business Context Glossary...3 Table of Contents 1. Introduction 1. 1 Overview......2 1. 2 Business Context.. 2 1. 3 Glossary...3 2. General Description 2. 1 Product/System Functions..4 2. 2 User Characteristics and Objectives 4 2.

More information

SC Common Reporting (ComRep) Portal User Manual

SC Common Reporting (ComRep) Portal User Manual SC Common Reporting (ComRep) Portal User Manual 1 Contents Page 1. Introduction 1.1 Overview of ComRep portal: brief overview and explanation on ComRep objectives, features and user roles. 3 2. Get Started

More information

Oklahoma State Department of Education

Oklahoma State Department of Education Oklahoma State Department of Education TLE Qualitative Report JUNE 3, 2014 VERSION 01.00 Oklahoma State Department of Education 2500 North Lincoln Boulevard Oklahoma City, OK 73105-4599 1 Table of Contents

More information

First-time users select Register here

First-time users select Register here First-time users select Register here Type the first letter of your district name and select the appropriate district or entity. Enter your DISTRICT EMAIL ADDRESS (email addresses must match the @districtname.kyschools.us

More information

ACH Monitor Fraud Review and Approval USER GUIDE

ACH Monitor Fraud Review and Approval USER GUIDE ACH Monitor Fraud Review and Approval USER GUIDE For informational purposes only, not considered an advertisement. ACH MONITOR - FRAUD REVIEW AND APPROVAL Welcome to M&T Bank s ACH Monitor Fraud Review

More information

Rewards Points for Magento 2.0

Rewards Points for Magento 2.0 Rewards Points for Magento 2.0 USER GUIDE Version 1.0 support@exto.io https://exto.io/rewards-points-for-magento-2.html Magento 2 Reward Points extension provides you with effective rewards program, customizable

More information

Eforms Full Application Guide Returning Contractor

Eforms Full Application Guide Returning Contractor Eforms Full Application Guide Returning Contractor 1 Completing a Full application form (Pages 2-6) 1.1 Login to Eforms system (Page 2) 1.2 Assessment scope (Page 3) 1.3 Declaration and fees (Page 3) 1.4

More information

SelfServe WebTIME. Employee User Manual

SelfServe WebTIME. Employee User Manual SelfServe WebTIME SelfServe is your one stop portal Employee related activities. From logging hours, updating contact information, keeping track of upcoming assignments to reprinting copies of your Check

More information

Amazon Mechanical Turk. Requester UI Guide API Version

Amazon Mechanical Turk. Requester UI Guide API Version Amazon Mechanical Turk Requester UI Guide Amazon Mechanical Turk: Requester UI Guide Copyright 2011 Amazon Web Services LLC or its affiliates. All rights reserved. Table of Contents Welcome... 1 Introduction

More information

emerge Help Document Table of Contents

emerge Help Document Table of Contents Table of Contents Logging Into emerge... 2 Navigation Bar... 3 Main Menu... 4 Creating a New Order... 6 Order Checklist... 6 Information... 7 Overview... 8 Geography... 9 List Select... 12 Demographics...

More information

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Phone:

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad   Phone: E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Email: AhmadNassr@gmail.com Phone: 0599042502 1. Rationale This is the major project for both (Open Source and.net teams) as an E-Commerce

More information

emerge Help Document Table of Contents

emerge Help Document Table of Contents Table of Contents Logging Into emerge... 2 Navigation Bar... 3 Main Menu... 4 My Account... 6 My Information... 6 Manage Lists... 7 Manage Seeds... 8 Search/Add Suppress... 9 Update My Suppress... 10 Creating

More information

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning License Registration Guideline

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning License Registration Guideline AVAYA LEARNING CENTER END USER GUIDE Avaya Learning License Registration Guideline 1 Avaya Learning Center Virtual Campus Registration Guide March 2014 v.2 ENROLLMENT REGISTRATION PROCESS Enrollment is

More information

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento Magento Migration Tool User Guide Shopify to Magento Bigcommerce to Magento 3DCart to Magento Copyright 2015 LitExtension.com. All Rights Reserved. Page 1 Contents 1. Preparation... 3 2. Setup... 4 3.

More information

APPROVER ELECTRONIC SALARY DISTRIBUTIONS

APPROVER ELECTRONIC SALARY DISTRIBUTIONS APPROVER ELECTRONIC SALARY DISTRIBUTIONS TABLE OF CONTENTS Overview... 2 Approve a Distribution Change... 2 Deny a Distribution Change... 6 Content of the Distribution Form Document... 7 Distribution Form...

More information

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator Access Online Navigation Basics User Guide Version 2.2 Cardholder and Program Administrator Contents Introduction... 1 Access Online Overview... 2 How We Gather and Manage Transaction Data in Access Online...

More information

Create Expense Report (Net-Card or Employee Paid)

Create Expense Report (Net-Card or Employee Paid) Create Expense Report (Net-Card or Employee Paid) All employees are responsible for ensuring that their Expense Reports are complete, accurate and adhere to the expense reimbursement requirements of CUNY,

More information

TABLE OF CONTENTS. WELCOME TO mycsa... LOGGING IN... FORGOT PASSWORD... FIRST TIME REGISTRATION... ACCESS TYPE... GETTING STARTED...

TABLE OF CONTENTS. WELCOME TO mycsa... LOGGING IN... FORGOT PASSWORD... FIRST TIME REGISTRATION... ACCESS TYPE... GETTING STARTED... USER GUIDE TABLE OF CONTENTS WELCOME TO mycsa... LOGGING IN... FORGOT PASSWORD... FIRST TIME REGISTRATION... ACCESS TYPE... GETTING STARTED... SETTING PREFERENCES... CONTACT US... DASHBOARD... MANAGING

More information

Employee Portal New User Guide

Employee Portal New User Guide Employee Portal New User Guide Your Guide to Getting Started on the Employee Portal CONTENTS Getting Started... 3 Registration... 3 Secure Authentication... 3 Your First Login... 3 Navigating Your Online

More information

Creating and Maintaining Vocabularies

Creating and Maintaining Vocabularies CHAPTER 7 This information is intended for the one or more business administrators, who are responsible for creating and maintaining the Pulse and Restricted Vocabularies. These topics describe the Pulse

More information

DOWNLOADING YOUR BENEFICIARY SAMPLE Last Updated: 11/16/18. CMS Web Interface Excel Instructions

DOWNLOADING YOUR BENEFICIARY SAMPLE Last Updated: 11/16/18. CMS Web Interface Excel Instructions DOWNLOADING YOUR BENEFICIARY SAMPLE Last Updated: 11/16/18 CMS Web Interface Excel Instructions Last updated: 11/16/2018 1 Smarter reporting. Smarter care. CMS Web Interface file upload. Using the Excel

More information

E-Requisition Order (E-RO PDP) v1.0

E-Requisition Order (E-RO PDP) v1.0 E-Requisition Order (E-RO PDP) v1.0 User Manual Rev. A Information Technology Department Revision Sheet Release Date Author Revision Description No. Rev. A 22/11/2013 Chuah Chong Hee Creation of E Requisition

More information

Review Expense History

Review Expense History File Name Date Modified 10/19/2008 Last Changed by ASDS Status Final Review Expense History.doc Review Expense History Concept Employees can review Travel and Expense reimbursement vouchers electronically

More information

MANAGEMENT AND CONFIGURATION MANUAL

MANAGEMENT AND CONFIGURATION MANUAL MANAGEMENT AND CONFIGURATION MANUAL Table of Contents Overview... 3 SYSTEM REQUIREMENTS... 3 The Administration Console... 3 CHAT DASHBOARD... 4 COMPANY CONFIGS... 4 MANAGE LEARNING... 7 MANAGE TABS...

More information

Introduction to PHP. Handling Html Form With Php. Decisions and loop. Function. String. Array

Introduction to PHP. Handling Html Form With Php. Decisions and loop. Function. String. Array Introduction to PHP Evaluation of Php Basic Syntax Defining variable and constant Php Data type Operator and Expression Handling Html Form With Php Capturing Form Data Dealing with Multi-value filed Generating

More information

Training Outline ARCHIBUS/FM Web Central For Informal Projects

Training Outline ARCHIBUS/FM Web Central For Informal Projects Training Outline ARCHIBUS/FM Web For Prepared For: The University of North Carolina Charlotte Prepared By: AOS-USA, Inc. Process Description The present document describe, in general ways, some process

More information

accessmoney Manager ACTION PAGES

accessmoney Manager ACTION PAGES accessmoney Manager ACTION PAGES 1 accessmoney Manager Action Pages accessmoney Manager Action Pages are quick reference pages that provide information for the major components of accessmoney Manger. Click

More information

Supplier FAQ s for the isupplier Portal Version Date: May 12, 2016

Supplier FAQ s for the isupplier Portal Version Date: May 12, 2016 Supplier FAQ s for the isupplier Portal Version Date: May 12, 2016 Topics: Hardware and Software Training and Support Access and Password Notifications Purchase Orders Invoice and Payments Hardware and

More information