Systems Analysis and Design in a Changing World, Fourth Edition

Slides:



Advertisements
Similar presentations
1 9 Moving to Design Lecture Analysis Objectives to Design Objectives Figure 9-2.
Advertisements

Chapter 10: The Traditional Approach to Design
Systems Analysis and Design in a Changing World, Fifth Edition
Describing Process Specifications and Structured Decisions Systems Analysis and Design, 7e Kendall & Kendall 9 © 2008 Pearson Prentice Hall.
Using Data Flow Diagrams
Chapter 7 Structuring System Process Requirements
Using Dataflow Diagrams
1 Software Design Introduction  The chapter will address the following questions:  How do you factor a program into manageable program modules that can.
Chapter 7 Structuring System Process Requirements
Traditional Approach to Design
Chapter 10 The Traditional Approach to Design
Chapter 9: The Traditional Approach to Design Chapter 10 Systems Analysis and Design in a Changing World, 3 rd Edition.
Chapter 4 Enterprise Modeling.
What is Software Design?  Introduction  Software design consists of two components, modular design and packaging.  Modular design is the decomposition.
Copyright Irwin/McGraw-Hill Software Design Prepared by Kevin C. Dittman for Systems Analysis & Design Methods 4ed by J. L. Whitten & L. D. Bentley.
Software Design Deriving a solution which satisfies software requirements.
Chapter 4.
Systems Analysis and Design 9th Edition
© Copyright 2011 John Wiley & Sons, Inc.
Using Dataflow Diagrams
Chapter 7 Using Data Flow Diagrams
Chapter 9 Using Data Flow Diagrams
Chapter 7 Using Data Flow Diagrams
Systems Analysis and Design in a Changing World, 6th Edition
L ECTURE 9 – PROCESS MODELLING PART 1 Data Flow Diagrams for Process Modelling Multi-level Data Flow Diagrams Logical Vs Physical DFDs Steps to Construct.
Chapter 4.
Structure Charts Agenda: Use of Structure Charts Symbols How to create.
Chapter 7 Structuring System Process Requirements
6 Systems Analysis and Design in a Changing World, Fourth Edition.
Chapter 7: The Object-Oriented Approach to Requirements
Traditional Approach to Requirements Data Flow Diagram (DFD)
Chapter 6: The Traditional Approach to Requirements
System Analysis Overview Document functional requirements by creating models Two concepts help identify functional requirements in the traditional approach.
Systems Analysis and Design in a Changing World, Fifth Edition
Chapter 6 The Traditional Approach to Requirements
System Implementation System Implementation - Mr. Ahmad Al-Ghoul System Analysis and Design.
The Design Discipline.
Systems Analysis and Design in a Changing World, Fifth Edition
Data and Process Modeling
Systems Analysis and Design in a Changing World, Fifth Edition
Chapter 9 Moving to Design. The Structured Approach To Designing The Application Architecture Module-an identifiable component of a computer program that.
Chapter 7 Structuring System Process Requirements
Chapter 7 Structuring System Process Requirements
Chapter 7 Using Data Flow Diagrams
Software Design Designing the overall structure (architecture) of a software system Designing small pieces of computation Designing non-automated processes.
Chapter 9 Moving to Design
10 ITK261 The traditional approach to design Reading: Chapter 10 Oct 9, 11.
10 The traditional approach to design Hisham Alkhawar.
Systems Analysis and Design in a Changing World, 3rd Edition
6 Systems Analysis and Design in a Changing World, Fifth Edition.
Systems analysis and design, 6th edition Dennis, wixom, and roth
System Implementation
SYSTEMS ANALYSIS AND DESIGN TOOLS DATA FLOW DIAGRAMS.
1 6 Systems Analysis and Design in a Changing World, 2 nd Edition, Satzinger, Jackson, & Burd Chapter 6 The Traditional Approach to Requirements.
1 ITEC 2010 Chapter 9 – Design The Structure Chart Structure chart –A hierarchical diagram showing the relationships between the modules of a.
Systems Analysis and Design in a Changing World, 6th Edition
CCSB223/SAD/CHAPTER131 Chapter 13 Designing the System Internals.
CHAPTER 5 1 DATA AND PROCESS ANALYSIS. Chapter Objectives Describe data and process modeling concepts and tools, including data flow diagrams, a data.
Chapter 7 Structuring System Process Requirements Modern Systems Analysis and Design Fourth Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich.
Systems Analysis and Design 8th Edition
Systems Design.  Application Design  User Interface Design  Database Design.
6 Systems Analysis and Design in a Changing World, Fourth Edition.
System Development And Analysis. MOVING FROM LOGICAL TO PHYSICAL PROCESS MODELS Analysis phase – focus on logical processes and data flows Design phase.
© 2005 by Prentice Hall Chapter 7 Structuring System Process Requirements Modern Systems Analysis and Design Fourth Edition Jeffrey A. Hoffer Joey F. George.
1 7 Systems Analysis and Design in a Changing World, 2 nd Edition, Satzinger, Jackson, & Burd Chapter 7 The Object-Oriented Approach to Requirements.
Structure Charts. Graphical representation of the logic of the program, the decisions made, where they are made, the alternative paths, the data stores,
7-1 Chapter 7 Structuring System Process Requirements Modern Systems Analysis and Design Fourth Edition.
Chapter 6 The Traditional Approach to Requirements.
Structure Charts Agenda: Use of Structure Charts Symbols How to create.
Software Design Designing the overall structure (architecture) of a software system Designing small pieces of computation Designing non-automated processes.
Presentation transcript:

Systems Analysis and Design in a Changing World, Fourth Edition

Learning Objectives Describe the steps involved in the traditional approach to designing the application architecture Develop a system flowchart Develop a structure chart using transaction analysis and transform analysis Write pseudocode for structured modules Explain how to use three-layer design with the traditional approach Systems Analysis and Design in a Changing World, 4th Edition

Overview Traditional approach to designing software Overview of structured models, model development process, related terminology How data flow diagrams are annotated with automation boundary information How analysis phase models are transformed into design models using system flowcharts, structure charts, and module pseudocode Integration into other design phase activities Applying approach to a three-layer architecture Systems Analysis and Design in a Changing World, 4th Edition

The Structured Approach to Designing the Application Architecture Consists of the application software programs Designed in conjunction with database and user interface. Module: Is small section of program code that carries out a single function. Hierarchy of modules ( main or boss , control and leaf) Computer Program: Set of modules that are compiled into a single executable entity System flow chart: diagram describes the overall flow of control between computer in a system

The Structured Approach to Designing the Application Architecture (Cont.) Design internal logic of individual modules (pseudocode) Pseudocode: structured-programming –like statements that describe the logic of the module. Analysts use top-down approach ( Data flow diagrams and documentations). DFDs with automation boundaries ( Divides the computerized portions of the system from the manual portions). System flowcharts, structure charts, pseudocode Systems Analysis and Design in a Changing World, 4th Edition

Structured Design Models Systems Analysis and Design in a Changing World, 4th Edition

The Automation System Boundary Partitions data flow diagram processes into manual processes and automated systems Processes can be inside ( online or batch) or outside boundary (manual process). Data flows can be inside and outside of boundary Data flows that cross system boundary represent inputs and outputs of system ( user interfaces). Data flows that cross boundaries between programs represent program-to-program communication Systems Analysis and Design in a Changing World, 4th Edition

DFD with Automation System Boundary (Figure 10-2) Systems Analysis and Design in a Changing World, 4th Edition

