Requirements Specifications

Size: px
Start display at page:

Download "Requirements Specifications"

Transcription

1 Jupiter Requirements Specifications Essa Imhmed, Hitesh N. Sharma, Sultan Alharthi, Ruth Torres Castillo, Vijaya Pandey 1

2 1. As a user, I want to add user stories to the system so that I can save them. Given a user an interface that makes it possible to add a story: System should show a button that lets user add user story. The interface should show input fields that lets user add various parameters of user stories such as description, priority etc. System should show the add story dashboard. The add story dashboard must show text box to enter story. 2. As a user, I want to save user stories to the system so that I can use them later. Given a user an interface that makes it possible to save a story and that all the parameters for new user story are addede in revelant text boxes or fields: Click a save button on add story dashboard. System must show a confirmation message. Main dashboard must show the new added user stories. 3. As a user, I want to edit user stories so that I can change them. Given a user an interface that makes it possible to edit a story: Click an edit button which is available alongside a list of user story. System should show the picked user story page. After making changes, there should be a button to save the changes. System must show a confirmation message. Main dashboard must show the updated user story. 4. As a user, I want to view the list of all user stories so I can easily navigate between them. Main dashboard must show all saved user stories. 2

3 5. As a user, I want to add developers to the system so that I can link them to user stories. Given a user an interface that makes it possible to add user: Click a add user button in the interface. System must show the add user dashboard that allows user to enter information about the new user. Click a save button that allows to save it. System must show a confirmation message. Main dashboard must show the added user. 6. As a user, I want to edit user information so that I can change them. Given a user an interface that makes it possible to edit developers: Click the edit user button next to the user. System must show the edit user dashboard Click the save changes button. System must show a confirmation message. Main dashboard must show the updated developer. 7. As a user, I want to view the list of all developers so I can easily navigate between them. Main dashboard must show a list of all developers. 8. As a user, I want to link developers to stories so that work is assigned. Given a user an interface that makes it possible to link developers to story. Pick the user story you want to link to. The story page should be visisble and it must show a list of users to be added. Pick the user for this story Click an update button to update the user story. System must show a confirmation message. 3

4 9. As a user, I want to add code to each user story so that I can easily link code lines to this story. Given a user an interface that makes it possible to add code to a story: Pick a story you want to link a code to. The story page should show open and there must be a add code button that allows to select location of the code file in the system. Specify the location of the code and click a button to link it. System must show the code on the story dashboard. 10. As a user, I want to link code lines to stories so that I can easily locate them. Given a user an interface that makes it possible link code lines to story: The interface should show a dashboard that shows details of user story and code on a text box which it was previously linked with. Each code line has a select box. Select the lines of code that you want to link. Click a link button that links that code. System must show a confirmation message. Code box should show the linked lines when you reopen it. 11. As a user, I want to view user stories statistics so that I can keep track of stories progress. Given a user an interface that makes it possible to view stories statistics: Main dashboard must show a summary of progress and status of all stories. 12. As a user, I want the system to generate requirement document from user stories so that I can share/view their status based on user requirement. : Main dashboard must show a generate requirement button. An interface should allow to select user stories and specify the location to save the document and have a button to save it. The generated requirement document should be in the selected folder. 4

5 13. As a user, I want to delete user story from the system so that I can discard it. Given a user an interface that makes it possible to delete user story. The interface should show a list of user stories with a delete button. When the delete button is executed, system should ask for a confirmation message. A confirmation message should be displayed that shows that the user story is deleted. Main dashboard must not show the deleted story. 14. As a user, I want to search user story from the system so that I view it. Given a user an interface that provides a search box. User should be able to select criteria for search i.e, select a parameter on which he wants to search, such as description, priority etc. System should show a list of user stories when a user adds relevant keywords in the text box and performs search. 5

6 6 Domain Model For Jupiter

7 May 2, 2015 Testing Description for Jupiter Essa Imhmed, Hitesh N. Sharma, Sultan Alharthi, Ruth Torres Castillo, Vijaya Pandey

8 Test Plan Jupiter is a desktop application made to create user stories and manage them to create the requirements document and then link them to the code that was developed from them. The present document will describe the complete suite of artifacts that describe the test planning of the system. The Test items used for this plan were the user stories created at the beginning of this project and in order to follow the agile software development process. For each user story, some features were tested, based on acceptance criteria. According to its testing approach each user story did pass/fail the acceptance criteria, in which case a new item was documented on this testing plan. A lot of testing was based on acceptance testing in which a team member acted as an external user. For a subset of tests, we used Junit or Sikuli as described below. After making use of suspension and resumption steps for each testing case we ended with the testing results as deliverables. Moreover because there were different tasks that were performed by every other team member, there was the need to have different environmental needs, such as Junit for functional testing and Sikuli for graphical interface testing. Also different responsibilities were given in order to follow the testing plan, in which case new needs of training were required and taken into consideration for the schedule of this project. Test scripts are also a good idea to have for letting a tester test a feature, but due to time constraints in the project, we did not use test scripts, rather just rely in acceptance criteria of user stories. The next part of the document provides the description of each acceptance criteria for every user story. The part following it will describe the tools used to test each of them according to the functionality of the user story. Further, we mention about issues we encountered once we tested our system and the advantages of using a new tool such as Sikuli. Tests Performed The validation tests for Jupiter were performed to verify the completed functions of the Application according to the expectations defined by the specifications. The overall objective is to uncover situations that could negatively impact the usability and software quality. The test items used for this plan were the user stories that were created at the beginning of this project in order to follow the agile software development process, which are recorded in the Requirement Specifications document, and we have to mention that some of these user stories were merge into one test case for the a better sequence in testing. Because every other team member performed different tasks, there was the need to have different environmental needs, such as Junit for functional testing and Sikuli for graphical interface testing. 2

