SlideShare a Scribd company logo
1 of 45
Download to read offline
Systems Analysis and Design
9th Edition
Chapter 5
Data and Process Modeling
Chapter Objectives
• Describe data and process modeling concepts
and tools, including data flow diagrams, a data
dictionary, and process descriptions
• Describe the symbols used in data flow
diagrams and explain the rules for their use
• Draw data flow diagrams in a sequence, from
general to specific
• Explain how to level and balance a set of data
flow diagrams
2
Chapter Objectives
• Describe how a data dictionary is used and
what it contains
• Use process description tools, including
structured English, decision tables, and
decision trees
• Describe the relationship between logical and
physical models
3
Introduction
• In Chapters 5 & 6, you will develop a logical
model of the proposed system and document
the system requirements
– Logical model shows what the system must do
– Physical model describes how the system will be
constructed
4
Overview of Data and Process
Modeling Tools
• Systems analysts use many graphical
techniques to describe an information system
• A data flow diagram (DFD) uses various
symbols to show how the system transforms
input data into useful information
5
Data Flow Diagrams
• A data flow diagram
(DFD) shows how data
moves through an
information system but
does not show program
logic or processing steps
• A set of DFDs provides a
logical model that
shows what the system
does, not how it does it
6
Data Flow Diagrams
• DFD Symbols
7
Data Flow Diagrams
• DFD Symbols
– Process symbol
• Receives input data and produces output that has a
different content, form, or both
• Contain the business logic, also called business rules
• Referred to as a black box
8
Data Flow Diagrams
• DFD Symbols
– Data flow symbol
• Represents one or
more data items
• The symbol for a data
flow is a line with a
single or double
arrowhead
• Spontaneous
generation
• Black hole
• Gray hole
9
Data Flow Diagrams
• DFD Symbols
– Data store symbol
• Represent data that
the system stores
• The physical
characteristics of a
data store are
unimportant because
you are concerned
only with a logical
model
10
Data Flow Diagrams
• DFD Symbols
– Entity Symbol
• Name of the entity
appears inside the
symbol
• Terminators
• Source
• Sink
11
Creating a Set of DFDs
• Create a graphical model of the information
system based on your fact-finding results
• First, you will review a set of guidelines for
drawing DFDs. Then you will learn how to
apply these guidelines and create a set of
DFDs using a three-step process
12
Creating a Set of DFDs
• Guidelines for Drawing DFDs
– Draw the context diagram so that it fits on one
page
– Use the name of the information system as the
process name in the context diagram
– Use unique names within each set of symbols
13
Creating a Set of DFDs
• Guidelines for Drawing DFDs
– Do not cross lines
– Provide a unique name and reference number for
each process
– Obtain as much user input and feedback as
possible
14
Creating a Set of DFDs
• Step 1: Draw a Context Diagram
15
Creating a Set of DFDs
• Step 2: Draw a Diagram 0 DFD
16
Creating a Set of DFDs
• Step 2: Draw a Diagram 0 DFD
– If same data flows in both directions, you can use
a double-headed arrow
– Diagram 0 is an exploded view of process 0
– Parent diagram
– Child diagram
– Functional primitive
17
Creating a Set of DFDs
• Step 3: Draw the Lower-
Level Diagrams
– Must use leveling and
balancing techniques
– Leveling examples
• Uses a series of
increasingly detailed DFDs
to describe an
information system
• Exploding, partitioning, or
decomposing
18
Creating a Set of DFDs
• Step 3: Draw the Lower-
Level Diagrams
– Balancing Examples
• Ensures that the input
and output data flows of
the parent DFD are
maintained on the child
DFD
19
Data Dictionary
• A data dictionary, or data repository, is a
central storehouse of information about the
system’s data
• An analyst uses the data dictionary to
collect, document, and organize specific facts
about the system
• Also defines and describes all data elements
and meaningful combinations of data
elements
20
Data Dictionary
• A data element, also called a data item or
field, is the smallest piece of data that has
meaning
• Data elements are combined into records, also
called data structures
• A record is a meaningful combination of
related data elements that is included in a
data flow or retained in a data store
21
Data Dictionary
• Using CASE Tools for Documentation
– The more complex the system, the more difficult it
is to maintain full and accurate documentation
– Modern CASE tools simplify the task
– A CASE repository ensures data consistency
– You will learn more about CASE tools in Part 2 of
the Systems Analyst’s Toolkit
22
Data Dictionary
• Documenting the Data
Elements
– You must document
every data element in
the data dictionary
– The objective is the
same: to provide
clear, comprehensive
information about the
data and processes that
make up the system
23
Data Dictionary
• Documenting the Data Elements
– The following attributes usually are recorded and
described
• Data element name and label
• Alias
• Type and length
• Default value
• Acceptable values - Domain and validity rules
24
Data Dictionary
• Documenting the Data Elements
– The following attributes usually are recorded and
described
• Source
• Security
• Responsible user(s)
• Description and comments
25
Data Dictionary
• Documenting the Data Flows
– The typical attributes are as follows
• Data flow name or label
• Description
• Alternate name(s)
• Origin
• Destination
• Record
• Volume and frequency
26
Data Dictionary
• Documenting the Data Stores
– Typical characteristics of a data store are
• Data store name or label
• Description
• Alternate name(s)
• Attributes
• Volume and frequency
27
Data Dictionary
• Documenting the Processes
– Typical characteristics of a process
• Process name or label
• Description
• Process number
• Process description
28
Data Dictionary
• Documenting the Entities
– Typical characteristics of an entity include
• Entity name
• Description
• Alternate name(s)
• Input data flows
• Output data flows
29
Data Dictionary
• Documenting the Records
– Typical characteristics of a record include
• Record or data structure name
• Definition or description
• Alternate name(s)
• Attributes
30
Data Dictionary
• Data Dictionary Reports
– Many valuable reports
• An alphabetized list of all data elements by name
• A report describing each data element and indicating
the user or department that is responsible for data
entry, updating, or deletion
• A report of all data flows and data stores that use a
particular data element
• Detailed reports showing all characteristics of data
elements, records, data flows, processes, or any other
selected item stored in the data dictionary
31
Process Description Tools
• A process description documents the details
of a functional primitive, which represents a
specific set of processing steps and business
logic
• It should be noted that this chapter deals with
structured analysis, but the process
description tools also can be used in object-
oriented development, which is described in
Chapter 6
32
Process Description Tools
• Modular Design
– Based on combinations of three logical
structures, sometimes called control
structures, which serve as building blocks for the
process
• Sequence
• Selection
• Iteration - looping
33
Process Description Tools
• Structured English
– Must conform to the following rules
• Use only the three building blocks of
sequence, selection, and iteration
• Use indentation for readability
• Use a limited vocabulary, including standard terms used
in the data dictionary and specific words that describe
the processing rules
34
Process Description Tools
• Structured English
– Might look familiar to programming students
because it resembles pseudocode
– The primary purpose of structured English is to
describe the underlying business logic
35
Process Description Tools
• Decision Tables
– Shows a logical structure, with all possible
combinations of conditions and resulting actions
– It is important to consider every possible outcome
to ensure that you have overlooked nothing
36
Process Description Tools
• Decision Tables
– The number of rules doubles each time you add a
condition
– Can have more than two possible outcomes
– Often are the best way to describe a complex set
of conditions
37
Process Description Tools
• Decision Trees
38
Logical Versus Physical Models
• While structured analysis tools are used to
develop a logical model for a new information
system, such tools also can be used to develop
physical models of an information system
• A physical model shows how the system’s
requirements are implemented
39
Logical Versus Physical Models
• Sequence of Models
– Many systems analysts create a physical model of
the current system and then develop a logical
model of the current system before tackling a
logical model of the new system
– Performing that extra step allows them to
understand the current system better
40
Logical Versus Physical Models
• Four-Model Approach
– Develop a physical model of the current system, a
logical model of the current system, a logical
model of the new system, and a physical model of
the new system
– The only disadvantage of the four-model approach
is the added time and cost
41
Chapter Summary
• During data and process modeling, a systems
analyst develops graphical models to show how
the system transforms data into useful
information
• The end product of data and process modeling is
a logical model that will support business
operations and meet user needs
• Data and process modeling involves three main
tools: data flow diagrams, a data dictionary, and
process descriptions
42
Chapter Summary
• Data flow diagrams (DFDs) graphically show
the movement and transformation of data in
the information system
• DFDs use four symbols
• A set of DFDs is like a pyramid with the
context diagram at the top
43
Chapter Summary
• The data dictionary is the central
documentation tool for structured analysis
• Each functional primitive process is
documented using structured English, decision
tables, and decision trees
• Structured analysis tools can be used to
develop a logical model during one systems
analysis phase, and a physical model during
the systems design phase
44
Chapter Summary
• Chapter 5 complete
45

