Chapter 9 + 10 Hypercase.

Slides:



Advertisements
Similar presentations
 Definition: An HRIS, the abbreviation for Human Resources Information System, is a system that lets you keep track of all your employees and information.
Advertisements

© Pearson Prentice Hall 2009
Transforming the World of Employee Benefits For Our Policyowners
Word Lesson 8 Increasing Efficiency Using Word
Internet Applications Update Internet Rechartering August 26, 2009.
Hillyard – Vektr CQI ™ Continuous Quality Improvement Hillyard Inc. has partnered with Nuvek LLC, to gain hosting capabilities for a new and innovative.
Delivering Collaborative Solutions that Promote Learning Asotin-Anatone School District Helpdesk A web-based application to submit and track all technical.
1 Human Resource Management Systems Chapter 6: HRMS Vendors Joseph Y-W. Deng
Welcome to CMPE003 Personal Computer Concepts: Hardware and Software Winter 2003 UC Santa Cruz Instructor: Guy Cox.
Chapter 1 Assuming the Role of the Systems Analyst
Achieving Business Results through Literacy and Education: A local snapshot! Meg Poag, Executive Director PO Box Austin, Texas (512)
1. Failure is when users do not feel they get what they paid for. 2. Failure is when the overall organization fails to adopt the solution.
1 SYS366 Week 1 - Lecture 2 How Businesses Work. 2 Today How Businesses Work What is a System Types of Systems The Role of the Systems Analyst The Programmer/Analyst.
Feb. 2, 2004CS WPI1 CS 509 Design of Software Systems Lecture #3 Monday, Feb. 2, 2004.
Irwin/McGraw-Hill Copyright © 2004 The McGraw-Hill Companies. All Rights reserved Whitten Bentley DittmanSYSTEMS ANALYSIS AND DESIGN METHODS6th Edition.
Chapter 1 Assuming the Role of the Systems Analyst
Chapter 2: IS Building Blocks Objectives
Management Information Systems: Classic Models and New Approaches Chapter 17.
Introduction to Systems Analysis and Design
Be An Effective Manager
Project Management on SharePoint with BrightWork.
Montgomery Parks, M-NCPPC Volunteer Services Office  Log Your Hours Online  View & Edit Your Volunteer Profile Hi and thanks for volunteering with Montgomery.
Bina Nusantara 2 C H A P T E R INFORMATION SYSTEM BUILDING BLOCKS.
Share Document Management Records Management Logic-driven Workflow Auditing and compliance Relevant Search Knowledge and Expertise discovery Blogs and.
BeechTek – Computer/Server/Wireless/Datacenter Hosted Business Management Software Solutions Web Hosting + Domain Search and Registration Printer Repair.
This presentation is the property of Paradigm Information Systems It is confidential to the intended recipient for the purpose of evaluating FMS Any other.
CHAPTER 1 Introduction. Definition of an organization: A group of people working together in a structured and coordinated fashion to achieve a set of.
Time & Expense Forms MRC Consulting. Project Goals Provide an automated web based Time & Expense reporting system for MRC Consulting and its clients.
11.1 © 2007 by Prentice Hall 11 Chapter Building Information Systems.
Chapter 10  2000 by Prentice Hall Information Systems for Managerial Decision Making Uma Gupta Introduction to Information Systems.
Copyright © 2004 The McGraw-Hill Companies. All Rights reserved Whitten Bentley DittmanSYSTEMS ANALYSIS AND DESIGN METHODS6th Edition Irwin/McGraw-Hill.
2131 Structured System Analysis and Design By Germaine Cheung Hong Kong Computer Institute Lecture 2 (Chapter 2) Information System Building Blocks.
TEAM Basic TotalElectrostatic ManagementAwareness&
Chapter 10 Information Systems Analysis and Design
Using Information Technology Pertemuan 12 Chapter 11 Information Systems.
Using Information Technology Chapter 11 Information Systems.
1-1 System Development Process System development process – a set of activities, methods, best practices, deliverables, and automated tools that stakeholders.
Copyright © 2004 The McGraw-Hill Companies. All Rights reserved Whitten Bentley DittmanSYSTEMS ANALYSIS AND DESIGN METHODS6th Edition Irwin/McGraw-Hill.
Reviewing the Eight-Step SWIS Process Florida’s Positive Behavior Support Project University of South Florida.
Mtivity Client Support System Quick start guide. Mtivity Client Support System We are very pleased to announce the launch of a new Client Support System.
McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 2 Information System Building Blocks.
2-1 A Federation of Information Systems. 2-2 Information System Applications.
Lecture 11 Introduction to Information Systems Lecture 12 Objectives  Describe an information system and explain its components  Describe the characteristics.
BTS330: Business Requirements Analysis using OO Lecture 6: Systems.
Compliance Suite™ Compliance Suite™ is Physical Plant’s software program for regulatory compliance and training tracking.
It’s as Easy as… 1.Login 2.Submit Your Order 3.Track your Files Progress Let Us Show You How! 4. Print Published Documents Innovative technology that gives.
Lesson 9: Types of information system. Introduction  An MIS is a decision support system in which the form of input query and response is predetermined.
McGraw-Hill/Irwin © The McGraw-Hill Companies, All Rights Reserved CHAPTER 15 Creating Collaborative Partnerships.
JADE: The Freedom of information Tracking System Cayman Islands Government Freedom of Information Unit / Computer Services Department.
EMPLOYEE MANAGEMENT SCHEDULING SYSTEM Rockstar Solutions.
1 Using Information Technology Chapter 11 Information Systems.
WELCOME TO SITIATA. Time Card Calculator If you want to best calculating software then visit in sitiata. We are providing a best Time Card Calculator.
Page: 1 Enw / Name. Page: 2 Businesses use ICT to communicate with their employees in many different ways in particular to employees which work in remote.
Ron Johnson, CFA Litman/Gregory Asset Management.
 1- Definition  2- CRM  3- Analytics  4- Tools.
