SlideShare a Scribd company logo
1 of 36
Process Modeling
SYSTEMS ANALYSIS AND DESIGN, 6TH EDITION
DENNIS, WIXOM, AND ROTH
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 1Roberta M. Roth
Learning Objectives
 Explain the rules and style guidelines for data flow diagrams.
 Describe the process used to create data flow diagrams.
 Create data flow diagrams.
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 2
Key Definitions
 Process model
o A formal way of representing how a business process operates
o Illustrate activities that are performed and how data moves between
them
o Logical process models describe processes without suggesting how
they are conducted.
o Physical process models include process implementation information
 Data flow diagramming
o A popular technique for creating process models
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 3
Data Flow Diagrams
WHAT DO DFDS TELL US?
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 4
Reading a Data
Flow Diagram
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 5
DFD Elements
 Process
o An activity or function performed for a specific
business reason
o Can be manual or computerized
o Includes the following:
• A number
• A name (verb phrase)
• A description
• At least one output data flow
• At least one input data flow
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 6
DFD Elements, con’t.
 Process, con’t.
o Logical process models omit any processes that
simply move or route data and leave the data
unchanged.
o You do include logical processes that:
• Perform computations (e.g., calculate grade point average)
• Make decisions (e.g., determine availability of ordered
products)
• Sort, filter or otherwise summarize data (e.g., identify overdue
invoices)
• Organize data into useful information (e.g., generate a report or
answer a question)
• Trigger other processes (e.g., turn on the furnace or instruct a
robot)
• Use stored data (create, read, update or delete a record)
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 7
DFD Elements, con’t.
 Data flow
o A single piece of data or a logical collection of data
o Data Flow names describe the content of the data
flow but not how it is implemented
o Always starts or ends at a process
o Includes the following:
• A name (noun)
• Description
• One or more connections to a process
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 8
DFD Elements, con’t.
 Data flow, con’t.
o A data flow is data in motion.
• an input of data to a process, or the output of data (or
information) from a process.
• the creation, deletion, or update of data in a file or database
(called a data store on the DFD).
• A data flow is depicted as a solid-line with arrow.
• Control flows (non-data flows) trigger processes, such as ‘time
to run the weekly payroll’
• The control flow is depicted as a dashed-line with arrow.
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 9
DFD Elements, con’t.
 Data Store
o Most information systems capture data for later use.
o A data store is a collection of data that is stored in
some way
o Include the following:
• A number
• A name (noun)
• Description
• One or more input data flows (somewhere in process model)
• One or more output data flows (somewhere in process model)
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 10
DFD Elements, con’t.
 Data Store, con’t.
o If data flows are data in motion, think of data stores
as data at rest.
o Data stores should describe “things” about which the
business wants to store data.
o Data flows leaving the data store are data retrievals
o Data flows entering the data store are updates or new
data added
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 11
DFD Elements, con’t.
 External entity
o A person, organization, or system that is external
to the system
o Has interactions with the system (adds data to
system or recieves data from system)
o Include the following:
• A name (noun)
• Description
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 12
Depicting Business Processes with DFDs
 Business processes are too complex to be shown on a single
DFD
 A deliberate hierarchy is created with multiple “levels” of
DFDs
 To build the hierarchy, use Decomposition
o Child diagrams show a portion of the parent diagram in greater detail
DFD Hierarchy
o Context Diagram decomposes into
Level 0 diagram
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 14
DFD Hierarchy
o Processes on Level 0 diagram each
decompose into separate Level 1
diagrams
o Processes on Level 1 diagrams may
or may not be decomposed into
separate Level 2 diagrams.
o Processes are decomposed until
each process is a single-purpose,
primitive process.
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 15
Balancing
 Ensures that information presented at one level of a DFD is
accurately represented in the next level DFD.
 Data flows on parent diagram are carried down to child