More Related Content

What's hot

14.project online eamination system
14.project online eamination system14.project online eamination system
14.project online eamination systemVivek Mehta
 
EAV Sytem- Magento EAV Model
EAV Sytem- Magento EAV ModelEAV Sytem- Magento EAV Model
EAV Sytem- Magento EAV ModelKhoa Truong Dinh
 
School Management System 3.0(User Guide)
School Management System 3.0(User Guide)School Management System 3.0(User Guide)
School Management System 3.0(User Guide)RizwanSMS
 
online leave management system
online leave management systemonline leave management system
online leave management systemgalaxykutti
 
11.project online library management system
11.project online library management system11.project online library management system
11.project online library management systemmonika ahalawat
 
Make your school smarter with advance school management system
Make your school smarter with advance school management systemMake your school smarter with advance school management system
Make your school smarter with advance school management systemAkshar School Solutions
 
EducationHub- Remote Education Website. Final defense presentation slide for ...
EducationHub- Remote Education Website. Final defense presentation slide for ...EducationHub- Remote Education Website. Final defense presentation slide for ...
EducationHub- Remote Education Website. Final defense presentation slide for ...REZAUL KARIM REFATH
 
Business Requirement Specification
Business Requirement SpecificationBusiness Requirement Specification
Business Requirement Specificationsuhasreddy1
 
