Unit 3: Process Oriented Analysis and Design

Discussion
LJ

Process-Oriented Analysis

Conceptual Foundation

  • System Model: we need a feedback to eliminate the entropy
notion image
 

Structured System Analysis

  • A context defines a setting or environment.
  • Context Diagram AKA DFD Level 0
notion image
notion image
  • Data Flow Diagram (DFD)
notion image
  • Decomposed DFD (Lower Level) of Process 1.0
notion image
  • Data Dictionary
notion image
notion image
notion image
notion image

Structured System Analysis Activities

These are the steps to follow for analyzing a structure system:
  1. Develop a context diagram
    1. Define the boundaries (i.e., scope) of the application. Specifically, define what the application will do and what it will not do. Draw the circle identifying the application and write the application name in the center.
    2. Using the application boundary as a starting point, identify all external entities with which the application must interact. For each entity, draw one square on the diagram and label the square.
    3. For each entity, create a definition in the data dictionary.
    4. For each external entity, identify the specific data flows that define the interface.
    5. For each data flow, create a definition and list of tentative contents in the data dictionary.
  1. Develop a set of balanced data flow diagrams: There are 2 types of DFDs:
    1. Logical DFD:
      1. Focus on what happens in a particular information flow
      2. logical DFD doesn’t delve into the technical aspects of a process or system, such as how the process is constructed and implemented
      3. Non-technical employees should be able to understand these diagrams
    2. Physical DFD
      1. focus on how things happen in an information flow.
      2. A detailed physical data flow diagram can facilitate the development of the code needed to implement a data system.
  1. Develop a data dictionary
  1. Optionally, develop a state-transition diagram if building an on-line or real-time application
 
 

Process-Oriented Design

 

Structure Chart

In all methods of documentation, the starting point is a structure chart
notion image
 
Read more about moving between the DFD levels from this page https://www.lucidchart.com/pages/data-flow-diagram
 
Resources