diagram.
 Child diagram adds new processes and new data flows
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 16
Context Diagram
 Top-level DFD in every process model
 Shows the context into which the business process fits
 Shows the overall business process as just one process
(process ‘zero’)
 Shows all the external entities that receive information from
or contribute information to the system
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 17
Level O
Diagram
 Shows all the major processes that comprise the overall
system – the internal components of process 0
 Shows how the major processes are interrelated by data
flows
 Shows external entities and the major processes with which
they interact
 Adds stored data via the data stores
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 18
Level 1
Diagrams
 Create one level 1 diagram for every major process on the
level 0 diagram
 Shows the internal processes that comprise a single process
on the level 0 diagram
 Shows how information moves to and from each of these
processes
 If a parent process is decomposed into, say, three child
processes, the these three child processes wholly and
completely make up the parent process
Level 2 Diagrams
 Shows all processes that comprise a single
process on the level 1 diagram
 Shows how information moves to and from each
of these processes
 Level 2 diagrams may not be needed for all level
1 processes
 Correctly numbering each process helps the user
understand where the process fits into the overall
system
Diagram Numbering
 Correctly numbering each process helps the user
understand where the process fits into the overall
hierarchy
o Context Diagram is always “Process 0”
o Level 0 processes are always numbered with integer
value (1, 2, 3, etc.)
o Level 1 processes always have one “dot”: parent
number “dot” unique number (1.1, 1.2, 1.3, etc.)
o Level 2 processes always have two “dots”: parent
number “dot” unique number (1.1.1, 1.1.2, 1.1.3, etc.)
Alternative Data Flows
 Where a process can produce different data flows given
different conditions
 We show both data flows and use the process description to
explain why they are alternatives
 Tip -- alternative data flows often accompany processes with
IF statements
Process Descriptions
 Text-based process descriptions provide more information
about the process than the DFD alone
 CASE tools enable easy creation of descriptions
 If the logic underlying the process is quite complex, more
detail may be needed in the form of
o Structured English
o Decision trees
o Decision tables
CASE Entry of
Process
Description
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 24
Your Turn
 At this point in the process it is easy to lose track of the “big
picture”.
 Describe the contribution of data flows, data stores, and
processes to a process model.
 Describe in your own words the relationship between the
DFDs and the ultimate new application being developed.
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 25
Creating Data Flow
Diagrams
HOW DFDS ARE DEVELOPED
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 26
Steps in Building DFDs
 Build the context diagram
o Identify the external entities and the major inflows they supply and the
outflows they receive
 Identify all major processes encompassed by the Context
Diagram
o Each major event / use case is “handled” by a process
 Create DFD “fragments” for each event / use case
o Each DFD fragment is a mini-diagram showing the process and the
external entities and data stores with which it interacts.
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 27
Steps in Building DFDs, con’t.
 Organize DFD fragments into level 0 diagram
 Decompose each level 0 process into a level 1 diagram;
decompose level 1 processes into level 2 diagrams as needed;
etc.
 Validate DFDs with user to ensure completeness and correctness
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 28
Integrating Use Cases
 DFDs start with events, use cases and the requirements
definition
 The DFDs often flow directly from the use cases
o Names of use cases become major processes on the Level 0 diagram
o Steps in the use case become processes on the Level 1 diagram
o Inputs and outputs become data flows on the Level 1 diagram (and
below)
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 29
Illustration –
Developing
DFDs
Creating the Context Diagram
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 30
Illustration –
Developing
DFDs
Create a DFD “fragment” based on a
use case
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 31
Illustration –
Developing
DFDs
Merge DFD “fragment” diagrams into
the Level 0 diagram
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 32
Illustration –
Developing
DFDs
Develop Level 1 diagrams for every
process on the Level 0 diagram
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 33
Illustration –
Developing
DFDs
Develop Level 2 diagrams for any
process on a Level 1 diagram that
appears busy or complex
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 34
Evaluate DFDs
for Quality
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 35
Common DFD Errors
 Syntax errors – violating “drawing” rules