9 Test Items for JUnit Junit was used to test the three main functions Add, Edit and Delete a User Story into a *.csv file. A test suite was created with these three classes. The example below is a part of one of the main functions Add User Story public class testaddmethod public void testadd() { ArrayList<String> newinput = new ArrayList<String>(); newinput.add("id1"); newinput.add("subject1"); newinput.add("userrole1"); newinput.add("description1"); newinput.add("reason1"); newinput.add("acceptancecriteria1");; newinput.add("elaboration1"); newinput.add("createdby1"); newinput.add("assignedto1"); newinput.add("requirementtype1"); newinput.add("duration1"); newinput.add("status1"); newinput.add("parentuserstory1"); newinput.add("priority1"); newinput.add("type1"); UserStory test=new UserStory(newinput); List<String> result=test.adduserstory(); String index=newinput.get(0); rwfile read=new rwfile(); String ex=read.searchfor(index); //asserts that the read result is the same we input assertequals(ex, result.tostring()); } 3

10 Test Items and acceptance criteria for Sikuli testing 1. As a user, I want to create a new project so that I can have a new file that stores user stories. System must enable all the other features that include the following user stories A new file has been created on the application running folder with the name of the project. assuming the user has not created any project: Click the button Create New Project. Enter the project name. Click the Create button. Click the Save Project button. Revise that the new *.csv file is created 2. As a user, I want to open project so that I can work on it. System must enable all the features that include the following user stories US 3 - US15. The name of the opened file should be shown in the interface. assuming the user has not opened any project: Click the button Open Project. Select the.csv file to work with. Click the Open button. The options to Add, Edit, Delete, Story Hierarchy and Requirement Document are now enabled 3. As a user, I want to add user stories so that I can capture the requirements. Given a user an interface that makes it possible to add a story: System must show fields to enter story. assuming the user has already opened a project: Click the button Add User Story. Fill all the fields of the User Story. Go to test case 4 4

11 4. As a user, I want to save user stories so that I can use them later. Given a user an interface that makes it possible to save a story: System must show the new added user story. assuming the user has already fill all the fields: Click the Save button The edit/add screen closes and click the Save Project button. Revise the.csv file to see the updated user Story. 5. As a user, I want to edit user stories so that I can change them. Given a user an interface that makes it possible to edit a story: System should allow user to pick user story to edit. System must show fields to change story. System must show the updated user story. assuming the user has already opened a project and picked one user story: Click the button Edit Story. Modify the desire fields of the User Story. Go to test case 4 6. As a user, I want to delete user story from the system so that I can discard it. Given a user an interface that makes it possible to delete user story. System should allow user to pick user story to delete. System should ask to confirm the deletion. System must show a confirmation message. Deleted user story must not be in the system anymore. assuming the user has already opened a project and picked one user story: Click the button Delete Story. The grid containing the User Stories is updated and the deleted User Story is deleted from the list. Click the Save Project button. Revise the.csv file to see the changes. 5

12 7. As a user, I want to view all the user stories so I can easily navigate between them. System must show all saved user stories. assuming the user has opened or created a new project: The grid displays all the Story Users that belong to that project. Click the User Story to select it Revise the whole information of that User Story in the frame below it. 8. As a user, I want to view all users so that the User Stories can be assigned. System must show all the users on the upper left corner assuming the user has opened or created a new project: Go to test case 7 Revise the whole information of the Users in the frame of the upper left. 9. As a user, I want to add code to each user story so that I can easily link code lines to this story. Given a user an interface that makes it possible to add code to a story: The story page should allow adding a code from a location in the system. System must display the code on the story dashboard. assuming the user has already opened a project and picked one user story: Click the button Edit Story. Click the button Open Code. Select a *.java file to read and display. Click the button Open. Go to test case 10 6

13 10. As a user, I want to link code lines to stories so that I can easily locate them. Given a user an interface that makes it possible link code lines to story: Each code line can be selected. Code box should show the linked lines when you reopen it. assuming the user has already opened a project, picked one user story and open a *.java file to add code lines linkage: The *.java file should be displayed as lines of codes. Select the lines that will be linked to that User Story Click the button Link. Verify the new link in the dropdown list Go to test case 4 Verify the code lines added on the *.csv file 11. As a user, I want the system to generate requirement document from user stories so that I can share/view their status based on user requirement. Given a user an interface that makes it possible to generate requirement: The generated requirement document should be in the selected folder after generating it. assuming the user has already opened a project: Click the button Requirement Document. Select the options to display on the Requirement Document. Select the Sorted by criteria to display on the Requirement Document. Click the button Generate Document. Go to test case 4. Revise that the new *.pdf file is created. Verify the selected options on the *.pdf file. 12. As a user, I want to view all user stories in hierarchical form so that I can capture all the relationship between them. Given a user an interface that makes it possible to display user stories tree: User story tree should be displayed on the dashboard. assuming the user has already opened a project: Click the button Story Hierarchy. Select the arrow next to All Stories. Select the arrow next to Parent Story to display down the tree the corresponding children Select the arrow next to Parent Story to un expand the tree 7

14 13. As a user, I want to view an alert message so that I know when all options are disable because no project is opened. Given a user an interface that makes it possible to display alert messages: System should display Error message. assuming the user has not opened or created any project: Click the button Add User Story. A pop up message should be displayed. Close the pop up window Click the button Story Hierarchy. A pop up message should be displayed. Close the pop up window Click the button Requirement Document. A pop up message should be displayed. Close the pop up window 14. As a user, I want to view an alert message so that I know when all options are disable because no user story has been selected. Given a user an interface that makes it possible to display alert messages: System should display Error message. assuming the user has not opened or created any project: Click the button Edit Story. A pop up message should be displayed. Close the pop up window Click the button Delete Story. A pop up message should be displayed. Close the pop up window. 8

15 Sikuli Testing Sikuli is an open-source research project originally started at the User Interface Design Group at MIT. It automates anything you see on the screen. It uses image recognition to identify and control GUI components. It is useful when there is no easy access to a GUI's internal or source code. Below is a sample Sikuli Test Script of Adding a User Story. 9

16 10

17 A sample of Sikuli Testing of Adding user story. 11

18 12

19 Our experience with Sikuli Like mentioned above, we used Sikuli for testing all the user stories, and it helped us a lot in test and maintain user friendliness of the software. Using Sikuli testing we could verify if our application was user friendly, and easy to navigate and use. With this tool we were able to build step by step procedures for testing each of our main user stories. Further, user stories which were very difficult to test using unit testing were easily tested using Sikuli e.g, Viewing User stories in hierarchical tree form, generating and viewing Requirements Document in as pdf document, linking User story to code lines. The main difficulties when Sikuli testing was being performed arose when there were two or more similar pieces of UI (e.g., two "Accept" buttons, one on an error and one on a standard configuration screen), and also when something on the UI was changing among different versions. Hence, in order to have the Sikuli scripts running correctly, the interfaces should be stable otherwise Sikuli script needed to be redone. Hence, it is advisable to use Sikuli at the end or when you are sure that the interfaces will not change anymore. Further, this might also be a way to know that user interface has changed over time. Testing System We tested our application in the following systems: Operating System Windows 8, 7 Mac OS X 10 Device type Laptop Laptop 13

20

21

22

23

24

25

26

27

Agile Implementation The Anaplan Way Dashboard Input Guides

Agile Implementation The Anaplan Way Dashboard Input Guides Agile Implementation The Anaplan Way Dashboard Input Guides Last Updated: December 06 Setup. Fill out project details in the Project Information section. **The start and end dates impact the filter throughout,

More information

Chronodat Help Desk (Lite)

Chronodat Help Desk (Lite) Chronodat Help Desk (Lite) (User Manual) By CHRONODAT, LLC For further information, visit us at www.chronodat.com For support, contact us at support@chronodat.com Version 2.0.0.0 Created: 10-03-2018 1

More information

Chronodat Help Desk. (User Manual) By CHRONODAT, LLC

Chronodat Help Desk. (User Manual) By CHRONODAT, LLC Chronodat Help Desk (User Manual) By CHRONODAT, LLC For further information, visit us at www.chronodat.com For support, contact us at support@chronodat.com Version 2.0.0.0 Created: 09-24-2018 1 P a g e

More information

ReqView Business Needs

ReqView Business Needs ReqView Business Needs ID Description As a(n) I Want So that Acceptance Criteria 45 45_1_reqview_icon.png (ReqView User_Stories_Example_files/45_1_reqview_icon.png) 1 Introduction 2 46 49 1.1 Purpose This

More information

Chronodat Issue Tracker Add-in. User Manual CHRONODAT, LLC. February 15, 2017 Version P age

Chronodat Issue Tracker Add-in. User Manual CHRONODAT, LLC. February 15, 2017 Version P age Chronodat Issue Tracker Add-in User Manual CHRONODAT, LLC February 15, 2017 Version 2.0 1 P age Introduction The introduction section of the document describes the scope and objective of Office 365 Chronodat

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

For More Information. Institutional Effectiveness Pyramid Analytics (BI Office) Help. Topic: Pyramid Analytics (BI Office) Dashboard Tutorial

For More Information. Institutional Effectiveness Pyramid Analytics (BI Office) Help. Topic: Pyramid Analytics (BI Office) Dashboard Tutorial Institutional Effectiveness Pyramid Analytics (BI Office) Help Topic: Pyramid Analytics (BI Office) Dashboard Tutorial Dashboards are a way to display performance indicators, key performance indicators

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Centroid 2.0 User Guide. Version 1.0

Centroid 2.0 User Guide. Version 1.0 Centroid 2.0 User Guide Version 1.0 Contents 1 Introduction... 3 2 Centroid Configuration Manager... 4 3 Using Centroid... 7 3.1 Creating a Script Project... 7 3.2 Creating an Application... 8 3.3 Creating

More information

13 th Annual International Software Testing Conference Paper on

13 th Annual International Software Testing Conference Paper on 1 13 th Annual International Software Testing Conference Paper on SMART- a Comprehensive Framework for Test Automation of Web & Mobile Applications Using Open Source Technologies Author: Anmol Bagga QA

More information

Table of Contents. 2 P a g e A I M Q U I C K R E F E R E N C E G U I D E

Table of Contents. 2 P a g e A I M Q U I C K R E F E R E N C E G U I D E May 2017 Table of Contents Introduction... 3 Accessing the My ARKIVE Portal... 3 The Dashboard... 4 Accessing AIM... 4 Searching/Filtering Inventory... 5 Adding New Inventory. 9 Work Orders... 11 Adding

More information

ReqView Simple Yet Powerful Software and System Requirements Management.

ReqView Simple Yet Powerful Software and System Requirements Management. ReqView Simple Yet Powerful Software and System Requirements Management reqview@eccam.com Structured Requirements Definition Requirement Unique ID Rich formatted description Requirements Document Custom

More information

Specifications Document

Specifications Document Contents Specifications Document 1 The XMMS2 Client Project 2 1.1 Project Description................................ 2 1.2 Target Audience.................................. 2 1.3 Goals........................................

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

UHarvest Slingshot Reports Introduction

UHarvest Slingshot Reports Introduction UHarvest Slingshot Reports Introduction UHarvest grain cart data can be saved to a Raven Slingshot account. Use Slingshot to review field reports, edit data, merge multiple job files into one report, and

More information

USER GUIDE DATACOM JIRA ISSUES MANAGEMENT TUESDAY, 22 APRIL Version 1.1.0

USER GUIDE DATACOM JIRA ISSUES MANAGEMENT TUESDAY, 22 APRIL Version 1.1.0 USER GUIDE DATACOM JIRA ISSUES MANAGEMENT TUESDAY, 22 APRIL 2014 Version 1.1.0 Contents 1 INTRODUCTION... 3 2 KEY CONCEPTS TO UNDERSTAND... 4 2.1 Assigning vs. Progressing an Issue... 5 2.2 Workflow...

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

CollabNet TeamForge 5.3 Evaluator s Guide

CollabNet TeamForge 5.3 Evaluator s Guide CollabNet TeamForge 5.3 Evaluator s Guide Thank you for evaluating CollabNet TeamForge 5.3. This Evaluator s Guide will help you experience the key features of CollabNet TeamForge by walking you through

More information

Soonr Updates to Services, Web UI and Agents October 2013

Soonr Updates to Services, Web UI and Agents October 2013 This document covers powerful new features being introduced for Soonr Workplace during October 2013. These improvements include the following new capabilities: Granular Share Permissions Updates to Soonr

More information

Client Portal Guide. Your Dashboard

Client Portal Guide. Your Dashboard Client Portal Guide Login/Dashboard...pg. Upload Files...pg. Mail Tracking...pg. Mail Tracking - Tracking Multiple Parts...pg. 4 Mail Tracking - Individual Mail...pg. 5 FranklinForward ACS...pg. 6 FranklinForward

More information

Learning objectives. Documenting Analysis and Test. Why Produce Quality Documentation? Major categories of documents

Learning objectives. Documenting Analysis and Test. Why Produce Quality Documentation? Major categories of documents Learning objectives Documenting Analysis and Test Understand the purposes and importance of documentation Identify some key quality documents and their relations Understand the structure and content of

More information

Page 3. News Alerts StreamLink Software. All rights reserved.

Page 3. News Alerts StreamLink Software. All rights reserved. Member User Guide 2016 StreamLink Software. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language,

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

migration from iq.suite Store to contentaccess

migration from iq.suite Store to contentaccess Email migration from iq.suite Store to contentaccess MAY 2, 2016 TECH-ARROW a.s. KAZANSKÁ 5, 821 06 BRATISLAVA, SLOVAKIA All Rights Reserved Table of Contents 1 Introduction... 2 2 Source and target environment...

More information

Atlas 2.0. Atlas Help

Atlas 2.0. Atlas Help Atlas 2.0 Atlas Help Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 1998-2009 Borland Software Corporation

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Getting Started Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: September 2017 Software Release Date: September

More information

Mind Q Systems Private Limited

Mind Q Systems Private Limited Software Testing Tools Introduction Introduction to software Testing Software Development Process Project Vs Product Objectives of Testing Testing Principals Software Development Life Cycle SDLC SDLC Models

More information

Using TRIZ for Minimizing Cursor Movements in GUI

Using TRIZ for Minimizing Cursor Movements in GUI From the SelectedWorks of Umakant Mishra October, 2008 Using TRIZ for Minimizing Cursor Movements in GUI Umakant Mishra Available at: https://works.bepress.com/umakant_mishra/69/ Using TRIZ for Minimizing

More information

STQA Mini Project No. 1

STQA Mini Project No. 1 STQA Mini Project No. 1 R (2) C (4) V (2) T (2) Total (10) Dated Sign 1.1 Title Mini-Project 1: Create a small application by selecting relevant system environment/ platform and programming languages.

More information

ES CONTENT MANAGEMENT - EVER TEAM

ES CONTENT MANAGEMENT - EVER TEAM ES CONTENT MANAGEMENT - EVER TEAM USER GUIDE Document Title Author ES Content Management - User Guide EVER TEAM Date 20/09/2010 Validated by EVER TEAM Date 20/09/2010 Version 9.4.0.0 Status Final TABLE

More information

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide BE Share Microsoft Office SharePoint Server 2010 Basic Training Guide Site Contributor Table of Contents Table of Contents Connecting From Home... 2 Introduction to BE Share Sites... 3 Navigating SharePoint

More information

Citizen Self Service Portal Guide to Online Permits

Citizen Self Service Portal Guide to Online Permits Citizen Self Service Portal Guide to Online Permits The City has transitioned to a new online permit system. Citizen Self Service (CSS) is a web portal offering contractors a convenient way of conducting

More information

Online Access: Login to The Media Audit

Online Access: Login to The Media Audit Online Access: Login to The Media Audit Using The Media Audit online has never been easier! Simply open your web browser and follow the quick instructions below. app.themediaaudit.com Open your favorite

More information

This document explains how to use the report generation tool, Argos Web Viewer, to create reports using Banner data for Typical users.

This document explains how to use the report generation tool, Argos Web Viewer, to create reports using Banner data for Typical users. ARGOS Web Viewer This document explains how to use the report generation tool, Argos Web Viewer, to create reports using Banner data for Typical users. What is Argos? Argos stands for Ad hoc Report Generation

More information

OPS Webportal User Guide - Reporting v.2.1

OPS Webportal User Guide - Reporting v.2.1 OPS Webportal User Guide - Reporting v.2.1 Contents OPS Reporting... 3 OPS Web Portal... 4 Running Reports... 5 Report Navigation... 5 Group (Client) Selection... 6 Reporting Period... 7 Downloading the

More information

HPE Project and Portfolio Management Center

HPE Project and Portfolio Management Center HPE Project and Portfolio Management Center Software Version: 9.41 Getting Started Go to HELP CENTER ONLINE http://ppm-help.saas.hpe.com Document Release Date: March 2017 Software Release Date: March 2017

More information

Testing with Soap UI. Tomaš Maconko

Testing with Soap UI. Tomaš Maconko Testing with Soap UI Tomaš Maconko 1 Content What is Soap UI? What features does the Soap UI have? Usage in project context Pros and cons Soap UI alternatives 2 What is Soap UI? Open Source Testing Tool

More information

Argos Creating Labels with Word

Argos Creating Labels with Word Argos Creating Labels with Word This document explains how create mailing labels using Argos. For information about Argos, refer to the document, Argos for Typical Users. There are two (2) basic steps

More information

Export Metadata. Learning Objectives. In this Job Aid, you will learn how to export metadata: 1 For a location 3 2 From search results 7

Export Metadata. Learning Objectives. In this Job Aid, you will learn how to export metadata: 1 For a location 3 2 From search results 7 Export Metadata Learning Objectives In this Job Aid, you will learn how to export metadata: 1 For a location 3 2 From search results 7 Last updated: July 8, 2013 Overview You can export content metadata

More information

Dashboards and Portlets Instructions for the creation of End User Custom Dashboards and Portlets in the PPM system.

Dashboards and Portlets Instructions for the creation of End User Custom Dashboards and Portlets in the PPM system. Objective: To provide guidance to the PPM End User Community in the continued enhancement and engagement of new stakeholders to improve the End User Experience and the gathering and reporting of Actionable

More information

CITRIX NAVIGATION & ACCESSING myhr

CITRIX NAVIGATION & ACCESSING myhr INTRODUCTION This guide details how to log into Citrix and navigate to the myhr Home page. If you have any difficulty throughout this process please contact ICT (extension 43000). After 20 minutes of inactivity,

More information

GT-SCCM Onboard/Environment Overview

GT-SCCM Onboard/Environment Overview GT-SCCM Onboard/Environment Overview Page 1 Server Information: Name: GT-SCCM.ad.gatech.edu IP: 130.207.162.14 Site Code for SCCM: GTS SCCM Version: 1802 Firewall Information: If you are planning on using

More information

The UBot Studio SCRIPT REFERENCE. The Qualifier Functions

The UBot Studio SCRIPT REFERENCE. The Qualifier Functions The UBot Studio SCRIPT REFERENCE The Qualifier Functions This section of Functions has not changed much from the earlier v3.5 qualifier functions, however, there are a couple of notable changes that will

More information

Mayhem Make a little Mayhem in your world.

Mayhem Make a little Mayhem in your world. Mayhem Make a little Mayhem in your world. Team Group Manager - Eli White Documentation - Meaghan Kjelland Design - Jabili Kaza & Jen Smith Testing - Kyle Zemek Problem and Solution Overview Most people

More information

LeakDAS Version 4 The Complete Guide

LeakDAS Version 4 The Complete Guide LeakDAS Version 4 The Complete Guide SECTION 4 LEAKDAS MOBILE Second Edition - 2014 Copyright InspectionLogic 2 Table of Contents CONNECTING LEAKDAS MOBILE TO AN ANALYZER VIA BLUETOOTH... 3 Bluetooth Devices...

More information

IBM InfoSphere Master Data Management Version 11 Release 5. IBM InfoSphere MDM Inspector User's Guide IBM SC

IBM InfoSphere Master Data Management Version 11 Release 5. IBM InfoSphere MDM Inspector User's Guide IBM SC IBM InfoSphere Master Data Management Version 11 Release 5 IBM InfoSphere MDM Inspector User's Guide IBM SC27-6720-01 IBM InfoSphere Master Data Management Version 11 Release 5 IBM InfoSphere MDM Inspector

More information

My Site. Introduction

My Site. Introduction My Site Introduction My Site is a component of the portal that is available to all NB educators. It is a personalized site that provides all users with the following features: A place to save and share

More information

Installing VPN client by Jupiter Networks:

Installing VPN client by Jupiter Networks: Installing VPN client by Jupiter Networks: 1. Open Firefox. The icon is likely on your desktop. If you are using internet explorer, much of the steps will be the same, but the way that Internet Explorer

More information

Broadband internet connection ipad, Android tablet, Windows Surface RT or Pro, Chromebook Safari, Google Chrome, Microsoft Edge, Mozilla Firefox

Broadband internet connection ipad, Android tablet, Windows Surface RT or Pro, Chromebook Safari, Google Chrome, Microsoft Edge, Mozilla Firefox TABLE OF CONTENTS OVERVIEW... 3 SYSTEM REQUIREMENTS... 3 INSTALLATION... 4 LOGGING INTO THE SOFTWARE... 4 STUDENT PASSWORDS... 5 TEACHER PASSWORDS... 5 GETTING YOUR STUDENTS STARTED... 6 OPEN LOGIN...

More information

Argos. Basic Training

Argos. Basic Training Argos Basic Training Student Information Systems Team 2-4-2019 Contents Overview... 2 Sign in... 2 Navigation... 3 Action Area... 3 Navigation Area... 4 Explorer View... 4 Shortcuts View... 6 Help... 9

More information

ESET Remote Administrator 6. Version 6.0 Product Details

ESET Remote Administrator 6. Version 6.0 Product Details ESET Remote Administrator 6 Version 6.0 Product Details ESET Remote Administrator 6.0 is a successor to ESET Remote Administrator V5.x, however represents a major step forward, completely new generation

More information

Records and Enrollment Participants Guide

Records and Enrollment Participants Guide IBM Cognos Analytics Welcome to Cognos Records and Enrollment Training! Today s objectives include: Understand University policies on data security including FERPA Understand which package/report to use

More information

Records and Enrollment Participants Guide

Records and Enrollment Participants Guide IBM Cognos Analytics Welcome to Cognos Records and Enrollment Training! Today s objectives include: Gain a Basic Understanding of Cognos Understand University policies on data security including FERPA

More information

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 support@magestore.com sales@magestore.com Phone: +1-606-657-0768 STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION 3 Outstanding Features...3

More information

Silk Central Release Notes

Silk Central Release Notes Silk Central 16.5 Release Notes Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 2004-2009 Borland Software

More information

Creating and Managing Your Events/Meetings

Creating and Managing Your Events/Meetings Creating and Managing Your Events/Meetings Viewing the Calendar 1) Go to www.slocoe.org and scroll all the way to the bottom of the screen. In the green section, under SLOCOE QUICK LINKS, click on Calendars.

