Chap 9 - Process Modeling

  • Uploaded by: letnuk
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Chap 9 - Process Modeling as PDF for free.

More details

  • Words: 2,223
  • Pages: 51
Prepared by: Jefferson P. Encina

      

Define systems modeling and differentiate between logical and physical system models. Define process modeling and explain its benefits. Explain when to construct process models and where to store them. Construct a context diagram to illustrate a system’s interfaces with its work environment. Perform event partitioning and organize events in a functional decomposition diagram. Draw event diagrams and merge those events into a system diagram. Draw primitive data flow diagrams and describe the elementary data flows and processes in terms of data structures and procedural logic (Structured English and decision tables), respectively.



It removes biases that are the result of the way the current system is implemented.



It reduced the risk of missing business requirements.



It allows us to communicate with end-user for non-technical or less technical languages.

A technique for organizing and documenting the structure and flow of data through a system PROCESSES and/or the logic, policies, and procedures to be implemented by a system’s PROCESSES.

One special type of Process model is the Context Diagram. Various type of Process Model such as Program Structure charts, Logic flowcharts and decision tables.

A tool that depicts the flow of data through a system and the work or processing performed by that system.

Three Symbols and One Connection •Round rectangles – represent processes or work to be done. •Squares – represent external agents (boundary of the system) •Open-ended boxes – represent data stores (files or databases) •Arrows – represent data flows, or inputs and outputs, to and from the processes.









Round rectangles – represent processes or work to be done. Squares – represent external agents (boundary of the system) Open-ended boxes – represent data stores (files or databases) Arrows – represent data flows, or inputs and outputs, to and from the processes.

Data Flow Diagram

Flowchart

Processes can operate in Execute only one at a time parallel. Simply, executes and works simultaneously Shows the flow of data Shows the sequence of through a system. Looping processes or operation in an and Branching are not algorithm or program. Include typically shown Looping and Branching Can have dramatically different timing. Include processes that happens hourly, daily, weekly, yearly, and on demand

Doesn’t happen. Consistent timing.



System Thinking ◦ the application of formal systems theory and concepts to systems problem solving.

Systems theory and concepts help us understand the way systems are organized and how they work.



Process - work performed by a system in response to incoming data flows or conditions. A synonym is transform.

Different Process Modeling Notations Process name Gane & Sarson shape

Process name DeMarco/

Process name SSADM/IDEFO shape

Yourdon shape Logical process –what work or action is being performed Physical process – who or what is doing that work or activity



External events are initiated by external agents. They result in an input transaction or data flow.



Temporal events are triggered on the basis of time, or something that merely happens. They are indicated by a control flow.



State events trigger processes based on a system’s change from one state or condition to another. They are indicated by a control flow.

Event Decomposition Diagram (partial)

External Event DFD Event diagram – data flow diagram that depicts the context for a single event. •One diagram for each event process Depicts •Inputs from external agents •Outputs to external agents •Data stores from which records must be "read." Data flows should be added and named to reflect the data that is read. •Data stores in which records must be created, deleted, or updated. Data flows should be named to reflect the update.

External Event DFD (more complex)

Temporal Event DFD



the act of breaking a system into its component subsystems, processes, and subprocesses.

•Each process in a decomposition diagram is either a parent process, a child process (of a parent), or both. •A parent must have two or more children – a single child does not make sense because that would not reveal any additional detail about the system. •In most decomposition diagramming standards, a child may have only one parent. •Finally, a child of one parent may be the parent of its own children.

A tool used to depict the decomposition of a system. Also known as Hierarchy chart.

Function – a set of related and ongoing activities of a business. Event – a logical unit of work that must be completed as a whole. Sometimes called a transaction. Elementary process – a discrete, detailed activity or task required to complete the response to an event. Also called a primitive process.



Decomposition diagrams and data flow diagrams will prove very effective tools for identifying processes, but are not good at showing the logic inside those processes.