o Every data flow must connect to a process.
o Every process must have at least one inflow and one outflow.
 Semantics errors – errors in the meaning of the diagrams
o Walk-through diagrams with users
o Verify that inputs shown are logically sufficient to produce the
outputs
o Check for consistent levels of decomposition
o Check for consistent use of terminology
© 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 36

More Related Content

Viewers also liked

Hi600 ch08_text_slides
Hi600  ch08_text_slidesHi600  ch08_text_slides
Hi600 ch08_text_slidesljmcneill33
 
Forming Effective Teams
Forming Effective TeamsForming Effective Teams
Forming Effective Teamsljmcneill33
 
Six Sigma in Healthcare
Six Sigma in HealthcareSix Sigma in Healthcare
Six Sigma in Healthcareljmcneill33
 
Six Sigma: Defining the Problem
Six Sigma: Defining the ProblemSix Sigma: Defining the Problem
Six Sigma: Defining the Problemljmcneill33
 
Student Services
Student ServicesStudent Services
Student Servicesljmcneill33
 
Blackboard basics mod 1
Blackboard basics mod 1Blackboard basics mod 1
Blackboard basics mod 1ljmcneill33
 
Hi600 m1 u1_part1_instslides
Hi600 m1 u1_part1_instslidesHi600 m1 u1_part1_instslides
Hi600 m1 u1_part1_instslidesljmcneill33
 
Six Sigma by PresentationLoad
Six Sigma by PresentationLoadSix Sigma by PresentationLoad
Six Sigma by PresentationLoadPresentationLoad
 
Blackboard Basics
Blackboard BasicsBlackboard Basics
Blackboard Basicsljmcneill33
 
Mark Graban "How Lean Thinking Helps Hospitals"
Mark Graban "How Lean Thinking Helps Hospitals"Mark Graban "How Lean Thinking Helps Hospitals"
Mark Graban "How Lean Thinking Helps Hospitals"Mark Graban
 
5S Lean for Healthcare
5S Lean for Healthcare5S Lean for Healthcare
5S Lean for HealthcareMarketLab Inc.
 

Viewers also liked (20)

Hi600 ch08_text_slides
Hi600  ch08_text_slidesHi600  ch08_text_slides
Hi600 ch08_text_slides
 
Forming Effective Teams
Forming Effective TeamsForming Effective Teams
Forming Effective Teams
 
Six Sigma in Healthcare
Six Sigma in HealthcareSix Sigma in Healthcare
Six Sigma in Healthcare
 
Six Sigma: Defining the Problem
Six Sigma: Defining the ProblemSix Sigma: Defining the Problem
Six Sigma: Defining the Problem
 
Student success
Student successStudent success
Student success
 
Tamu student what to expect
Tamu student what to expectTamu student what to expect
Tamu student what to expect
 
Student Services
Student ServicesStudent Services
Student Services
 
Tamu Policies
Tamu PoliciesTamu Policies
Tamu Policies
 
Tamu student overview
Tamu student overviewTamu student overview
Tamu student overview
 
Tech
TechTech
Tech
 
3rd party tools
3rd party tools3rd party tools
3rd party tools
 
Blackboard basics mod 1
Blackboard basics mod 1Blackboard basics mod 1
Blackboard basics mod 1
 
Hi600 m1 u1_part1_instslides
Hi600 m1 u1_part1_instslidesHi600 m1 u1_part1_instslides
Hi600 m1 u1_part1_instslides
 
Six Sigma by PresentationLoad
Six Sigma by PresentationLoadSix Sigma by PresentationLoad
Six Sigma by PresentationLoad
 
Blackboard Basics
Blackboard BasicsBlackboard Basics
Blackboard Basics
 
LEAN SIX SIGMA HEALTHCARE
LEAN SIX SIGMA HEALTHCARELEAN SIX SIGMA HEALTHCARE
LEAN SIX SIGMA HEALTHCARE
 