More information

Scorebook Navigator. Stage 1 Independent Review User Manual Version

Scorebook Navigator. Stage 1 Independent Review User Manual Version Scorebook Navigator Stage 1 Independent Review User Manual Version 9.8.2010 TABLE OF CONTENTS Getting Started... 1 Browser Requirements... 1 Logging in... 2 Setting Up Your Account... 2 Find Your Scorebook...

More information

ValuePRO Tutorial Internet Explorer 8 Configuration

ValuePRO Tutorial Internet Explorer 8 Configuration ValuePRO Tutorial Internet Explorer 8 Configuration Table of Contents Contents 1. Adding ValuePRO to Trusted Sites... 1 1. Overview... 1 2. Changes Required... 1 2. Enabling Cross Site Scripting... 3 1.

More information

SLG for School Site Administrators. Applicable to Onwards

SLG for School Site Administrators. Applicable to Onwards SLG for School Site Administrators Applicable to 7.136 Onwards Revision History Version Change Description Date 7.136-1.0 Initial Release 22/10/10 7.136 1.1 Cosmetic Changes made to Deleting Online Reports.

More information

ServiceWise/CustomerWise 10.1

ServiceWise/CustomerWise 10.1 Page 1 of 35 ServiceWise/CustomerWise 10.1 Highlights Widescreen and multi monitor support Unified incident level attachments New HTML5 ProjectPlan with resource management Doubled number of available