School Management System
School Management SystemSchool Management System
School Management SystemHATIM Bhagat
 
Alumni portal ppt for projects
Alumni portal ppt for projectsAlumni portal ppt for projects
Alumni portal ppt for projectsShanker Goud
 
Integrating Telegram Bots with Ruby on Rails
Integrating Telegram Bots with Ruby on RailsIntegrating Telegram Bots with Ruby on Rails
Integrating Telegram Bots with Ruby on RailsChris Downey
 
PATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM projectPATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM projectLaud Randy Amofah
 
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)IJCSEA Journal
 
The Ultimate Website Development Roadmap
The Ultimate Website Development RoadmapThe Ultimate Website Development Roadmap
The Ultimate Website Development RoadmapAdina Zaiontz
 
School management system
School management systemSchool management system
School management systemdeva491
 

What's hot (20)

14.project online eamination system
14.project online eamination system14.project online eamination system
14.project online eamination system
 
Onlineshopping
OnlineshoppingOnlineshopping
Onlineshopping
 
EAV Sytem- Magento EAV Model
EAV Sytem- Magento EAV ModelEAV Sytem- Magento EAV Model
EAV Sytem- Magento EAV Model
 
School Management System 3.0(User Guide)
School Management System 3.0(User Guide)School Management System 3.0(User Guide)
School Management System 3.0(User Guide)
 
online leave management system
online leave management systemonline leave management system
online leave management system
 
Student information system
Student information systemStudent information system
Student information system
 
SRMS-PPT-ftxttm.pptx
SRMS-PPT-ftxttm.pptxSRMS-PPT-ftxttm.pptx
SRMS-PPT-ftxttm.pptx
 