Tool to address the problem:  Structured English Language – is a language and syntax for specifying the logic of a process.



It is not pseudocode. It does not concern itself with declarations, initialization, linking, and such technical issues.

Problem with Natural English as a Procedure Specification Language • Many of us do not write well, and we also tend not to question our writing abilities. • Many of us are too educated! • Some of us write everything like it was a program. • Too often, we allow the jargon and acronyms of computing to dominate our language. • English statements frequently have an excessive or confusing scope. • We overuse compound sentences. • Too many words have multiple definitions. • Too many statements use imprecise adjectives. • Conditional instructions can be imprecise. • Compound conditions tend to show up in natural English.

1. For each CUSTOMER NUMBER in the data store CUSTOMERS: a. For each LOAN in the data store LOANS that matches the above CUSTOMER NUMBER 1) Keep a running total of NUMBER OF LOANS for the CUSTOMER NUMBER 2) Keep a running total of ORIGINAL LOAN PRINCIPAL for the CUSTMER NUMBER 3) Keep a running total of CURRENT LOAN BALANCE for the CUSTMER NUMBER 4) Keep a running total of AMOUNTS PAST DUE for the CUSTMER NUMBER b. If the TOTAL AMOUNTS PAST DUE for the CUSTOMER NUMBER is greater than 100.00 then 1) Write the CUSTOMER NUMBER and data in the data flow LOANS AT RISK. Else 1) Exclude the CUSTOMER NUMBER and data from the data flow LOANS AT RISK.

Structured English Constructs (Part 1)

Structured English Constructs (Part 2)

A Sample Decision Table

A SIMPLE POLICY STATEMENT CHECK CASHING IDENTIFICATION CARD A customer with check cashing privileges is entitled to cash personal checks of up to $75.00 and payroll checks from companies pre-approved by LMART. This card is issued in accordance with the terms and conditions of the application and is subject to change without notice. This card is the property of LMART and shall be forfeited upon request of LMART.

SIGNATURE

Charles C. Parker, Jr.

EXPIRES

May 31, 2003

THE EQUIVALENT POLICY DECISION TABLE Condition and Actions C1: Type of check

Rule 1

Rule 2

personal payroll

Rule 3

Rule 4

personal payroll

C2: Check amount less than or equal to yes $75.00

Doesn’t matter

no

Doesn’t matter

C3: Company accredited by LMART

Doesn’t matter

yes

Doesn’t matter

No

A1: Cash the check

X

X X

X

A2: Don’t cash the check

Data flow – data that is input to or output from a process. ◦ A data flow is data in motion ◦ A data flow may also be used to represent the creation, reading, deletion, or updating of data in a file or database (called a data store). Composite data flow – a data flow that consists of other data flows. Control flow – a condition or nondata event that triggers a process. ◦ Used sparingly on DFDs.

Data Flow Packet Concept

Composite and Elementary Data Flows

Illegal Data Flows

Data conservation – the practice of ensuring that a data flow contains only data needed by the receiving process. ◦ Sometimes called starving the processes. ◦ New emphasis on business process redesign to identify and eliminate inefficiencies. ◦ Simplifies the interface between those processes. ◦ Must precisely define the data composition of each data flow, expressed in the form of data structures.

Data attribute – the smallest piece of data that has meaning to the users and the business. Data structure – a specific arrangement of data attributes that defines a single instance of a data flow.. ◦ The data attributes that comprise a data flow are organized into data structures. ◦ Data flows can be described in terms of the following types of data structures:  A sequence or group of data attributes that occur one after another. The selection of one or more attributes from a set of attributes. The repetition of one or more attributes.

Diverging data flow – a data flow that splits into multiple data flows. ◦ Indicates data that starts out naturally as one flow, but is routed to different destinations. ◦ Also useful to indicate multiple copies of the same output going to different destinations.

Converging data flow – the merger of multiple data flows into a single packet. ◦ Indicates data from multiple sources that can (must) come together as a single packet for subsequent processing.