More information

Animation Generation Project Plan

Animation Generation Project Plan Animation Generation Project Plan Sarah Kushner Neil Castelino Angel Delgado Carlo Rosati Chris Khedoo April 3, 2016 1 Contents 1 Revision History 3 2 Background 4 2.1 Features................................

More information

SilverStripe - Website Administrators

SilverStripe - Website Administrators SilverStripe - Website Administrators Managing Roles and Permissions In this section: Understand roles and security groups Learn how to set up a role Learn how to edit a role Learn how to create a security

More information

Software Requirements Specification. for WAVED. Version 3.0. Prepared By:

Software Requirements Specification. for WAVED. Version 3.0. Prepared By: Software Requirements Specification for WAVED Version 3.0 Prepared By: Sean Bluestein, Kristian Calhoun, Keith Horrocks, Steven Nguyen, Hannah Pinkos Advisor: Kurt Schmidt Stakeholder: Climate Central

More information

START GUIDE CDMNEXT CEIC Data. All rights reserved.

START GUIDE CDMNEXT CEIC Data. All rights reserved. 1 START GUIDE CDMNEXT 2016 CEIC Data. All rights reserved. 2 TABLE OF CONTENTS 1. Product Overview... 3 2. Starting CDMNext... 3 2.1 Login... 3 2.2 Prerequisites... 4 2.3 Landing Page... 5 3. Creating