The System Flowchart Representation of various computer programs, files, databases, and associated manual processes that make up complete system Frequently constructed during analysis activities Graphically describes organization of subsystems into automated and manual components Can show type of transaction processing system Batch ( produce daily transaction file - process and update file). Real-time ( transaction entered—DMS`s updated) Systems Analysis and Design in a Changing World, 4th Edition

The System Flowchart (Cont.) Many business systems today have both real-time and batch components. Credit card: purchases at least verified in real time and monthly account statements and customer payments typically are processed in batches. System flow chart is used to describe the overall organization of this type of systems and show the relationship between the real-time components and the batch processing. Systems Analysis and Design in a Changing World, 4th Edition

Common System Flowchart Symbols Systems Analysis and Design in a Changing World, 4th Edition

Sample System Flowchart for Payroll System (Figure 10-4) Systems Analysis and Design in a Changing World, 4th Edition

System Flowchart for RMO (Figure 10-5) Systems Analysis and Design in a Changing World, 4th Edition

The Structure Chart A hierarchal diagram showing the relationships between the modules of a computer program. Describes functions and subfunctions of each part of system Higher-level module: are control modules that control the flow of execution. Lower- level module: are “worker-bee” modules and contain the program logic to actually perform the functions. Systems Analysis and Design in a Changing World, 4th Edition

The Structure Chart (Cont.) Program call: occurs when one module invokes a lower-level module to perform a needed service. Data couples: the individual data items that are passed between modules in a program call. Simple and direct organization Each module performs a specific function Each layer in a program performs specific activities Chart is tree-like with root module and branches Systems Analysis and Design in a Changing World, 4th Edition

A Simple Structure Chart for the Calculate Pay Amounts Module Systems Analysis and Design in a Changing World, 4th Edition

Structure Chart Symbols Systems Analysis and Design in a Changing World, 4th Edition

Structure Chart Symbols (Cont.) Part A: the rectangle represents a module. Part B: the rectangle with the double bars represents module that is used in several places ( optional). Part C: How data are passed between modules. Arrow with the open circle ( data couple). Arrow with the darkened circle (control couple flag): is purely internal information that is used between modules to indicate some result (eg. Record passing and validation test) Systems Analysis and Design in a Changing World, 4th Edition

Structure Chart Symbols (Cont.) Part E: shows the notation used to indicate iteration through several modules. Part F: shows conditional calling of low- level modules( the program calls modules only when certain conditions exist. Systems Analysis and Design in a Changing World, 4th Edition

Structure Chart for Entire Payroll Program Systems Analysis and Design in a Changing World, 4th Edition

Developing a Structure Chart Transaction analysis Uses system flow chart and event table inputs Upper-level modules developed first Identifies each transaction supported by program Transform analysis Uses DFD fragments for inputs Computer program “transforms” inputs into outputs Charts have input, calculate, and output subtrees Systems Analysis and Design in a Changing World, 4th Edition

Event-partitioned DFD for the Order-Entry Subsystem (Figure 10-9) Systems Analysis and Design in a Changing World, 4th Edition

High-Level Structure Chart for the Order-Entry Subsystem After Transaction Analysis Systems Analysis and Design in a Changing World, 4th Edition

Steps to Create a Structure Chart from a DFD Fragment Determine primary information flow Main stream of data transformed from some input form to output form Find process that represents most fundamental change from input to output Redraw DFD with inputs to left and outputs to right – central transform process goes in middle Generate first draft of structure chart based on redrawn data flow Systems Analysis and Design in a Changing World, 4th Edition

The Create New Order DFD Fragment Systems Analysis and Design in a Changing World, 4th Edition

Decomposed DFD for Create New Order Systems Analysis and Design in a Changing World, 4th Edition

Rearranged Create New Order DFD Systems Analysis and Design in a Changing World, 4th Edition

First Draft of the Structure Chart for Create New Order (Figure 10-14) Systems Analysis and Design in a Changing World, 4th Edition

Steps to Create a Structure Chart from a DFD Fragment (continued) Add other modules Get input data via user-interface screens Read from and write to data storage Write output data or reports Add logic from structured English or decision tables Make final refinements to structure chart based on quality control concepts Systems Analysis and Design in a Changing World, 4th Edition

The Structure Chart for the Create New Order Program (Figure 10-15) Systems Analysis and Design in a Changing World, 4th Edition

Combination of Structure Charts: Transaction and Transform Analysis (Figure 10-16) Systems Analysis and Design in a Changing World, 4th Edition

Evaluating the Quality of a Structure Chart Module coupling Measure of how module is connected to other modules in program Goal is to be loosely coupled Module cohesion Measure of internal strength of module Module performs one defined task Goal is to be highly cohesive Systems Analysis and Design in a Changing World, 4th Edition

Examples of Module Cohesion Systems Analysis and Design in a Changing World, 4th Edition

Module Algorithm Design—Pseudocode Describes internal logic of software modules Variation of structured English that is closer to programming code Syntax should mirror development language Three types of control statements used in structured programming Sequence – sequence of executable statements Decision – if-then-else logic Iteration – do-until or do-while Systems Analysis and Design in a Changing World, 4th Edition

Module Algorithm Design—Pseudocode (Cont.) A simple example of the logic of the payroll system. Payroll program DoUntil No more time cards Call Enter time cards Call Calculate amount Call output payroll End Until Systems Analysis and Design in a Changing World, 4th Edition

Integrating Structured Application Design with Other Design Tasks Structure chart must be modified or enhanced to integrate design of user interface, database and network. Are additional modules needed? Does the pseudocode in modules need modification? Are additional data couples needed to pass data? Structure charts and system flowcharts must correspond to planned network architecture Required protocols, capacity, and security

Three-Layer Design Three-layer architecture View layer, business logic layer, and data layer Structure charts and system flowcharts describe design decisions and software structuring Employs multiple programs for user interface, business logic, and data access modules Modules in different layers communicate over real-time links using well-defined protocols Systems Analysis and Design in a Changing World, 4th Edition

System Flowchart Showing Three-Layer Architecture for Customer Order Systems Analysis and Design in a Changing World, 4th Edition

Structure Chart Showing Three-Layer Architecture for Create New Order (Figure 10-20) Systems Analysis and Design in a Changing World, 4th Edition

Summary For traditional structured approach to systems design, primary input is data flow diagram DFD is enhanced by adding system boundary Designer describes processes within each DFD boundary using one or more structure charts Structure charts developed using Transaction analysis – multiple transaction types Transform analysis – single transaction from input to output Systems Analysis and Design in a Changing World, 4th Edition

Summary (continued) Structure charts may be based on three-layer architecture Modules will be clearly identified by layer Structure chart may be decomposed if layers execute on multiple systems Structured design may also include System flowcharts to show data movement Module pseudocode to describe internal logic of structure chart module Systems Analysis and Design in a Changing World, 4th Edition