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

Size: px
Start display at page:

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

Transcription

1 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 is a difficult task. Often it is the responsibility of one person to ensure that everyone else on their team is working on the right things at the right times in order to keep deadlines and finish their projects on time. The purpose of Brisk is to simplify this job by creating a simple, portable, and intelligent time management application for managers and their teammates. With it being generalized enough, it s possible that Brisk could also be effective for personal use. To create Brisk, our team will synthesize the best features of other time management applications to find the strongest feature set that people tend to look for. We will then design additions to this feature set to make Brisk predictive and suggestive, allowing for the application to assist users in managing their time. Finally, we will implement the application across mobile and web. The significance of Brisk is that it will create better project time management for teams and do it in a way that is unobtrusive to the workflow of its users. 1.0 Problem Time management is not a common skill. When a group of people who are not good time managers get together to work on a project, much of their time is spent on time management tasks rather than the project tasks. While time management is very important, team members should be spending more time completing the project than managing their time. If team members do not manage their time effectively, it will result in more work and longer completion times for the project. This in turn produces more disgruntled team members, higher project costs, and less satisfied customers. Because of this, the team does not reach its full quality and production potential. While the ideal solution to this problem is to create a team of people with excellent time management skills, it is not realistic. Another possible solution is to assign one member of the team to perform all of the time management tasks for the entire team, while not working on any of the project tasks. This is a popular solution, but is not an efficient use of the time of the team.

2 2.0 Objective The objective of this project is to provide groups of people with intelligent and crossplatform project management software. Brisk will allow teams to spend less time managing their time and more time completing their projects. 3.0 Background 3.1 Related Work Basecamp, self-described as everyone s favorite project management app, is a web company started in 1999 [1]. They offer a project management web app with services such as task lists, file sharing, multi-user collaboration, and project scheduling. In 2012, Basecamp launched a new version of their app which uses Ruby on Rails for the backend. Wrike first released their project management web service in 2007 [2]. Similar to Basecamp. Wrike is a very successful company that provides services such as team collaboration and file sharing, with an emphasis on collaboration between multi-functional teams. It uses JSP as its backend and ExtJS as its frontend. Both companies have been extremely successful, having customers such as Google, Fox Sports, Ebay, Etsy, and Nike. Their success shows a definite market for solid project management software. However, both products are also complicated and tailored to specific project management paradigms, which can be limiting to smaller teams. We want Brisk to be a project management solution that anybody can use by reducing the complexity of tasks and the complexity of team management. 4.0 Design 4.1 Use Cases Use Case: Creating a Task Author: Ryan McAlister Primary Actor: Manager Goal in context: Create a new task for use in the project Preconditions: Project and user already created. User has required permissions. Trigger: User clicks New Task button. Scenario: 1. Manager: Presented with new task form 2. Manager: Enters information about the task 3. Application: Verifies all required information is present 4. Application: Adds task to the database 5. Manager: Presented with pop-up declaring the task was added successfully