More information

Modern Requirements4TFS 2018 Release Notes

Modern Requirements4TFS 2018 Release Notes Modern Requirements4TFS 2018 Release Notes Modern Requirements 3/7/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES... 4 2. ENHANCEMENT...

More information

Issues in Information Systems Volume 15, Issue II, pp , 2014

Issues in Information Systems Volume 15, Issue II, pp , 2014 DETERMINING USER ACTIONS IN OS X BASED ON QUICKLOOK THUMBNAIL CACHE DATABASE ENTRIES Sara Newcomer, Lockheed Martin, sara.r.newcomer@lmco.com ABSTRACT The purpose of this study was to document the structure

More information

OMICS Publishing Group Online Submission System

OMICS Publishing Group Online Submission System OMICS Publishing Group Online Submission System Editorial Manager - Author Tutorial Editorial Manager is an online manuscript submission, review and tracking systems for quality and quick review processing.

More information

START GUIDE CDMNEXT CEIC Data. All rights reserved.

START GUIDE CDMNEXT CEIC Data. All rights reserved. 1 START GUIDE CDMNEXT 2017 CEIC Data. All rights reserved. 2 TABLE OF CONTENTS 1. Product Overview... 3 2. Starting CDMNext... 3 2.1 Login... 3 2.2 Prerequisites... 4 2.3 Landing Page... 5 3. Creating