11.project online library management system
11.project online library management system11.project online library management system
11.project online library management system
 
Make your school smarter with advance school management system
Make your school smarter with advance school management systemMake your school smarter with advance school management system
Make your school smarter with advance school management system
 
EducationHub- Remote Education Website. Final defense presentation slide for ...
EducationHub- Remote Education Website. Final defense presentation slide for ...EducationHub- Remote Education Website. Final defense presentation slide for ...
EducationHub- Remote Education Website. Final defense presentation slide for ...
 
Business Requirement Specification
Business Requirement SpecificationBusiness Requirement Specification
Business Requirement Specification
 
School Management System
School Management SystemSchool Management System
School Management System
 
Alumni portal ppt for projects
Alumni portal ppt for projectsAlumni portal ppt for projects
Alumni portal ppt for projects
 
Integrating Telegram Bots with Ruby on Rails
Integrating Telegram Bots with Ruby on RailsIntegrating Telegram Bots with Ruby on Rails
Integrating Telegram Bots with Ruby on Rails
 
PATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM projectPATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM project
 
Web site proposal
Web site proposalWeb site proposal
Web site proposal
 
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)
ORGAN DONATION MANAGEMENT SYSTEM (PROJECT: ODMS)
 
The Ultimate Website Development Roadmap
The Ultimate Website Development RoadmapThe Ultimate Website Development Roadmap
The Ultimate Website Development Roadmap
 
School management system
School management systemSchool management system
School management system
 
Bài giảng inventor 2008
Bài giảng inventor 2008Bài giảng inventor 2008
Bài giảng inventor 2008
 

Similar to chapter05-120827115357-phpapp01.pdf

6.SE_Requirements Modeling.ppt
6.SE_Requirements Modeling.ppt6.SE_Requirements Modeling.ppt
6.SE_Requirements Modeling.pptHaiderAli252366
 
Chapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementChapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementAxmedMaxamuudYoonis
 
chapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdfchapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdfAxmedMaxamuud6
 
AIS PPt.pptx
AIS PPt.pptxAIS PPt.pptx
AIS PPt.pptxdereje33
 
Final presentation of tools and techniques of structure analysis (Management ...
Final presentation of tools and techniques of structure analysis (Management ...Final presentation of tools and techniques of structure analysis (Management ...
Final presentation of tools and techniques of structure analysis (Management ...Rohan Naik
 
IS740 Chapter 05
IS740 Chapter 05IS740 Chapter 05
IS740 Chapter 05iDocs
 
IPT HSC 1.5) Designing Solutions
IPT HSC 1.5) Designing SolutionsIPT HSC 1.5) Designing Solutions
IPT HSC 1.5) Designing Solutionsctedds
 
DFDs_and_Algorithms.pptx
DFDs_and_Algorithms.pptxDFDs_and_Algorithms.pptx
DFDs_and_Algorithms.pptxAliyahAli19
 
Systems Development and Documentation Techniques
Systems Development and Documentation TechniquesSystems Development and Documentation Techniques
Systems Development and Documentation TechniquesHamse abdirahmaan
 
Database_Design.ppt
Database_Design.pptDatabase_Design.ppt
Database_Design.pptNadiSarj2
 
Data Flow Diagram (DFD)
Data Flow Diagram (DFD)Data Flow Diagram (DFD)
Data Flow Diagram (DFD)Ansh Kashyap
 
Data Analysis and Synthesis & Techniques of System.pptx
Data Analysis and Synthesis & Techniques of System.pptxData Analysis and Synthesis & Techniques of System.pptx
Data Analysis and Synthesis & Techniques of System.pptxTs. Heshalini Rajagopal
 
Week 2 - Database System Development Lifecycle-old.pptx
Week 2 - Database System Development Lifecycle-old.pptxWeek 2 - Database System Development Lifecycle-old.pptx
Week 2 - Database System Development Lifecycle-old.pptxNurulIzrin
 