Chapter 1 Assuming the Role of the Systems Analyst.
1 Chapter 3 Information Systems in Business Functions.
The Components of Information Systems
An Introduction to Attendance on Demand
Be An Effective Manager
Using MIS 2e Chapter 11 Information Systems Management
Service Provider Best Practices
The Components of Information Systems
© Pearson Prentice Hall 2009
Executives & Management
Management Information Systems: Classic Models and New Approaches
Rollout Guide Day 1 to 10 Day 11 to 20 Day 21 to 30 Day 31 to 40
Information System Building Blocks
Presentation transcript:

Chapter 9 + 10 Hypercase

Hypercase Assume you will create the specifications for an automated project tracking system for the Training employees. One of the system’s functions will be to allow project members to update or add names, addresses, and phone/fax numbers of new clients. Using structured English, write a procedure for carrying out the process of entering a new client name, address, and phone/fax number.

Structured English Structured English: Process 1.0, Update Existing User Note: The procedure asks for the client name to determine the client type. Client type is equal to update.   BEGIN CASE IF the Client Type is a equal to a Pre-existing Client  THEN Update Client = Pre-existing Client    GET Client Name THEN PRINT to client name field    GET Address THEN PRINT to address field    GET Phone Number THEN PRINT to phone number field    GET Fax Number THEN PRINT to fax number field  IF Update Type is to Validate Client information       THEN PRINT client information to user  ELSE IF Update Type is to Update Client information      THEN Update Client = User Input      UPDATE client name field to Client Name      UPDATE address field to Address      UPDATE phone number field to Phone Number      UPDATE fax number field to Fax Number    END IF END IF END CASE

Structured English: Process 2.0, New User Note: The procedure asks for the client name to determine the client type. Client type is equal to new user.    BEGIN CASE  IF the Client Type is not equal to Pre-existing Client   THEN New Client  = User Input    WRITE client name field to Client Name    WRITE address field to Address    WRITE phone number field to Phone Number    WRITE fax number field to Fax Number  END IF END CASE [Edit this page]  [Delete this page] Version:   [  \/]

Screenshot of the first page

When you add a new record

Demo Here’s the demo! Let’s check it out! http://mre.drewbeta.com/

Chapter 10.1 A decision support system is an interactive information system that supports the decision-making process through the presentation of information designed specifically for the decision maker’s problem-solving approach and application needs. It does not make a decision for the user. A decision support system will fit in MRE is their Training and Management Systems Department.

Continued… Who would benefit from the dss system? The employees that may benefit from the decision support system are Daniel Hill(Engineering Systems Division), Warren F. Torrey(President & Chief Executive Officer), and Snowden Evans (Director of Training and Management systems) because internally, their goals are to promote innovative ideas in all of their departments. The engineering and medical consulting industries are very competitive. Technology and methods are changing rapidly. They need to be on top of it.

Continued… Three semi-structured, multi-criteria decisions that require computer and human judgment and are being made in the Management Systems and Training Unit are inter-department communication within Engineering Systems, client support, and the reporting of hours worked on a specific task in a timely fashion in the training department. One area that would benefit from the dss is the client support area. Clients want to know the status of a project, the decisions that were implemented in created the project and what the outcome is going to be and presented. All this information should be available for a client as soon as the training unit submits all the requests of the client sand logs in into their system.

Chapter 10.2 A computer equipment inventory fro the Training and Management Systems Unit, describing all the systems you find.

System Alternatives System Alternatives AtTask AtTask is a full-featured project management solution that focuses on  combining team collaboration and project management. It offers the following  modules out of the box:  Team collaboration  Issue tracking system  Scheduling  Project portfolio management  Resource management  Document Management  Web based 

Continued… Clarizen  Clarizen is a full-featured project management solution that focuses on user  centric project management. It also includes many features for running  day-to-day operations within the company. It offers the following modules  out of the box:  Team collaboration  Issue tracking system  Scheduling  Project portfolio management  Resource management  Document Management  Web based 

Continued… FogBugz  FogBugz is a project management system that focuses on industries that are  technical in nature. It offers a SaaS model, as well as a license to host  your own installation. Due to the number of employees at MRE, the cost is  between $999/month for a hosted solution, or $9,999 one time fee for MRE to  host their own. It offers the following modules out of the box:  Team collaboration  Issue tracking system  Scheduling  Resource management  Web based