3 Exceptions: 1. Manager is missing required information, Form will then highlight missing information and ask for that information to be filled it. 2. The database is unavailable. In which case an alert is given and the manager must wait for the database to become available. Priority: Medium Channel to Actor: Graphical User Interface (GUI) Usage Frequency: Weekly Secondary Actors: Database, Brisk Application Channels to secondary actors: Database: Network Brisk Application: Network Open Issues: Use Case: Add a user Author: Ryan McAlister Primary Actor: Manager Goal in Context: To add a user to the list of users. Preconditions: Manager has already been created. Manager has required permissions to add a user. Trigger: Manager clicks new user button. Scenario: Manager: Is prompted with new user form. Manager: Enters information based off of new user. Application: Verifies required information is present. Application: Adds user to database Manager: Presented with alert declaring user was added successfully. Exceptions: 1. Manager is missing required information, Form will then highlight missing information and ask for that information to be filled it. 2. The database is unavailable. In which case an alert is given and the manager must wait for the database to become available. Priority: Medium Channel to Actor: Graphical User Interface (GUI Usage Frequency: Monthly Secondary Actors: Database, Brisk Application Channels to secondary actors: Database: Network

4 Brisk Application: Network Open Issues: Use Case: Complete a Task Author: Ryan McAlister Primary Actor: Brisk Application Goal in Context: Mark task as completed Preconditions: Task has been completed. User has required permissions. Trigger: Completed button on task was clicked. Scenario: Application: Ask user if they would like to add the task to another section Application: If yes, move a copy of the task to the other section Application: Move task to archived task list on Database Application: Prompts user with an alert declaring task has been completed. Exceptions: 1. Database is unavailable. In which case an alert is given and the manager must wait for the database to become available. Priority: High Channel to Actor: Graphical User Interface (GUI) Usage Frequency: Weekly Secondary Actors: Database, User Channels to secondary actors: Database: Network User: Graphical User Interface (GUI) Open Issues: Use Case: Browse All Tasks Author: Daniel Pumford Primary Actor: User Goal in Context: View all tasks that are due today, or due in the future. Preconditions: User has tasks. User has required permissions. Trigger: User has browsed to their summary page. Scenario: User: Navigates to summary page Application: Displays all relevant tasks Exceptions:

5 1. Database is unavailable. In which case an alert is given and the manager must wait for the database to become available. 2. User has no tasks. The application should prompt the user to add some tasks. Priority: High Channel to Actor: Graphical User Interface (GUI) Usage Frequency: Daily Secondary Actors: Database, Server Channels to secondary actors: Database: Network Server: User Open Issues: 4.2 Detailed Architecture Brisk will be composed of several modules working together. Because it is web-based, there are components that will run on the client s end and on the server. Server Modules Ruby on Rails routing Responsible for processing and routing client requests. Responsible for accessing user-specific data and storing new data. Sends storage and retrieval requests to SQL database. Sends transform requests to Brisk task predictor. Uses a set of models, controllers, helpers, and views to properly display and manipulate the users and tasks. Models: Defines the data and behavior for users, tasks, projects, and teams. Task: Basic unit of Brisk. Has a goal, a set of users working on them, a set of dependencies, and other metadata. User: Basic agent of Brisk. Has login credentials, a list of tasks, and other metadata. Project: Group of tasks. Team: Group of users. Controllers: Handles the routing for the server. Connects all other components together. Helpers: Contain any methods that need to be used by controllers or views. Views: HTML templates that define how the application should be displayed to the user. Layout View: All other views inherit from a central layout. This is so that the website can easily add new pages

6 without having to re code the nav bar and other common items. Profile View: Gives the user an overview of all their current tasks. Will allow the user to jump to more detailed pages. Task View: Information about a single task. User View: Information about a single user. Project View: Information about a project. Team View: Information about a team. SQL database Holds all user, task, project, and team data. Integrates with Ruby on Rails through the Models. Figure 1: Database Schematic (Stretch Goal) Brisk task predictor Learns from task and user data with machine learning algorithms to offer predictions for future tasks. Accesses and transforms data directly from SQL database. Client Modules Desktop user web app

7 A web frontend. Uses HTML5 and CSS3 for layouts and JQuery for client-side interactivity. (Stretch Goal) Mobile user web app A mobile frontend. Is currently being accommodated with the desktop design. Figure 2. Client and server components. 4.3 Tasks - sentence on each task, tasks match schedule Milestones Feature Set Definition - 2 Weeks Deciding which features have made it into the final project description. Feature Prototype - 2 Weeks Create backend (Ruby on Rails, SQL) and frontend specifications. Design Definition - 3 Weeks Finalize the back-end and front-end code design Information Design - Riley

8 Interface Design - Riley Page wireframes - Riley Define program flow - Riley Coding templates for pages - Daniel Functional build - 4 Weeks Build a version of the project with all functional requirements met. Standalone Brisk Data Management (Skipped) Database Start Database - Ryan Relation Implementation - Ryan and Eric Design useful views - Ryan Seed some dummy data - Ryan Server Code Start Ruby on Rails - Eric User authentication - Eric Set up site structure - Eric Task dependencies - Eric View Helpers Summary Page - Daniel Today s tasks per user, by project - Eric User s projects - Eric User s collaborators - Eric Show Pages - Daniel and Riley Edit Pages - Ryan and Eric Aesthetic build - 1 Week Create a build with the aesthetic design requirements met. Layout - Riley Styling - Riley Final build - 1 Week Create system with full feature set. Deliverables

9 Report - Daniel Presentation - Daniel Continuous Documentation Keep code comments up to date with useful information. Maintain any relevant external documentation for class. Milestone assessments Take a look at our progress often to make sure we are on track with our plans. Testing Test new code and features as they are added. 4.4 Schedule Milestones Feature Set Definition: November Have meetings to find a solid overall approach to task management Feature Prototype: December Work on getting a server up and running Experiment with the Mongo database to make sure it s a good database system Design Definition: December - January Finalize the back-end and front-end code design Functional Build: January - February Code the functionality for the website Continuously test the new functionality as it is added Aesthetic Build: March Design a user-friendly and powerful interface Final Build: April Deliver the final, stable build of the website 4.5 Deliverables Code Live web build Ruby on Rails server and website SQL database Code repository on GitHub for others to use Copies of all major live build components Final Report Describes the outcome and events of the project

10 5.0 Key Personnel Riley Turben - Turben is a senior Computer Science major in the Computer Science and Computer Engineering Department at the University of Arkansas. Look around to see his resume and relevant experience. He will be working on the front end technical design and its implementation. Daniel Pumford - Pumford is a senior CS major at the University of Arkansas. Take a look at his website ( for full list of incredible accomplishments. He will likely do some of the backend systems coding, frontend systems coding, and user interface design. He plays Hearthstone. Ryan McAlister - McAlister is a senior Computer Science major in the Computer Science Engineering Department at the University of Arkansas. He has completed Software Engineering, Algorithms, and Programming Paradigms. He will be working on design. Eric Hall - Hall is a senior Computer Engineering major in the Computer Science/Computer Engineering Department at the University of Arkansas. He has completed relevant courses. He has held an Application Development internship at J.B. Hunt Transport Inc., and currently holds a Web Development internship at Center for Mission Mobilization. He will be working on frontend architecture design and implementation, as well as testing. 6.0 References [1] Basecamp, [2] Wrike,

Tabit. University of Arkansas CSCE Department Capstone I Final Proposal Fall 2014. Martin Bruckner, Brandon Foster, Nicolas Nunez, Adrian Ordorica

Tabit. University of Arkansas CSCE Department Capstone I Final Proposal Fall 2014. Martin Bruckner, Brandon Foster, Nicolas Nunez, Adrian Ordorica University of Arkansas CSCE Department Capstone I Final Proposal Fall 2014 Tabit Martin Bruckner, Brandon Foster, Nicolas Nunez, Adrian Ordorica Abstract The goal of the project is to create business management

More information

Developing Microsoft SharePoint Server 2013 Core Solutions

Developing Microsoft SharePoint Server 2013 Core Solutions Course 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions Course Details Course Outline Module 1: SharePoint as a Developer Platform This module examines different approaches that can be

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

Day-Care Environment Communication and Database

Day-Care Environment Communication and Database Day-Care Environment Communication and Database Michael Christenson, Nicole Cullen, Zach Lensing, Eric Lund Problem Statement Create an information tracking app to be used by a day care Keep track of Daily

More information

Report Designer and Report Designer Add-In Installation Guide Version 1.0

Report Designer and Report Designer Add-In Installation Guide Version 1.0 Table of Contents Report Designer and Report Designer Add-In Installation Guide Version 1.0 Table of Contents The software described in this document is protected by copyright, and may not be copied on

More information

Title: Front-end Web Design, Back-end Development, & Graphic Design Levi Gable Web Design Seattle WA

Title: Front-end Web Design, Back-end Development, & Graphic Design Levi Gable Web Design Seattle WA Page name: Home Keywords: Web, design, development, logo, freelance, graphic design, Seattle WA, WordPress, responsive, mobile-friendly, communication, friendly, professional, frontend, back-end, PHP,

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

WEB DEVELOPMENT IMMERSIVE GA.CO/WDI

WEB DEVELOPMENT IMMERSIVE GA.CO/WDI General Assembly Course Curriculum WEB DEVELOPMENT IMMERSIVE Table of Contents 3 Overview 4 Students 5 Curriculum Projects & Units 11 Frequently Asked Questions 13 Contact Information 2 Overview OVERVIEW

More information

Acunetix Web Vulnerability Scanner. Getting Started. By Acunetix Ltd.

Acunetix Web Vulnerability Scanner. Getting Started. By Acunetix Ltd. Acunetix Web Vulnerability Scanner Getting Started V8 By Acunetix Ltd. 1 Starting a Scan The Scan Wizard allows you to quickly set-up an automated scan of your website. An automated scan provides a comprehensive

More information

HTML5. Turn this page to see Quick Guide of CTTC

HTML5. Turn this page to see Quick Guide of CTTC Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies

More information

Information Technology Career Field Pathways and Course Structure

Information Technology Career Field Pathways and Course Structure Information Technology Career Field Pathways and Course Structure Courses in Information Support and Services (N0) Computer Hardware 2 145025 Computer Software 145030 Networking 2 145035 Network Operating

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

TeamViewer 9 Manual Management Console

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

More information

Software Requirement Specification for Web Based Integrated Development Environment. DEVCLOUD Web Based Integrated Development Environment.

Software Requirement Specification for Web Based Integrated Development Environment. DEVCLOUD Web Based Integrated Development Environment. Software Requirement Specification for Web Based Integrated Development Environment DEVCLOUD Web Based Integrated Development Environment TinTin Alican Güçlükol Anıl Paçacı Meriç Taze Serbay Arslanhan

More information

Esigate Module Documentation

Esigate Module Documentation PORTAL FACTORY 1.0 Esigate Module Documentation Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control

More information

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION AGENDA 1. Overview of Magento 2.0 2. Features and benefits of Magento 2.0 over Magento 1.x 3. Why should we upgrade to Magento 2.0

More information

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW About this Course This course provides SharePoint developers the information needed to implement SharePoint solutions

More information

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

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

More information

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Administration GUIDE SharePoint Server idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Getting Started - SharePoint Server idataagent Overview Deployment Configuration Decision Table

More information

VERALAB LDAP Configuration Guide

VERALAB LDAP Configuration Guide VERALAB LDAP Configuration Guide VeraLab Suite is a client-server application and has two main components: a web-based application and a client software agent. Web-based application provides access to

More information

How to Move an SAP BusinessObjects BI Platform System Database and Audit Database

How to Move an SAP BusinessObjects BI Platform System Database and Audit Database How to Move an SAP BusinessObjects BI Platform System Database and Audit Database Technology Used SAP BI Platform 4.1 (this includes SAP BusinessObjects Enterprise 4.1, SAP BusinessObjects Edge 4.1 and

More information

REQUEST FOR EXPRESSIONS OF INTEREST AFRICAN DEVELOPMENT BANK

REQUEST FOR EXPRESSIONS OF INTEREST AFRICAN DEVELOPMENT BANK REQUEST FOR EXPRESSIONS OF INTEREST AFRICAN DEVELOPMENT BANK African Development Bank AFDB Temporary Relocation (Tunis) Information management and Methods department (CIMM) PB: 323-1002 Tunis Belvedere

More information

Backing Up CNG SAFE Version 6.0

Backing Up CNG SAFE Version 6.0 Backing Up CNG SAFE Version 6.0 The CNG-Server consists of 3 components. 1. The CNG Services (Server, Full Text Search and Workflow) 2. The data file repository 3. The SQL Server Databases The three services

More information

The Nuts and Bolts of Autodesk Vault Replication Setup

The Nuts and Bolts of Autodesk Vault Replication Setup The Nuts and Bolts of Autodesk Vault Replication Setup James McMullen Autodesk, Inc PL4700-V Has your company decided to move toward a replicated Autodesk Vault software environment? Does your company

More information

How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com

How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com Contents First Time Login Instructions... 1 1) Use the Internet Explorer (IE) Web browser*... 1 2) Install the.net Framework...

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Page 1 of 9 Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: 4 days; Instructor-Led Introduction

More information

Quick Start Guide. TELUS Business Connect

Quick Start Guide. TELUS Business Connect Quick Start Guide TELUS Business Connect Let s get started This document outlines steps to help guide Administrators and users through account registration and configuration of the new TELUS Business Connect

More information

Web Mapping Application Interface Design: Best Practices and Tools. Michael Gaigg @michaelgaigg

Web Mapping Application Interface Design: Best Practices and Tools. Michael Gaigg @michaelgaigg Web Mapping Application Interface Design: Best Practices and Tools Michael Gaigg @michaelgaigg Team User Experience Designer Application Developer Human focused Research Design Front-End Back-End Tech

More information

SAS 9.1.3 Installation Instructions Windows 2003, XP, 2000, NT. SAS 9.1.3 Client Server Installation. Introduction:

SAS 9.1.3 Installation Instructions Windows 2003, XP, 2000, NT. SAS 9.1.3 Client Server Installation. Introduction: UCit Instructional and Research Computing, Software Distribution Office, 303B Zimmer Hall, Cincinnati, OH 45221-0088. Phone: (513) 556 9068 Email: Software@uc.edu SAS 9.1.3 Installation Instructions Windows

More information

White Paper: 5GL RAD Development

White Paper: 5GL RAD Development White Paper: 5GL RAD Development After 2.5 hours of training, subjects reduced their development time by 60-90% A Study By: 326 Market Street Harrisburg, PA 17101 Luis Paris, Ph.D. Associate Professor

More information

Izenda & SQL Server Reporting Services

Izenda & SQL Server Reporting Services Izenda & SQL Server Reporting Services Comparing an IT-Centric Reporting Tool and a Self-Service Embedded BI Platform vv Izenda & SQL Server Reporting Services The reporting tools that come with the relational

More information

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide Insight Video Net. LLC. CMS 2.0 Quick Installation Guide Table of Contents 1. CMS 2.0 Installation 1.1. Software Required 1.2. Create Default Directories 1.3. Create Upload User Account 1.4. Installing

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

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information

BillQuick Agent 2010 Getting Started Guide

BillQuick Agent 2010 Getting Started Guide Time Billing and Project Management Software Built With Your Industry Knowledge BillQuick Agent 2010 Getting Started Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions

DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions Summary Duration Vendor Audience 5 Days Microsoft Developer Published Level Technology 21 November 2013 300 Microsoft SharePoint

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

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools

More information

Responsive, resilient, elastic and message driven system

Responsive, resilient, elastic and message driven system Responsive, resilient, elastic and message driven system solving scalability problems of course registrations Janina Mincer-Daszkiewicz, University of Warsaw jmd@mimuw.edu.pl Dundee, 2015-06-14 Agenda

More information

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform Technical Discussion David Churchill CEO DraftPoint Inc. The information contained in this document represents the current

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

Documentum Content Distribution Services TM Administration Guide

Documentum Content Distribution Services TM Administration Guide Documentum Content Distribution Services TM Administration Guide Version 5.3 SP5 August 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introducing

More information

POINT OF SALES SYSTEM (POSS) USER MANUAL

POINT OF SALES SYSTEM (POSS) USER MANUAL Page 1 of 24 POINT OF SALES SYSTEM (POSS) USER MANUAL System Name : POSI-RAD System Release Version No. : V4.0 Total pages including this covering : 23 Page 2 of 24 Table of Contents 1 INTRODUCTION...

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Software Requirements Specification

Software Requirements Specification Software Requirements Specification Version 1.1 March 7, 2013 Prepared by Group Name: The Constructors Alex Hamstra 4506291 alexhamstra@gmail.com Jared Roesch 4826574 roeschinc@gmail.com Kyle Jorgensen

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

SQL Server Mirroring. Introduction. Setting up the databases for Mirroring

SQL Server Mirroring. Introduction. Setting up the databases for Mirroring SQL Server Mirroring The purpose of this document is to describe in detail the process of configuring Secret Server and SQL Server 2008 for a high-availability environment using Mirroring. The contents

More information

eng_pdf.indd 1 13-10-2010 09:27:30

eng_pdf.indd 1 13-10-2010 09:27:30 360 gives you control over the flow of information. 360 helps private- and public-sector customers to control, manage and share information and documents with a user interface they already know. It doesn't

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks Oracle Business Intelligence Enterprise Edition (OBIEE) Training: Working with Oracle Business Intelligence Answers Introduction to Oracle BI Answers Working with requests in Oracle BI Answers Using advanced

More information

Desktop Deployment Guide ARGUS Enterprise 10.6. 5/29/2015 ARGUS Software An Altus Group Company

Desktop Deployment Guide ARGUS Enterprise 10.6. 5/29/2015 ARGUS Software An Altus Group Company ARGUS Enterprise 10.6 5/29/2015 ARGUS Software An Altus Group Company for ARGUS Enterprise Version 10.6 5/29/2015 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite 900 Houston, Texas 77056

More information

Highly Scalable Server Resource Monitoring System for Cloud

Highly Scalable Server Resource Monitoring System for Cloud Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.644

More information

DOF e-repository User Guide

DOF e-repository User Guide DOF e-repository User Guide Using Citrix Receiver to Access DOF e-repository (Electronic Document Repository) To ensure secure and reliable access to the DOF e-repository you will need to use Citrix Receiver

More information

Two Factor Authentication (TFA; 2FA) is a security process in which two methods of authentication are used to verify who you are.

Two Factor Authentication (TFA; 2FA) is a security process in which two methods of authentication are used to verify who you are. Two Factor Authentication Two Factor Authentication (TFA; 2FA) is a security process in which two methods of authentication are used to verify who you are. For example, one method currently utilized within

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Winter 6 @salesforcedocs Last updated: October 0, 05 Copyright 000 05 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Kentico CMS 5 Developer Training Syllabus

Kentico CMS 5 Developer Training Syllabus Kentico CMS 5 Developer Training Syllabus June 2010 Page 2 Contents About this Course... 4 Overview... 4 Audience Profile... 4 At Course Completion... 4 Course Outline... 5 Module 1: Overview of Kentico

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Mobile App Activation Before you can activate the mobile app you must download it. You can have up to

More information

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform Version 1.0 January 2011 Xerox Phaser 3635MFP 2011 Xerox Corporation. XEROX and XEROX and Design are trademarks of Xerox Corporation in the United States and/or other countries. Changes are periodically

More information

ControlPoint. Advanced Installation Guide. Publication Date: January 12, 2016. Metalogix International GmbH., 2008-2016 All Rights Reserved.

ControlPoint. Advanced Installation Guide. Publication Date: January 12, 2016. Metalogix International GmbH., 2008-2016 All Rights Reserved. ControlPoint Publication Date: January 12, 2016 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this software,

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

NetWrix SQL Server Change Reporter

NetWrix SQL Server Change Reporter NetWrix SQL Server Change Reporter Version 2.2 Administrator Guide Contents NetWrix SQL Server Change Reporter Administrator Guide 1. INTRODUCTION... 3 1.1 KEY FEATURES... 3 1.2 LICENSING... 4 1.3 HOW

More information

Technical Specifications (Excerpt) TrendInfoWorld Web Site

Technical Specifications (Excerpt) TrendInfoWorld Web Site SeaState Internet Solutions www.seastatesolutions.com Technical Specifications (Excerpt) TrendInfoWorld Web Site NOTE: Wireframe mockups and screenshots included in this document are functional diagrams

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Welcome to MaxMobile. Introduction. System Requirements. MaxMobile 10.5 for Windows Mobile Pocket PC

Welcome to MaxMobile. Introduction. System Requirements. MaxMobile 10.5 for Windows Mobile Pocket PC MaxMobile 10.5 for Windows Mobile Pocket PC Welcome to MaxMobile Introduction MaxMobile 10.5 for Windows Mobile Pocket PC provides you with a way to take your customer information on the road. You can

More information

Business Application Development Platform

Business Application Development Platform Business Application Development Platform Author Copyright Last update Version Document type Sclable Business Solutions GmbH Attribution-NonCommercial-NoDerivatives 4.0 International 01/28/2014 1.0 Technical

More information

Digital Asset Management

Digital Asset Management A collaborative digital asset management system for marketing organizations that improves performance, saves time and reduces costs. MarketingPilot provides powerful digital asset management software for

More information

How to Back Up and Restore an ACT! Database Answer ID 19211

How to Back Up and Restore an ACT! Database Answer ID 19211 How to Back Up and Restore an ACT! Database Answer ID 19211 Please note: Answer ID documents referenced in this article can be located at: http://www.act.com/support/index.cfm (Knowledge base link). The

More information

TRIMIT Fashion reviewed: Tailor made out of the box?

TRIMIT Fashion reviewed: Tailor made out of the box? TRIMIT Fashion reviewed: Tailor made out of the box? Introduction TRIMIT Fashion delivers fashion specific functionalities on top of the recognized ERP (Enterprise Resource Planning) system called Dynamics

More information

User Manual for Web. Help Desk Authority 9.0

User Manual for Web. Help Desk Authority 9.0 User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

1. How to Register... 2. 2. Forgot Password... 4. 3. Login to MailTrack Webmail... 5. 4. Accessing MailTrack message Centre... 6

1. How to Register... 2. 2. Forgot Password... 4. 3. Login to MailTrack Webmail... 5. 4. Accessing MailTrack message Centre... 6 MailTrack How To Document 27 March 2014 Table of Contents 1. How to Register... 2 2. Forgot Password... 4 3. Login to MailTrack Webmail... 5 4. Accessing MailTrack message Centre... 6 5. Creating a MailTrack

More information

Instant Messenger Operator Manual

Instant Messenger Operator Manual Instant Messenger Operator Manual Introduction The Sparks Instant Messenger client not only allows for general chat services but also provides departments who offer customer service to provide an additional

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

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the

More information

MS SQL Server 2008 Express Installation Instructions (09/27/09)

MS SQL Server 2008 Express Installation Instructions (09/27/09) MS SQL Server 2008 Express Installation Instructions (09/27/09) Note This process will install software necessary for the class. It can take 90 120 minutes or more and will require restarting your computer

More information

Building Web Applications

Building Web Applications Building Web Applications Mendel Rosenblum CS142 Lecture Notes - Building Web Applications Good web applications: Design + Implementation Some Design Goals: Intuitive to use Don't need to take a course

More information

Richmond Systems. Self Service Portal

Richmond Systems. Self Service Portal Richmond Systems Self Service Portal Contents Introduction... 4 Product Overview... 4 What s New... 4 Configuring the Self Service Portal... 6 Web Admin... 6 Launching the Web Admin Application... 6 Setup

More information

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide Live Maps for System Center Operations Manager 2007 R2 v6.2.1 Installation Guide CONTENTS Contents... 2 Introduction... 4 About This Guide... 4 Supported Products... 4 Understanding Live Maps... 4 Live

More information

Configuration Information

Configuration Information This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard. Other topics covered include Email Security interface navigation,

More information

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a Net 2 NetApp Electronic Library User Guide for Net 2 Client Version 6.0a Table of Contents 1 INTRODUCTION AND KEY FEATURES... 3 SOME OF THE KEY FEATURES INCLUDE:... 3 INSTALLATION PREREQUISITES:... 3 2

More information

Document management and exchange system supporting education process

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

More information

MIGRATING DESKTOP AND ROAMING ACCESS. Migrating Desktop and Roaming Access Whitepaper

MIGRATING DESKTOP AND ROAMING ACCESS. Migrating Desktop and Roaming Access Whitepaper Migrating Desktop and Roaming Access Whitepaper Poznan Supercomputing and Networking Center Noskowskiego 12/14 61-704 Poznan, POLAND 2004, April white-paper-md-ras.doc 1/11 1 Product overview In this whitepaper

More information

Welcome to MaxMobile. Introduction. System Requirements

Welcome to MaxMobile. Introduction. System Requirements MaxMobile 10.5 for Windows Mobile Smartphone Welcome to MaxMobile Introduction MaxMobile 10.5 for Windows Mobile Smartphone provides you with a way to take your customer information on the road. You can

More information

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd.

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd. GFI LANguard 9.0 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Software Requirements Specification For Real Estate Web Site

Software Requirements Specification For Real Estate Web Site Software Requirements Specification For Real Estate Web Site Brent Cross 7 February 2011 Page 1 Table of Contents 1. Introduction...3 1.1. Purpose...3 1.2. Scope...3 1.3. Definitions, Acronyms, and Abbreviations...3

More information

Brief Description of project: This project will be an interactive Javascript. 1. What do you want to accomplish by doing this project?

Brief Description of project: This project will be an interactive Javascript. 1. What do you want to accomplish by doing this project? Date: 10/9/2013 Title: History of Web Development Brief Description of project: This project will be an interactive Javascript presentation detailing the history of web development from its early days

More information

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd.

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd. GFI LANguard 9.0 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

If you are you are using Microsoft outlook 2007, then new toolbar will be added below the Outlook menu bar,

If you are you are using Microsoft outlook 2007, then new toolbar will be added below the Outlook menu bar, Enjay SugarCRM Add-on for MS-Outlook 2010 Configuration 1. Launch MS-Outlook 2007 or 2010 2. Click on Enjay Tab shown in figure below If you are you are using Microsoft outlook 2007, then new toolbar will

More information

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

InstaFile. Complete Document management System

InstaFile. Complete Document management System InstaFile Complete Document management System Index : About InstaFile 1.1 What is InstaFile 1.2 How does it work 1.3 Where you can use InstaFile 1.4 Why only InstaFile InstaFile features and benefits Start

More information

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

More information

How To Sync With Outlook With Google Apps On Your Gmail On Your Pc Or Macintosh Outlook On Your Android Or Ipo On Your Ipo (For A Macintosh) On Your Computer Or Ipok (For An Ipo) On A

How To Sync With Outlook With Google Apps On Your Gmail On Your Pc Or Macintosh Outlook On Your Android Or Ipo On Your Ipo (For A Macintosh) On Your Computer Or Ipok (For An Ipo) On A Google Apps Sync for Microsoft Outlook Sync your MyIIT Password to Google Apps 1. Log in to the MyIIT portal. (my.iit.edu) 2. Click Content Layout and add the Google Apps Account Maintenance Channel 3.

More information

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum Republic Polytechnic School of Infocomm C308 Web Framework Module Curriculum This document addresses the content related abilities, with reference to the module. Abilities of thinking, learning, problem

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information

Microsoft Project Server Integration with SharePoint 2010

Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server 2010: brings together the business collaboration platform services of SharePoint Server 2010 with structured execution

More information

DreamFactory & Modus Create Case Study

DreamFactory & Modus Create Case Study DreamFactory & Modus Create Case Study By Michael Schwartz Modus Create April 1, 2013 Introduction DreamFactory partnered with Modus Create to port and enhance an existing address book application created

More information

Well known electronics and manufacturing company based in Manchester, UK.

Well known electronics and manufacturing company based in Manchester, UK. Case Study Customer Well known electronics and manufacturing company based in Manchester, UK. Profile The business is a member of one of the biggest electronic group based in Japan. Their organization

More information

MASTERTAG DEVELOPER GUIDE

MASTERTAG DEVELOPER GUIDE MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...

More information

EURECOM VPN SSL for students User s guide

EURECOM VPN SSL for students User s guide EURECOM VPN SSL for students User s guide Table of Contents Introduction... 2 Login process... 2 Portail main page... 2 Prerequisite... 2 RSA SecurId software token... 3 First usage of RSA SecurID token...

More information

W H IT E P A P E R. Salesforce CRM Security Audit Guide

W H IT E P A P E R. Salesforce CRM Security Audit Guide W HITEPAPER Salesforce CRM Security Audit Guide Contents Introduction...1 Background...1 Security and Compliance Related Settings...1 Password Settings... 2 Audit and Recommendation... 2 Session Settings...

More information

DiskBoss. File & Disk Manager. Version 2.0. Dec 2011. Flexense Ltd. www.flexense.com info@flexense.com. File Integrity Monitor

DiskBoss. File & Disk Manager. Version 2.0. Dec 2011. Flexense Ltd. www.flexense.com info@flexense.com. File Integrity Monitor DiskBoss File & Disk Manager File Integrity Monitor Version 2.0 Dec 2011 www.flexense.com info@flexense.com 1 Product Overview DiskBoss is an automated, rule-based file and disk manager allowing one to

More information