Applying Lean Six Sigma in Healthcare
Applying Lean Six Sigma in HealthcareApplying Lean Six Sigma in Healthcare
Applying Lean Six Sigma in Healthcare
 
Mark Graban "How Lean Thinking Helps Hospitals"
Mark Graban "How Lean Thinking Helps Hospitals"Mark Graban "How Lean Thinking Helps Hospitals"
Mark Graban "How Lean Thinking Helps Hospitals"
 
5S Lean for Healthcare
5S Lean for Healthcare5S Lean for Healthcare
5S Lean for Healthcare
 
Hospital Process Improvement - Lean Six Sigma Methodology
Hospital Process Improvement - Lean Six Sigma MethodologyHospital Process Improvement - Lean Six Sigma Methodology
Hospital Process Improvement - Lean Six Sigma Methodology
 

Similar to Module 2 Unit 3

Dfd over flowcharts
Dfd over flowcharts Dfd over flowcharts
Dfd over flowcharts Ashwathy Nair
 
208 dataflowdgm
208 dataflowdgm208 dataflowdgm
208 dataflowdgmTCT
 
Design Flow Diagram for Information System
Design Flow Diagram for Information SystemDesign Flow Diagram for Information System
Design Flow Diagram for Information Systemarifasyrafcp13
 
208-dataflowdgm_5.ppt
208-dataflowdgm_5.ppt208-dataflowdgm_5.ppt
208-dataflowdgm_5.pptTalhaNazeer5
 
208-dataflowdgm.ppt
208-dataflowdgm.ppt208-dataflowdgm.ppt
208-dataflowdgm.pptRAJA RAY
 
data flow diagram power point presentation
data flow diagram power point presentationdata flow diagram power point presentation
data flow diagram power point presentationSUBHASHREEBASU5
 
DATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptDATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptsures4
 
DATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptDATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptsures4
 
Question 1 1.  A data flow element in a DFD must be conntected.docx
Question 1 1.  A data flow element in a DFD must be conntected.docxQuestion 1 1.  A data flow element in a DFD must be conntected.docx
Question 1 1.  A data flow element in a DFD must be conntected.docxIRESH3
 
Refer to the following figure which contains drafts of a context and l.docx
Refer to the following figure which contains drafts of a context and l.docxRefer to the following figure which contains drafts of a context and l.docx
Refer to the following figure which contains drafts of a context and l.docxlmarie40
 

Similar to Module 2 Unit 3 (20)

Dfd over flowcharts
Dfd over flowcharts Dfd over flowcharts
Dfd over flowcharts
 
Data flow
Data flowData flow
Data flow
 
How to Data Flow Diagram
How to Data Flow Diagram How to Data Flow Diagram
How to Data Flow Diagram
 
208 dataflowdgm
208 dataflowdgm208 dataflowdgm
208 dataflowdgm
 
Data Flow Diagram or DFD
Data Flow Diagram  or DFDData Flow Diagram  or DFD
Data Flow Diagram or DFD
 
Process modelling
Process modellingProcess modelling
Process modelling
 
Design Flow Diagram for Information System
Design Flow Diagram for Information SystemDesign Flow Diagram for Information System
Design Flow Diagram for Information System
 
Using data flow diagrams
Using data flow diagramsUsing data flow diagrams
Using data flow diagrams
 
208-dataflowdgm_5.ppt
208-dataflowdgm_5.ppt208-dataflowdgm_5.ppt
208-dataflowdgm_5.ppt
 
208-dataflowdgm.ppt
208-dataflowdgm.ppt208-dataflowdgm.ppt
208-dataflowdgm.ppt
 
data flow diagram power point presentation
data flow diagram power point presentationdata flow diagram power point presentation
data flow diagram power point presentation
 
208 dataflowdgm
208 dataflowdgm208 dataflowdgm
208 dataflowdgm
 