More information

START GUIDE CDMNext V.3.0

START GUIDE CDMNext V.3.0 1 START GUIDE CDMNext V.3.0 2018 CEIC Data. All rights reserved. 2 TABLE OF CONTENTS 1. PRODUCT OVERVIEW... 3 2. Starting CDMNEXT... 3 2.1 Login... 3 2.2 Prerequisites... 4 2.3 Landing Page... 4 3. creating

More information

PAC Introduction. Page 1 of 6

PAC Introduction. Page 1 of 6 PAC Introduction Page 1 of 6 Introduction to Democracy Direct PAC Democracy Direct is a comprehensive tool for conducting your organization's PAC efforts. This section covers the basics of Democracy Direct

More information

Contacts Quick Start using Outlook Web Application (OWA)

Contacts Quick Start using Outlook Web Application (OWA) Some basics: 1. E-mail and calendar are completely integrated. A meeting invitation will generate an e-mail that appears in your inbox and displays on your calendar. 2. Right clicking (Control click on

More information

COMMUNITIES USER MANUAL. Satori Team

COMMUNITIES USER MANUAL. Satori Team COMMUNITIES USER MANUAL Satori Team Table of Contents Communities... 2 1. Introduction... 4 2. Roles and privileges.... 5 3. Process flow.... 6 4. Description... 8 a) Community page.... 9 b) Creating community