Diverging and Converging Data Flows

External agent – an outside person, organization unit, system, or organization that interacts with a system. External agents are “processes” outside of the scope of the system or business. Also called an external entity. ◦ Forms the boundary or scope of the system. ◦ Define places where the system interfaces with its environment. ◦ As scope changes, external agents can become processes, and vice versa. ◦ Almost always one of the following:  An office, department, division, or individual. An external organization or agency. Another business or another information system. A system’s end-users or managers ◦ External agents should named with descriptive, singular noun

Data store – is an “inventory” of data. Synonyms are file and database. ◦ Frequently implemented as a file or database. ◦ Data flow are “data in motion”, data store is “data at rest”. ◦ Data store can be describe as the following “things”  Persons (or groups of persons) Places Objects Events (about which data is captured) Concepts (about which data is important) ◦ Data stores depicted on a DFD store all instances of data entities (depicted on an ERD) ◦ Named as the plural of the corresponding data model entity



Strategic systems planning

◦ A separate project that produces an IS strategy plan that defines an overall vision and architecture for IS. ◦ Enterprise process models illustrate important business areas and functions.



Business process redesign

◦ Analyze business processes and then redesign them to eliminate inefficiencies and bureaucracies before any (re)application of information technology.



Systems analysis (primary focus of this course) ◦ ◦ ◦ ◦

Model Model Model Model

the existing system including its limitations the target system’s logical requirements candidate technical solutions (physical DFDs only) the target technical solution (physical DFDs only)

1.

2. 3. 4. 5. 6.

Draw top-down physical DFDs that represent the current physical implementation of the system including its limitations. Convert the physical DFDs to their logical equivalents. Draw top-down logical DFDs that represent an improved system. Describe all data flows, data stores, policies, and procedures in a data dictionary or encyclopedia. Optionally, mark up copies of the logical DFDs to represent alternative physical solutions. Draw top-down physical DFDs that represent the target solution. THE ABOVE METHODOLOGY IS RARELY PRACTICED ANYMORE BECAUSE IT IS VERY CUMBERSOME AND TIMECONSUMING.

Draw a context DFD to establish initial project scope. 2. Draw a functional decomposition diagram to partition the system into subsystems. 3. Create an event-response list for the system to define events for which the system must have a response. 4. Draw an event DFD (or event handler) for each event. 5. Merge event DFDs into a system diagram (or, for larger systems, subsystem diagrams). 6. Draw detailed, primitive DFDs for the more complex event handlers. 7. Document data flows and processes in the data dictionary. THE ABOVE METHODOLOGY, BASED ON EVENT PARTITIONING, IS MORE COMMONLY PRACTICED. 1.

Event-Driven Process Modeling Strategy

Event-Driven Process Modeling Strategy

Event-Driven Process Modeling Strategy

 





One special type of process model. Illustrate the COMMUNICATION focus from the system owners’ and users’ perspective. A processlike model that actually illustrates a systems’ interfaces to the business and outside world. A process model used to document the scope for a system. Also called the environmental model. 1. Think of the system as a "black box." 2. Ask users what business transactions the system must respond to. These are inputs, and the sources are external agents. 3. Ask users what responses must be produced by the system. These are outputs, and the destinations are external agents. 4. Identify any external data stores, if any. 5. Draw a context diagram.

Context DFD

Functional Decomposition Diagram



Some (not necessarily all) event processes may be exploded into primitive diagrams to reveal more detail. ◦ Complex business transaction processes ◦ Process decomposed into multiple elementary processes ◦ Each elementary process is cohesive - it does only one thing ◦ Flow similar to computer program structure

Primitive DFD

Sample Data to Process CRUD Matrix

Sample Process to Location Association Matrix

Related Documents

Business Process Modeling
October 2019 28
Process Analysis Modeling
December 2019 21
Chap 9
December 2019 17

More Documents from ""