Dfd 3
Dfd 3Dfd 3
Dfd 3
 
Dfd mechanics
Dfd mechanicsDfd mechanics
Dfd mechanics
 
Dfd mechanics
Dfd mechanicsDfd mechanics
Dfd mechanics
 
DATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptDATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.ppt
 
DATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.pptDATA FLOW DIAGRAMS Yamini devi.ppt
DATA FLOW DIAGRAMS Yamini devi.ppt
 
Question 1 1.  A data flow element in a DFD must be conntected.docx
Question 1 1.  A data flow element in a DFD must be conntected.docxQuestion 1 1.  A data flow element in a DFD must be conntected.docx
Question 1 1.  A data flow element in a DFD must be conntected.docx
 
Data Flow Diagrams
Data Flow DiagramsData Flow Diagrams
Data Flow Diagrams
 
Refer to the following figure which contains drafts of a context and l.docx
Refer to the following figure which contains drafts of a context and l.docxRefer to the following figure which contains drafts of a context and l.docx
Refer to the following figure which contains drafts of a context and l.docx
 

More from ljmcneill33

Hi600 m1 u1_part2_instslides
Hi600 m1 u1_part2_instslidesHi600 m1 u1_part2_instslides
Hi600 m1 u1_part2_instslidesljmcneill33
 
HI600 U02_inst_slides
HI600 U02_inst_slides HI600 U02_inst_slides
HI600 U02_inst_slides ljmcneill33
 
Hi600 u13_inst_slides
Hi600 u13_inst_slidesHi600 u13_inst_slides
Hi600 u13_inst_slidesljmcneill33
 
Hi600 ch13_text_slides
Hi600 ch13_text_slidesHi600 ch13_text_slides
Hi600 ch13_text_slidesljmcneill33
 
Hi600 u12_inst_slides
Hi600  u12_inst_slidesHi600  u12_inst_slides
Hi600 u12_inst_slidesljmcneill33
 
Hi600 ch12_text_slides
Hi600 ch12_text_slidesHi600 ch12_text_slides
Hi600 ch12_text_slidesljmcneill33
 
Hi600 u11_inst_slides_ch11
Hi600 u11_inst_slides_ch11Hi600 u11_inst_slides_ch11
Hi600 u11_inst_slides_ch11ljmcneill33
 
Hi600 u10_inst_slides
Hi600 u10_inst_slidesHi600 u10_inst_slides
Hi600 u10_inst_slidesljmcneill33
 
Hi600 u09_inst_slides
Hi600 u09_inst_slidesHi600 u09_inst_slides
Hi600 u09_inst_slidesljmcneill33
 
Hi600 u08_inst_slides
Hi600 u08_inst_slidesHi600 u08_inst_slides
Hi600 u08_inst_slidesljmcneill33
 
Hi600 u07_inst_slides
Hi600 u07_inst_slidesHi600 u07_inst_slides
Hi600 u07_inst_slidesljmcneill33
 
Hi600 u07_inst_slides
Hi600  u07_inst_slidesHi600  u07_inst_slides
Hi600 u07_inst_slidesljmcneill33
 
Hi600ch07_text_slides
Hi600ch07_text_slidesHi600ch07_text_slides
Hi600ch07_text_slidesljmcneill33
 
Hi600 u06_inst_slides
Hi600 u06_inst_slidesHi600 u06_inst_slides
Hi600 u06_inst_slidesljmcneill33
 
Hi600 u05_inst_slides
Hi600 u05_inst_slidesHi600 u05_inst_slides
Hi600 u05_inst_slidesljmcneill33
 
Hi600 u04_inst_slides
Hi600 u04_inst_slidesHi600 u04_inst_slides
Hi600 u04_inst_slidesljmcneill33
 
Hi600 u03_inst_slides
Hi600 u03_inst_slidesHi600 u03_inst_slides
Hi600 u03_inst_slidesljmcneill33
 