More information

Desktop & Laptop Edition

Desktop & Laptop Edition Desktop & Laptop Edition USER MANUAL For Mac OS X Copyright Notice & Proprietary Information Redstor Limited, 2016. All rights reserved. Trademarks - Mac, Leopard, Snow Leopard, Lion and Mountain Lion

More information

Class 1 Introduction to Selenium, Software Test Life Cycle.

Class 1 Introduction to Selenium, Software Test Life Cycle. Class 1 Introduction to Selenium, Software Test Life Cycle. I) Introduction to Selenium 1) What is Selenium? 2) History of the Selenium Project 3) Selenium Components / Selenium s Tool Suite 4) Platforms

More information

ATTENDANCE/LOCATION FUNDING TRACKING TIP SHEET

ATTENDANCE/LOCATION FUNDING TRACKING TIP SHEET Attendance Operational Days per Year and Monthly Attendance can be entered through the Attendance functionality in the Early Learning Network (ELN) for PA Pre-K Counts, Head Start and Keystone STARS functionality

More information

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 De La Salle University Information Technology Center Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 WEB DESIGNER / ADMINISTRATOR User s Guide 2 Table Of Contents I. What is Microsoft

More information

Test Plan. KSU Student Portal. Version 2.0. Submitted in partial fulfillment of the requirements of the degree of MSE

Test Plan. KSU Student Portal. Version 2.0. Submitted in partial fulfillment of the requirements of the degree of MSE Test Plan KSU Student Portal Version 2.0 Submitted in partial fulfillment of the requirements of the degree of MSE Javier Ramos Rodríguez CIS 895 MSE Project Kansas State University Table of Contents 1.

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

7 Tips for Raising The Quality Bar With Visual Studio 2012

7 Tips for Raising The Quality Bar With Visual Studio 2012 Visit: www.intertech.com/blog 7 Tips for Raising The Quality Bar With Visual Studio 2012 Tip 1: Exploratory Testing I have to admit that when I first found out that enhanced exploratory testing was the

More information

User s Quick Start Guide

User s Quick Start Guide i User s Quick Start Guide Table of Contents Introduction... 4 Browser Requirements... 4 Key Terms... 5 Global Navigation Bar... 5 Dock... 5 Guided Workflows... 5 Stack... 6 Activity... 6 Logging Into

More information

Risk Priority Index - Introductory User Guide

Risk Priority Index - Introductory User Guide Risk Priority Index - Introductory User Guide Getting Guidance or Help... 2 Accessing the Risk Priority Index (RPI) - Fire Risk Assessment Database... 3 Secure Login... 4 Navigation... 5 Using Filters...

More information

TRAINING GUIDE. Web App End User Training

TRAINING GUIDE. Web App End User Training TRAINING GUIDE Web App End User Training Web Application End-User Training In this booklet, we will introduce you to the Lucity Web application. The Web system allows you to utilize customized views, forms,

More information

1 A simplified view onto the documents and data stored on Business Collaborator

1 A simplified view onto the documents and data stored on Business Collaborator HTML5 Interface User Guide 15 December 2015 Version 1.0 BC-27919001 This user guide is for the HTML5 interface in BC 6.4. 1 Introduction The HTML5 interface is Business Collaborator s next generation user