Similar to chapter05-120827115357-phpapp01.pdf (20)

SAD 2nd PPT
SAD 2nd PPTSAD 2nd PPT
SAD 2nd PPT
 
System design
System designSystem design
System design
 
6.SE_Requirements Modeling.ppt
6.SE_Requirements Modeling.ppt6.SE_Requirements Modeling.ppt
6.SE_Requirements Modeling.ppt
 
Chapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementChapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project Management
 
chapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdfchapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdf
 
AIS PPt.pptx
AIS PPt.pptxAIS PPt.pptx
AIS PPt.pptx
 
Chapter 05
Chapter 05Chapter 05
Chapter 05
 
Final presentation of tools and techniques of structure analysis (Management ...
Final presentation of tools and techniques of structure analysis (Management ...Final presentation of tools and techniques of structure analysis (Management ...
Final presentation of tools and techniques of structure analysis (Management ...
 
IS740 Chapter 05
IS740 Chapter 05IS740 Chapter 05
IS740 Chapter 05
 
IPT HSC 1.5) Designing Solutions
IPT HSC 1.5) Designing SolutionsIPT HSC 1.5) Designing Solutions
IPT HSC 1.5) Designing Solutions
 
DFDs_and_Algorithms.pptx
DFDs_and_Algorithms.pptxDFDs_and_Algorithms.pptx
DFDs_and_Algorithms.pptx
 
Systems Development and Documentation Techniques
Systems Development and Documentation TechniquesSystems Development and Documentation Techniques
Systems Development and Documentation Techniques
 
Database design
Database designDatabase design
Database design
 
Database_Design.ppt
Database_Design.pptDatabase_Design.ppt
Database_Design.ppt
 
Data Flow Diagram (DFD)
Data Flow Diagram (DFD)Data Flow Diagram (DFD)
Data Flow Diagram (DFD)
 
lecture 1.pdf
lecture 1.pdflecture 1.pdf
lecture 1.pdf
 
DBMS ppts unit1.pptx
DBMS ppts  unit1.pptxDBMS ppts  unit1.pptx
DBMS ppts unit1.pptx
 
Data Analysis and Synthesis & Techniques of System.pptx
Data Analysis and Synthesis & Techniques of System.pptxData Analysis and Synthesis & Techniques of System.pptx
Data Analysis and Synthesis & Techniques of System.pptx
 
SYSTEM MODELLING
SYSTEM MODELLINGSYSTEM MODELLING
SYSTEM MODELLING
 
Week 2 - Database System Development Lifecycle-old.pptx
Week 2 - Database System Development Lifecycle-old.pptxWeek 2 - Database System Development Lifecycle-old.pptx
Week 2 - Database System Development Lifecycle-old.pptx
 

More from AxmedMaxamuud6

chapter10-120827115414-phpapp02.pdf
chapter10-120827115414-phpapp02.pdfchapter10-120827115414-phpapp02.pdf
chapter10-120827115414-phpapp02.pdfAxmedMaxamuud6
 
chapter12-120827115424-phpapp01.pdf
chapter12-120827115424-phpapp01.pdfchapter12-120827115424-phpapp01.pdf
chapter12-120827115424-phpapp01.pdfAxmedMaxamuud6
 
chapter11-120827115420-phpapp01.pdf
chapter11-120827115420-phpapp01.pdfchapter11-120827115420-phpapp01.pdf
chapter11-120827115420-phpapp01.pdfAxmedMaxamuud6
 
chapter03-120827115353-phpapp02.pdf
chapter03-120827115353-phpapp02.pdfchapter03-120827115353-phpapp02.pdf
chapter03-120827115353-phpapp02.pdfAxmedMaxamuud6
 
chapter02-120827115348-phpapp01.pdf
chapter02-120827115348-phpapp01.pdfchapter02-120827115348-phpapp01.pdf
chapter02-120827115348-phpapp01.pdfAxmedMaxamuud6
 