Hi600 u02_prj_man_dorsey
Hi600 u02_prj_man_dorseyHi600 u02_prj_man_dorsey
Hi600 u02_prj_man_dorseyljmcneill33
 
HI600 Ch 1 Inst_slides
HI600 Ch 1 Inst_slidesHI600 Ch 1 Inst_slides
HI600 Ch 1 Inst_slidesljmcneill33
 

More from ljmcneill33 (20)

Hi600 m1 u1_part2_instslides
Hi600 m1 u1_part2_instslidesHi600 m1 u1_part2_instslides
Hi600 m1 u1_part2_instslides
 
HI600 U02_inst_slides
HI600 U02_inst_slides HI600 U02_inst_slides
HI600 U02_inst_slides
 
Hi600 u13_inst_slides
Hi600 u13_inst_slidesHi600 u13_inst_slides
Hi600 u13_inst_slides
 
Hi600 ch13_text_slides
Hi600 ch13_text_slidesHi600 ch13_text_slides
Hi600 ch13_text_slides
 
Hi600 u12_inst_slides
Hi600  u12_inst_slidesHi600  u12_inst_slides
Hi600 u12_inst_slides
 
Hi600 ch12_text_slides
Hi600 ch12_text_slidesHi600 ch12_text_slides
Hi600 ch12_text_slides
 
Hi600 u11_inst_slides_ch11
Hi600 u11_inst_slides_ch11Hi600 u11_inst_slides_ch11
Hi600 u11_inst_slides_ch11
 
Hi600 u10_inst_slides
Hi600 u10_inst_slidesHi600 u10_inst_slides
Hi600 u10_inst_slides
 
Hi600 u09_inst_slides
Hi600 u09_inst_slidesHi600 u09_inst_slides
Hi600 u09_inst_slides
 
Hi600 u08_inst_slides
Hi600 u08_inst_slidesHi600 u08_inst_slides
Hi600 u08_inst_slides
 
Hi600 u07_inst_slides
Hi600 u07_inst_slidesHi600 u07_inst_slides
Hi600 u07_inst_slides
 
Hi600 u07_inst_slides
Hi600  u07_inst_slidesHi600  u07_inst_slides
Hi600 u07_inst_slides
 
Hi600ch07_text_slides
Hi600ch07_text_slidesHi600ch07_text_slides
Hi600ch07_text_slides
 
Hi600 u06_inst_slides
Hi600 u06_inst_slidesHi600 u06_inst_slides
Hi600 u06_inst_slides
 
Hi600 u05_inst_slides
Hi600 u05_inst_slidesHi600 u05_inst_slides
Hi600 u05_inst_slides
 
Hi600 u04_inst_slides
Hi600 u04_inst_slidesHi600 u04_inst_slides
Hi600 u04_inst_slides
 
Hi600 u03_inst_slides
Hi600 u03_inst_slidesHi600 u03_inst_slides
Hi600 u03_inst_slides
 
Hi600 u02_prj_man_dorsey
Hi600 u02_prj_man_dorseyHi600 u02_prj_man_dorsey
Hi600 u02_prj_man_dorsey
 
HI600 Ch 1 Inst_slides
HI600 Ch 1 Inst_slidesHI600 Ch 1 Inst_slides
HI600 Ch 1 Inst_slides
 
TAMU Tech
TAMU TechTAMU Tech
TAMU Tech
 

Recently uploaded

On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
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
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
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
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 

Recently uploaded (20)

Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
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
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
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
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 