More information

Scorebook Navigator. Stage 1 Independent Review User Manual Version

Scorebook Navigator. Stage 1 Independent Review User Manual Version Scorebook Navigator Stage 1 Independent Review User Manual Version 11.2013 TABLE OF CONTENTS Getting Started... 1 Browser Requirements... 1 Scorebook Navigator Browser Compatability... 1 Logging in...

More information

To access BuckIQ, you must first be granted access. Send requests for permission to

To access BuckIQ, you must first be granted access. Send requests for permission to BuckIQ User s Guide Job Aid What is BuckIQ? Several years ago, Oracle took a look at the state of the Business Intelligence industry in terms of the different processes and applications that were required

More information

Infinity Management Guide

Infinity Management Guide Infinity Management Guide 1. What is Infinity Management? Infinity Management is a deployment tool offered by Heimdal Security that will provide you the ability to deploy software within your organization

More information

Localizing Service Catalog

Localizing Service Catalog This chapter contains the following topics:, page 1 Overview Cisco Prime Service Catalog is often deployed in a multi national corporation where you want the services to be available to users who have

More information

IBM InfoSphere MDM Inspector User's Guide

IBM InfoSphere MDM Inspector User's Guide IBM InfoSphere Master Data Management Version 11 Release 0 IBM InfoSphere MDM Inspector User's Guide GI13-2653-00 IBM InfoSphere Master Data Management Version 11 Release 0 IBM InfoSphere MDM Inspector

More information

Reporter Tutorial: Intermediate

Reporter Tutorial: Intermediate Reporter Tutorial: Intermediate Refer to the following sections for guidance on using these features of the Reporter: Lesson 1 Data Relationships in Reports Lesson 2 Create Tutorial Training Report Lesson

More information

Estuary Model MatLab Compiler Runtime for PCs

Estuary Model MatLab Compiler Runtime for PCs Estuary Model MatLab Compiler Runtime for PCs 1. Start by downloading the 2 required files to the Desktop: a. Mat Lab Compiler Runtime installer b. Estuary Program 2. Click the actual MatLab Compiler Runtime

More information

Jack s Coal Fired Pizza

Jack s Coal Fired Pizza Jack s Coal Fired Pizza WORDPRESS MANUAL TABLE OF CONTENTS Login... 3 Editing Existing Pages... 4 Adding New Pages... 7 Editing/Adding Text... 8 Creating a Link... 9 Linking to a PDF... 10 Making a Link

More information

Switch What s New in Switch New features. Fixes and improvements. Date: March 22, 2018 What s New In Switch 2018

Switch What s New in Switch New features. Fixes and improvements. Date: March 22, 2018 What s New In Switch 2018 Date: March 22, 2018 What s New In Switch 2018 Enfocus BVBA Kortrijksesteenweg 1095 9051 Gent Belgium +32 (0)9 216 98 01 info@enfocus.com Switch 2018 What s New in Switch 2018. This document lists all

More information

Visual Basic Scripting

Visual Basic Scripting Visual Basic Scripting VBScript stands for Visual Basic Scripting that forms a subset of Visual Basic for Applications (VBA). VBA is a product of Microsoft which is included NOT only in other Microsoft

More information

AFFILIATE FAQ: CNN NEWSOURCE UPGRADED VIDEO INTERFACE Updated July 7, 2015

AFFILIATE FAQ: CNN NEWSOURCE UPGRADED VIDEO INTERFACE Updated July 7, 2015 AFFILIATE FAQ: CNN NEWSOURCE UPGRADED VIDEO INTERFACE Updated July 7, 2015 The Big Picture Q: What is this about? *Updated* On July 11 th 2015, CNN Newsource will debut a new video experience. Clients

More information

CSCIE-275. Guide for Chief Programmers

CSCIE-275. Guide for Chief Programmers CSCIE-275 Guide for Chief Programmers Serguei Khramtchenko Apr 2006 1 1. Preface... 3 2. Design walkthrough meeting... 4 2.1 Choosing features for an iteration... 4 2.2 Preparing design for walkthrough

More information

IBM Initiate Inspector Version 10 Release 0. User's Guide GI

IBM Initiate Inspector Version 10 Release 0. User's Guide GI IBM Initiate Inspector Version 10 Release 0 User's Guide GI13-2604-00 IBM Initiate Inspector Version 10 Release 0 User's Guide GI13-2604-00 Note Before using this information and the product that it supports,

More information

The Web Service Sample

The Web Service Sample The Web Service Sample Catapulse Pacitic Bank The Rational Unified Process is a roadmap for engineering a piece of software. It is flexible and scalable enough to be applied to projects of varying sizes.

More information

Vela Web User Guide Vela Systems, Inc. All rights reserved.

Vela Web User Guide Vela Systems, Inc. All rights reserved. The Vela Systems Web application is designed to enable the administration, management, and reporting of the Vela Field Management Suite, as well as give project teams the ability to collaborate on issues,

More information

Startup Guide. Version 2.3.7

Startup Guide. Version 2.3.7 Startup Guide Version 2.3.7 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

WorkFlow: Provisioning Your Account

WorkFlow: Provisioning Your Account WorkFlow: Provisioning Your Account Section 1 Account Settings Any changes you make to the Media Content Account Contact Information will also update in the imonitor module (if subscribed) and the Reporting

More information