chapter01-120827115344-phpapp01.pdf
chapter01-120827115344-phpapp01.pdfchapter01-120827115344-phpapp01.pdf
chapter01-120827115344-phpapp01.pdfAxmedMaxamuud6
 
chapter07-120827115403-phpapp01.pdf
chapter07-120827115403-phpapp01.pdfchapter07-120827115403-phpapp01.pdf
chapter07-120827115403-phpapp01.pdfAxmedMaxamuud6
 
chapter06-120827115400-phpapp01.pdf
chapter06-120827115400-phpapp01.pdfchapter06-120827115400-phpapp01.pdf
chapter06-120827115400-phpapp01.pdfAxmedMaxamuud6
 
chapter04-120827115356-phpapp01.pdf
chapter04-120827115356-phpapp01.pdfchapter04-120827115356-phpapp01.pdf
chapter04-120827115356-phpapp01.pdfAxmedMaxamuud6
 
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.ppt
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.pptL14_DesignGoalsSubsystemDecompositionc_ch06lect1.ppt
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.pptAxmedMaxamuud6
 

More from AxmedMaxamuud6 (10)

chapter10-120827115414-phpapp02.pdf
chapter10-120827115414-phpapp02.pdfchapter10-120827115414-phpapp02.pdf
chapter10-120827115414-phpapp02.pdf
 
chapter12-120827115424-phpapp01.pdf
chapter12-120827115424-phpapp01.pdfchapter12-120827115424-phpapp01.pdf
chapter12-120827115424-phpapp01.pdf
 
chapter11-120827115420-phpapp01.pdf
chapter11-120827115420-phpapp01.pdfchapter11-120827115420-phpapp01.pdf
chapter11-120827115420-phpapp01.pdf
 
chapter03-120827115353-phpapp02.pdf
chapter03-120827115353-phpapp02.pdfchapter03-120827115353-phpapp02.pdf
chapter03-120827115353-phpapp02.pdf
 
chapter02-120827115348-phpapp01.pdf
chapter02-120827115348-phpapp01.pdfchapter02-120827115348-phpapp01.pdf
chapter02-120827115348-phpapp01.pdf
 
chapter01-120827115344-phpapp01.pdf
chapter01-120827115344-phpapp01.pdfchapter01-120827115344-phpapp01.pdf
chapter01-120827115344-phpapp01.pdf
 
chapter07-120827115403-phpapp01.pdf
chapter07-120827115403-phpapp01.pdfchapter07-120827115403-phpapp01.pdf
chapter07-120827115403-phpapp01.pdf
 
chapter06-120827115400-phpapp01.pdf
chapter06-120827115400-phpapp01.pdfchapter06-120827115400-phpapp01.pdf
chapter06-120827115400-phpapp01.pdf
 
chapter04-120827115356-phpapp01.pdf
chapter04-120827115356-phpapp01.pdfchapter04-120827115356-phpapp01.pdf
chapter04-120827115356-phpapp01.pdf
 
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.ppt
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.pptL14_DesignGoalsSubsystemDecompositionc_ch06lect1.ppt
L14_DesignGoalsSubsystemDecompositionc_ch06lect1.ppt
 

Recently uploaded

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