Module 2 Unit 3

  • 1. Process Modeling SYSTEMS ANALYSIS AND DESIGN, 6TH EDITION DENNIS, WIXOM, AND ROTH © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 1Roberta M. Roth
  • 2. Learning Objectives  Explain the rules and style guidelines for data flow diagrams.  Describe the process used to create data flow diagrams.  Create data flow diagrams. © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 2
  • 3. Key Definitions  Process model o A formal way of representing how a business process operates o Illustrate activities that are performed and how data moves between them o Logical process models describe processes without suggesting how they are conducted. o Physical process models include process implementation information  Data flow diagramming o A popular technique for creating process models © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 3
  • 4. Data Flow Diagrams WHAT DO DFDS TELL US? © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 4
  • 5. Reading a Data Flow Diagram © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 5
  • 6. DFD Elements  Process o An activity or function performed for a specific business reason o Can be manual or computerized o Includes the following: • A number • A name (verb phrase) • A description • At least one output data flow • At least one input data flow © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 6
  • 7. DFD Elements, con’t.  Process, con’t. o Logical process models omit any processes that simply move or route data and leave the data unchanged. o You do include logical processes that: • Perform computations (e.g., calculate grade point average) • Make decisions (e.g., determine availability of ordered products) • Sort, filter or otherwise summarize data (e.g., identify overdue invoices) • Organize data into useful information (e.g., generate a report or answer a question) • Trigger other processes (e.g., turn on the furnace or instruct a robot) • Use stored data (create, read, update or delete a record) © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 7
  • 8. DFD Elements, con’t.  Data flow o A single piece of data or a logical collection of data o Data Flow names describe the content of the data flow but not how it is implemented o Always starts or ends at a process o Includes the following: • A name (noun) • Description • One or more connections to a process © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 8
  • 9. DFD Elements, con’t.  Data flow, con’t. o A data flow is data in motion. • an input of data to a process, or the output of data (or information) from a process. • the creation, deletion, or update of data in a file or database (called a data store on the DFD). • A data flow is depicted as a solid-line with arrow. • Control flows (non-data flows) trigger processes, such as ‘time to run the weekly payroll’ • The control flow is depicted as a dashed-line with arrow. © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 9
  • 10. DFD Elements, con’t.  Data Store o Most information systems capture data for later use. o A data store is a collection of data that is stored in some way o Include the following: • A number • A name (noun) • Description • One or more input data flows (somewhere in process model) • One or more output data flows (somewhere in process model) © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 10
  • 11. DFD Elements, con’t.  Data Store, con’t. o If data flows are data in motion, think of data stores as data at rest. o Data stores should describe “things” about which the business wants to store data. o Data flows leaving the data store are data retrievals o Data flows entering the data store are updates or new data added © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 11
  • 12. DFD Elements, con’t.  External entity o A person, organization, or system that is external to the system o Has interactions with the system (adds data to system or recieves data from system) o Include the following: • A name (noun) • Description © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 12
  • 13. Depicting Business Processes with DFDs  Business processes are too complex to be shown on a single DFD  A deliberate hierarchy is created with multiple “levels” of DFDs  To build the hierarchy, use Decomposition o Child diagrams show a portion of the parent diagram in greater detail
  • 14. DFD Hierarchy o Context Diagram decomposes into Level 0 diagram © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 14
  • 15. DFD Hierarchy o Processes on Level 0 diagram each decompose into separate Level 1 diagrams o Processes on Level 1 diagrams may or may not be decomposed into separate Level 2 diagrams. o Processes are decomposed until each process is a single-purpose, primitive process. © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 15
  • 16. Balancing  Ensures that information presented at one level of a DFD is accurately represented in the next level DFD.  Data flows on parent diagram are carried down to child diagram.  Child diagram adds new processes and new data flows © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 16
  • 17. Context Diagram  Top-level DFD in every process model  Shows the context into which the business process fits  Shows the overall business process as just one process (process ‘zero’)  Shows all the external entities that receive information from or contribute information to the system © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 17
  • 18. Level O Diagram  Shows all the major processes that comprise the overall system – the internal components of process 0  Shows how the major processes are interrelated by data flows  Shows external entities and the major processes with which they interact  Adds stored data via the data stores © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 18
  • 19. Level 1 Diagrams  Create one level 1 diagram for every major process on the level 0 diagram  Shows the internal processes that comprise a single process on the level 0 diagram  Shows how information moves to and from each of these processes  If a parent process is decomposed into, say, three child processes, the these three child processes wholly and completely make up the parent process
  • 20. Level 2 Diagrams  Shows all processes that comprise a single process on the level 1 diagram  Shows how information moves to and from each of these processes  Level 2 diagrams may not be needed for all level 1 processes  Correctly numbering each process helps the user understand where the process fits into the overall system
  • 21. Diagram Numbering  Correctly numbering each process helps the user understand where the process fits into the overall hierarchy o Context Diagram is always “Process 0” o Level 0 processes are always numbered with integer value (1, 2, 3, etc.) o Level 1 processes always have one “dot”: parent number “dot” unique number (1.1, 1.2, 1.3, etc.) o Level 2 processes always have two “dots”: parent number “dot” unique number (1.1.1, 1.1.2, 1.1.3, etc.)
  • 22. Alternative Data Flows  Where a process can produce different data flows given different conditions  We show both data flows and use the process description to explain why they are alternatives  Tip -- alternative data flows often accompany processes with IF statements
  • 23. Process Descriptions  Text-based process descriptions provide more information about the process than the DFD alone  CASE tools enable easy creation of descriptions  If the logic underlying the process is quite complex, more detail may be needed in the form of o Structured English o Decision trees o Decision tables
  • 24. CASE Entry of Process Description © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 24
  • 25. Your Turn  At this point in the process it is easy to lose track of the “big picture”.  Describe the contribution of data flows, data stores, and processes to a process model.  Describe in your own words the relationship between the DFDs and the ultimate new application being developed. © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 25
  • 26. Creating Data Flow Diagrams HOW DFDS ARE DEVELOPED © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 26
  • 27. Steps in Building DFDs  Build the context diagram o Identify the external entities and the major inflows they supply and the outflows they receive  Identify all major processes encompassed by the Context Diagram o Each major event / use case is “handled” by a process  Create DFD “fragments” for each event / use case o Each DFD fragment is a mini-diagram showing the process and the external entities and data stores with which it interacts. © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 27
  • 28. Steps in Building DFDs, con’t.  Organize DFD fragments into level 0 diagram  Decompose each level 0 process into a level 1 diagram; decompose level 1 processes into level 2 diagrams as needed; etc.  Validate DFDs with user to ensure completeness and correctness © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 28
  • 29. Integrating Use Cases  DFDs start with events, use cases and the requirements definition  The DFDs often flow directly from the use cases o Names of use cases become major processes on the Level 0 diagram o Steps in the use case become processes on the Level 1 diagram o Inputs and outputs become data flows on the Level 1 diagram (and below) © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 29
  • 30. Illustration – Developing DFDs Creating the Context Diagram © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 30
  • 31. Illustration – Developing DFDs Create a DFD “fragment” based on a use case © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 31
  • 32. Illustration – Developing DFDs Merge DFD “fragment” diagrams into the Level 0 diagram © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 32
  • 33. Illustration – Developing DFDs Develop Level 1 diagrams for every process on the Level 0 diagram © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 33
  • 34. Illustration – Developing DFDs Develop Level 2 diagrams for any process on a Level 1 diagram that appears busy or complex © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 34
  • 35. Evaluate DFDs for Quality © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 35
  • 36. Common DFD Errors  Syntax errors – violating “drawing” rules o Every data flow must connect to a process. o Every process must have at least one inflow and one outflow.  Semantics errors – errors in the meaning of the diagrams o Walk-through diagrams with users o Verify that inputs shown are logically sufficient to produce the outputs o Check for consistent levels of decomposition o Check for consistent use of terminology © 2015 JOHN WILEY & SONS. ALL RIGHTS RESERVED. 36