chapter05-120827115357-phpapp01.pdf

  • 1. Systems Analysis and Design 9th Edition Chapter 5 Data and Process Modeling
  • 2. Chapter Objectives • Describe data and process modeling concepts and tools, including data flow diagrams, a data dictionary, and process descriptions • Describe the symbols used in data flow diagrams and explain the rules for their use • Draw data flow diagrams in a sequence, from general to specific • Explain how to level and balance a set of data flow diagrams 2
  • 3. Chapter Objectives • Describe how a data dictionary is used and what it contains • Use process description tools, including structured English, decision tables, and decision trees • Describe the relationship between logical and physical models 3
  • 4. Introduction • In Chapters 5 & 6, you will develop a logical model of the proposed system and document the system requirements – Logical model shows what the system must do – Physical model describes how the system will be constructed 4
  • 5. Overview of Data and Process Modeling Tools • Systems analysts use many graphical techniques to describe an information system • A data flow diagram (DFD) uses various symbols to show how the system transforms input data into useful information 5
  • 6. Data Flow Diagrams • A data flow diagram (DFD) shows how data moves through an information system but does not show program logic or processing steps • A set of DFDs provides a logical model that shows what the system does, not how it does it 6
  • 7. Data Flow Diagrams • DFD Symbols 7
  • 8. Data Flow Diagrams • DFD Symbols – Process symbol • Receives input data and produces output that has a different content, form, or both • Contain the business logic, also called business rules • Referred to as a black box 8
  • 9. Data Flow Diagrams • DFD Symbols – Data flow symbol • Represents one or more data items • The symbol for a data flow is a line with a single or double arrowhead • Spontaneous generation • Black hole • Gray hole 9
  • 10. Data Flow Diagrams • DFD Symbols – Data store symbol • Represent data that the system stores • The physical characteristics of a data store are unimportant because you are concerned only with a logical model 10
  • 11. Data Flow Diagrams • DFD Symbols – Entity Symbol • Name of the entity appears inside the symbol • Terminators • Source • Sink 11
  • 12. Creating a Set of DFDs • Create a graphical model of the information system based on your fact-finding results • First, you will review a set of guidelines for drawing DFDs. Then you will learn how to apply these guidelines and create a set of DFDs using a three-step process 12
  • 13. Creating a Set of DFDs • Guidelines for Drawing DFDs – Draw the context diagram so that it fits on one page – Use the name of the information system as the process name in the context diagram – Use unique names within each set of symbols 13
  • 14. Creating a Set of DFDs • Guidelines for Drawing DFDs – Do not cross lines – Provide a unique name and reference number for each process – Obtain as much user input and feedback as possible 14
  • 15. Creating a Set of DFDs • Step 1: Draw a Context Diagram 15
  • 16. Creating a Set of DFDs • Step 2: Draw a Diagram 0 DFD 16
  • 17. Creating a Set of DFDs • Step 2: Draw a Diagram 0 DFD – If same data flows in both directions, you can use a double-headed arrow – Diagram 0 is an exploded view of process 0 – Parent diagram – Child diagram – Functional primitive 17
  • 18. Creating a Set of DFDs • Step 3: Draw the Lower- Level Diagrams – Must use leveling and balancing techniques – Leveling examples • Uses a series of increasingly detailed DFDs to describe an information system • Exploding, partitioning, or decomposing 18
  • 19. Creating a Set of DFDs • Step 3: Draw the Lower- Level Diagrams – Balancing Examples • Ensures that the input and output data flows of the parent DFD are maintained on the child DFD 19
  • 20. Data Dictionary • A data dictionary, or data repository, is a central storehouse of information about the system’s data • An analyst uses the data dictionary to collect, document, and organize specific facts about the system • Also defines and describes all data elements and meaningful combinations of data elements 20
  • 21. Data Dictionary • A data element, also called a data item or field, is the smallest piece of data that has meaning • Data elements are combined into records, also called data structures • A record is a meaningful combination of related data elements that is included in a data flow or retained in a data store 21
  • 22. Data Dictionary • Using CASE Tools for Documentation – The more complex the system, the more difficult it is to maintain full and accurate documentation – Modern CASE tools simplify the task – A CASE repository ensures data consistency – You will learn more about CASE tools in Part 2 of the Systems Analyst’s Toolkit 22
  • 23. Data Dictionary • Documenting the Data Elements – You must document every data element in the data dictionary – The objective is the same: to provide clear, comprehensive information about the data and processes that make up the system 23
  • 24. Data Dictionary • Documenting the Data Elements – The following attributes usually are recorded and described • Data element name and label • Alias • Type and length • Default value • Acceptable values - Domain and validity rules 24
  • 25. Data Dictionary • Documenting the Data Elements – The following attributes usually are recorded and described • Source • Security • Responsible user(s) • Description and comments 25
  • 26. Data Dictionary • Documenting the Data Flows – The typical attributes are as follows • Data flow name or label • Description • Alternate name(s) • Origin • Destination • Record • Volume and frequency 26
  • 27. Data Dictionary • Documenting the Data Stores – Typical characteristics of a data store are • Data store name or label • Description • Alternate name(s) • Attributes • Volume and frequency 27
  • 28. Data Dictionary • Documenting the Processes – Typical characteristics of a process • Process name or label • Description • Process number • Process description 28
  • 29. Data Dictionary • Documenting the Entities – Typical characteristics of an entity include • Entity name • Description • Alternate name(s) • Input data flows • Output data flows 29
  • 30. Data Dictionary • Documenting the Records – Typical characteristics of a record include • Record or data structure name • Definition or description • Alternate name(s) • Attributes 30
  • 31. Data Dictionary • Data Dictionary Reports – Many valuable reports • An alphabetized list of all data elements by name • A report describing each data element and indicating the user or department that is responsible for data entry, updating, or deletion • A report of all data flows and data stores that use a particular data element • Detailed reports showing all characteristics of data elements, records, data flows, processes, or any other selected item stored in the data dictionary 31
  • 32. Process Description Tools • A process description documents the details of a functional primitive, which represents a specific set of processing steps and business logic • It should be noted that this chapter deals with structured analysis, but the process description tools also can be used in object- oriented development, which is described in Chapter 6 32
  • 33. Process Description Tools • Modular Design – Based on combinations of three logical structures, sometimes called control structures, which serve as building blocks for the process • Sequence • Selection • Iteration - looping 33
  • 34. Process Description Tools • Structured English – Must conform to the following rules • Use only the three building blocks of sequence, selection, and iteration • Use indentation for readability • Use a limited vocabulary, including standard terms used in the data dictionary and specific words that describe the processing rules 34
  • 35. Process Description Tools • Structured English – Might look familiar to programming students because it resembles pseudocode – The primary purpose of structured English is to describe the underlying business logic 35
  • 36. Process Description Tools • Decision Tables – Shows a logical structure, with all possible combinations of conditions and resulting actions – It is important to consider every possible outcome to ensure that you have overlooked nothing 36
  • 37. Process Description Tools • Decision Tables – The number of rules doubles each time you add a condition – Can have more than two possible outcomes – Often are the best way to describe a complex set of conditions 37
  • 38. Process Description Tools • Decision Trees 38
  • 39. Logical Versus Physical Models • While structured analysis tools are used to develop a logical model for a new information system, such tools also can be used to develop physical models of an information system • A physical model shows how the system’s requirements are implemented 39
  • 40. Logical Versus Physical Models • Sequence of Models – Many systems analysts create a physical model of the current system and then develop a logical model of the current system before tackling a logical model of the new system – Performing that extra step allows them to understand the current system better 40
  • 41. Logical Versus Physical Models • Four-Model Approach – Develop a physical model of the current system, a logical model of the current system, a logical model of the new system, and a physical model of the new system – The only disadvantage of the four-model approach is the added time and cost 41
  • 42. Chapter Summary • During data and process modeling, a systems analyst develops graphical models to show how the system transforms data into useful information • The end product of data and process modeling is a logical model that will support business operations and meet user needs • Data and process modeling involves three main tools: data flow diagrams, a data dictionary, and process descriptions 42
  • 43. Chapter Summary • Data flow diagrams (DFDs) graphically show the movement and transformation of data in the information system • DFDs use four symbols • A set of DFDs is like a pyramid with the context diagram at the top 43
  • 44. Chapter Summary • The data dictionary is the central documentation tool for structured analysis • Each functional primitive process is documented using structured English, decision tables, and decision trees • Structured analysis tools can be used to develop a logical model during one systems analysis phase, and a physical model during the systems design phase 44