SlideShare a Scribd company logo
1 of 45
SSAD
Tools
&
technique S
PRAGNESH DAVE : 1
SAHELI KHERATKAR :2
SUREKHA RASKAR :3
RASIKA PATIL : 4
RICHA KOTHARI : 6
MINAL CHAUHAN : 7
NAMRATA JEURKAR : 8
SNEHAL BARI : 9
ASHWIN PATIL : 10
MALVIKA BANSAL : 11
RASHMI MAHASKAR : 12
TASVIR ZAIDI :13
SHILPA TAHAKAR: 14
PRESENTED
BY
Management Information System
MIS is a system consisting of people,
machines, procedures, databases and data
models, as its elements.
The system gathers data from the internal
and external sources of a organization,
processes it and supplies information.
 SSAD was introduced in 1981 as the standard method of
analysis and design developed by CCTA (Central
Computing and Telecommunications Agency) for UK
Government projects
 SSAD was made mandatory for all new information
system developments in 1983
HISTORY
 Structured Systems Analysis and Design (SSAD) is an
integrated set of standards and guides for the analysis and
design of computer systems
 It is an integrated set of standards and guidelines consisting
of : Structural standards, which define the structure of a
development project in the form of
explicitly defined tasks, with clearly defined
interfaces between them, and also the tangible
products
Structured Systems Analysis and Design
 Improves productivity
 Improves flexibility
 Improves quality by reducing error rates
 Delivers the system to users on time
 Prevents IT developers’ bureaucracy
 Delivers systems that meets user's needs
Benefits Of SSAD
Disadvantages Of SSAD
 The size of SSAD is a big hindrance to using it in all
circumstances
 There is a large investment in cost and time involved in
training people to use the technique to come to terms with
 There are lot of standards for the preparation and
presentation of documents
Data Flow Diagram
Data Dictionary
Decision Tree
Structured English
Decision Table
Tools of SSAD
Data Flow Diagram
 Data Flow Diagram is a graphical representation of
the logical flow of the data.
 It helps in expressing the system’s requirements in
simple and understandable form
 It is also known as a bubble chart.
 Its aim is to clarify the system requirements and
identify major transformations that will become
programs in system design
 It decomposes the requirement specifications down
to the lowest level of details
DFD contains 4 graphic symbols for
 Source/destination
 Data flow
 Process
 Data store
Source/destination
Sign: Square.
Symbol:
Meaning: source/destination
Description: It represents source/destination
of system data.
 Sign: Arrow
 Symbol:
 Meaning: Data Flow
 Description : It identifies the data flow;
it is a pipeline through which the data flows.
Data Flow
 Sign: circle/ bubble
 Symbol:
Meaning: Process
 Description: It represents a process that
transforms incoming data flow into outgoing
flow.
Process
 Sign: Rectangle
 Symbol:
 Meaning: Data store
 Description:It represents data store.
Data store
 Processes should be named and numbered
 The direction of flow is from top to bottom from left to
right
 The name of the data stores, sources and destination is in
capital letter.
 Process and data flows name have the first letter capital
 When a process is explored / divided in lower level they
are number properly
Rules for constructing /drawing DFD
In case of payroll system to prepare salary statement for each
employee data flow can be represented as-
Employee Data
Accounts Dept
Payroll
processing Salary statement
Employee
file
Employee
 Though DFD is very effective when required
design is not clear and the user requires only graphic
representation but more than 10-12 processes will
make system complex and difficult to understand.
ADVANTAGE & DISADVANTAGE
Data Dictionary
A data dictionary is a structured repository of data. It
is a set of rigorous definitions of all DFD data elements
and data structure
 It supports documentation in a better way
 It serves as a common database for programmer and
can be also used for control purposes
THERE ARE THREE CLASSES OF ITEMS TO BE
DEFINED:
1. Data element -
the smallest unit of data that provides for no further
decomposition.
2. Data structure -
a group of data elements handled as a unit
3. Data flows/stores -
data flows are nothing but data structures in motion,
whereas data stores are data structures at rest.
Rules for constructing Data Dictionary
 The terms used to describe data structures are always in
capital letters
Assigned names should be straightforward and user
oriented
 There should be names for every data flow, data store,
data structure and data element
 Consistency checks should be performed
 Identification numbers of the process and their names
should be mentioned in the data dictionary
STRUCTURED ENGLISH
 Structured English aims at getting the benefits of both the
programming logic and natural language
 It uses logical construction and imperative sentences
designed to carry out instructions for action
 Decision are made through IF-THEN-ELSE
statements
 Its sentences should be precise, concise and clear
in word and meaning
Example of Structured English
A bank will grant loan under the following
conditions :
 If a customer has an account with the bank and
had no loan outstanding, loan will be granted
 If a customer has an account with the bank but
some amount is outstanding from previous loans
then loan will be granted if special approval is
given
 Reject all loan applications in all other cases
IF customer has a Bank Account THEN
IF Customer has no dues from previous account
THEN
Allow loan facility
ELSE
IF Management Approval is obtained THEN
Allow loan facility
ELSE
Reject
DECISION TREE
 Clear graphic representation of the logic, which looks like
the branches of a tree, called decision tree
 Easy to construct, read and update
 Turns a decision table into a diagram & is read from left to
right
 Can be used to verify logic in problem that involves
few complex decisions.
Example: Computer dealer gets a trade discount of 35% if the order size is 6 or
more PCs, whereas for orders from educational institutions and individuals, 15%
discount is allowed on order of 6-19 PCs, 20% on orders for 20-49 PCs; 30% on
orders for 50 PCs or more
Dealer 6 or more 35%
Less than 6 NIL
DISCOUNT POLICY
Educational
Institution or individual 50 or more 30%
20 – 49 20%
6-19 15%
Less than 6 NIL
Decision tree
DECISION TABLE
 A matrix of rows and columns that shows conditions
and actions
 Decision rules state the procedure to be followed
when certain conditions exist.
 Decision table are best-suited for dealing with
complex branching routines, e.g., inventory control
 A condition is usually given a value of 'Y' for 'Yes,
if is true", 'N' for 'No' and a dash for 'Do not care' in
each rule.
 Decision table consists of four sections. A condition stub at the
upper left, a condition entry at the upper right, an action stub at the
lower left, and an action entry at the lower right
Questions are listed in the condition stub and the action stub
outlines the action to be taken to meet each condition
 Condition entry part contains the answers to
questions asked in the condition stub and the action
entry part indicates the appropriate action
Condition Stub Condition Entry
Action Stub Action Entry
In constricting a decision table, the following rules are
observed:
 A decision should be given a name to be written at the top left
of the table
 The logic should be independent of the sequence in which the
condition rules were written but the action takes place in the
order in which the events occur
 Consistent and standardized language should be used
 Duplication of the terms should be avoided to the maximum
extent
TECHNIQUES OF STRUCTURAL SYSTEM
ANALYSIS AND DESIGN
Data Flow Modeling (DFM)
Logical Data Structure (LDS)
Entity Life History (ELH)
DATA FLOW MODELING
 Pictorial representations of systems have long
been acknowledged as being more effective than
narrative
 Conventional flowcharts have been used for
many years, with considerable advantages over
narrative
Here are some examples:
 System flowchart (for high-level system
description)
 Clerical procedure flowchart (for low-level
description)
 Computer run chart
Disadvantages
 They confuse the logical aspects of the system (what is
done) with the specific physical implementation (how
it is done)
 They do not allow any easy transition from high-level
broad description to detailed low-level description
 They are "procedure orientated", placing the greatest
emphasis on procedures in the system, rather than on
data which appears only occasionally on the flow chart
LOGICAL DATA STRUCTURE:
 The pictorial representation of entities and the
relationships between them is called an Entity
model
 A current system Logical Data Structure
(LDS) is a form of Entity model which
represents entities and their relationships in the
current system environment
Entities
 For those unfamiliar with the term "entity" its
nearest equivalent in more familiar
terminology is "file"
 A working definition, suitable at this stage, is
"something about which an organization keeps
data"
 An entity may be physical, e.g. Person,
Building, Machine etc, or conceptual, e.g. Cost
centre, project, etc.
ENTITY LIFE HISTORY
 Entity Life Histories (Elhs) look at a system
from a third viewpoint, providing a means of
representing how entities change within a
system with the passage of time
 Elhs start with the creation of an entity,
record the sequence of changes which take place
during its life within the system and end with its
removal from the system
ELHS & PROCESSES
Elhs are used to help define :
 the logic associated with update processes
 an examination of processes provides a
starting point to describe ELH concepts and
terminology
 ELHS are concerned with update processes
only
 Facilitate more focus on reducing maintenances
and time effort in system development
 Integrate change when needed
 Widely useful in industry - proven techniques
 Part of career growth in IT - lots of interesting
and well-paying jobs!
 Shows a steep increase in demand for systems
analysis skills
CONCLUSION
SSAD; TOOLS & TECHNIQUES

More Related Content

What's hot

System Development Life Cycle & Implementation of MIS
System Development Life Cycle & Implementation of MISSystem Development Life Cycle & Implementation of MIS
System Development Life Cycle & Implementation of MISGeorge V James
 
Knowledge discovery process
Knowledge discovery process Knowledge discovery process
Knowledge discovery process Shuvra Ghosh
 
System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)Showkot Usman
 
Object Oriented Database Management System
Object Oriented Database Management SystemObject Oriented Database Management System
Object Oriented Database Management SystemAjay Jha
 
Data base management system
Data base management systemData base management system
Data base management systemNavneet Jingar
 
DSS and decision support system and its types
DSS and decision support system and its typesDSS and decision support system and its types
DSS and decision support system and its typesHammalAkhtar
 
dimensions of information system
dimensions of information systemdimensions of information system
dimensions of information systemAZEEM M
 
GDSS Group Decision Support System
GDSS Group Decision Support SystemGDSS Group Decision Support System
GDSS Group Decision Support SystemEnaam Alotaibi
 
System Analysis and Design
System Analysis and DesignSystem Analysis and Design
System Analysis and DesignJoel Briza
 
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALADATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALASaikiran Panjala
 
Data Flow Diagram
Data Flow DiagramData Flow Diagram
Data Flow Diagramnethisip13
 
MIS and Digital Firms
MIS and Digital FirmsMIS and Digital Firms
MIS and Digital FirmsPulkit Sharma
 
Chapter 2 database environment
Chapter 2 database environmentChapter 2 database environment
Chapter 2 database environment>. <
 
Decision Support System in MIS.pptx
Decision Support System in MIS.pptxDecision Support System in MIS.pptx
Decision Support System in MIS.pptxrajalakshmi5921
 
Mis system analysis and system design
Mis   system analysis and system designMis   system analysis and system design
Mis system analysis and system designRahul Hedau
 
System Analysis and Design slides by yared yenealem DTU Ethiopia
System Analysis and Design slides by yared yenealem DTU EthiopiaSystem Analysis and Design slides by yared yenealem DTU Ethiopia
System Analysis and Design slides by yared yenealem DTU EthiopiaDebre Tabor University
 
Decision tree- System analysis and design
Decision tree- System analysis and designDecision tree- System analysis and design
Decision tree- System analysis and designProf.Nilesh Magar
 

What's hot (20)

DATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MININGDATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MINING
 
System Development Life Cycle & Implementation of MIS
System Development Life Cycle & Implementation of MISSystem Development Life Cycle & Implementation of MIS
System Development Life Cycle & Implementation of MIS
 
Knowledge discovery process
Knowledge discovery process Knowledge discovery process
Knowledge discovery process
 
System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)
 
Object Oriented Database Management System
Object Oriented Database Management SystemObject Oriented Database Management System
Object Oriented Database Management System
 
Data base management system
Data base management systemData base management system
Data base management system
 
DSS and decision support system and its types
DSS and decision support system and its typesDSS and decision support system and its types
DSS and decision support system and its types
 
dimensions of information system
dimensions of information systemdimensions of information system
dimensions of information system
 
GDSS Group Decision Support System
GDSS Group Decision Support SystemGDSS Group Decision Support System
GDSS Group Decision Support System
 
System Analysis and Design
System Analysis and DesignSystem Analysis and Design
System Analysis and Design
 
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALADATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
 
Data Flow Diagram
Data Flow DiagramData Flow Diagram
Data Flow Diagram
 
MIS and Digital Firms
MIS and Digital FirmsMIS and Digital Firms
MIS and Digital Firms
 
Chapter 2 database environment
Chapter 2 database environmentChapter 2 database environment
Chapter 2 database environment
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
Big data Analytics
Big data AnalyticsBig data Analytics
Big data Analytics
 
Decision Support System in MIS.pptx
Decision Support System in MIS.pptxDecision Support System in MIS.pptx
Decision Support System in MIS.pptx
 
Mis system analysis and system design
Mis   system analysis and system designMis   system analysis and system design
Mis system analysis and system design
 
System Analysis and Design slides by yared yenealem DTU Ethiopia
System Analysis and Design slides by yared yenealem DTU EthiopiaSystem Analysis and Design slides by yared yenealem DTU Ethiopia
System Analysis and Design slides by yared yenealem DTU Ethiopia
 
Decision tree- System analysis and design
Decision tree- System analysis and designDecision tree- System analysis and design
Decision tree- System analysis and design
 

Viewers also liked

3.9 techniques and tools for systems development
3.9 techniques and tools for systems development3.9 techniques and tools for systems development
3.9 techniques and tools for systems developmentmrmwood
 
JAD - Joint Applications Development
JAD - Joint Applications DevelopmentJAD - Joint Applications Development
JAD - Joint Applications DevelopmentJohn Crosby
 
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddel
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddelCHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddel
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddelmohamed khalaf alla mohamedain
 
Audit p7 completion
Audit p7 completionAudit p7 completion
Audit p7 completionjosianne1977
 
Post completion audit (pca)
Post completion audit (pca)Post completion audit (pca)
Post completion audit (pca)edwardntulo
 
What is Strategic Planning, and Why is it Important?
What is Strategic Planning, and Why is it Important?What is Strategic Planning, and Why is it Important?
What is Strategic Planning, and Why is it Important?Ruth M Tappin
 
System Analysis And Design Management Information System
System Analysis And Design Management Information SystemSystem Analysis And Design Management Information System
System Analysis And Design Management Information Systemnayanav
 
Requirements analysis
Requirements analysisRequirements analysis
Requirements analysisasimnawaz54
 

Viewers also liked (10)

3.9 techniques and tools for systems development
3.9 techniques and tools for systems development3.9 techniques and tools for systems development
3.9 techniques and tools for systems development
 
Evaluating and selecting software packages a review
Evaluating and selecting software packages a reviewEvaluating and selecting software packages a review
Evaluating and selecting software packages a review
 
JAD - Joint Applications Development
JAD - Joint Applications DevelopmentJAD - Joint Applications Development
JAD - Joint Applications Development
 
Transition to System Design
Transition to System DesignTransition to System Design
Transition to System Design
 
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddel
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddelCHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddel
CHAPTER 6 REQUIREMENTS MODELING: SCENARIO based Model , Class based moddel
 
Audit p7 completion
Audit p7 completionAudit p7 completion
Audit p7 completion
 
Post completion audit (pca)
Post completion audit (pca)Post completion audit (pca)
Post completion audit (pca)
 
What is Strategic Planning, and Why is it Important?
What is Strategic Planning, and Why is it Important?What is Strategic Planning, and Why is it Important?
What is Strategic Planning, and Why is it Important?
 
System Analysis And Design Management Information System
System Analysis And Design Management Information SystemSystem Analysis And Design Management Information System
System Analysis And Design Management Information System
 
Requirements analysis
Requirements analysisRequirements analysis
Requirements analysis
 

Similar to SSAD; TOOLS & TECHNIQUES

It 302 computerized accounting (week 2) - sharifah
It 302   computerized accounting (week 2) - sharifahIt 302   computerized accounting (week 2) - sharifah
It 302 computerized accounting (week 2) - sharifahalish sha
 
System Data Modelling Tools
System Data Modelling ToolsSystem Data Modelling Tools
System Data Modelling ToolsLiam Dunphy
 
Accountants can use data flow diagrams (DFDs) to depict the physical.docx
Accountants can use data flow diagrams (DFDs) to depict the physical.docxAccountants can use data flow diagrams (DFDs) to depict the physical.docx
Accountants can use data flow diagrams (DFDs) to depict the physical.docxrenatas0nie
 
Design Flow Diagram for Information System
Design Flow Diagram for Information SystemDesign Flow Diagram for Information System
Design Flow Diagram for Information Systemarifasyrafcp13
 
Chapter08 structuring system requirements
Chapter08 structuring system requirementsChapter08 structuring system requirements
Chapter08 structuring system requirementsDhani Ahmad
 
Data flow diagrams dfd
Data flow diagrams dfdData flow diagrams dfd
Data flow diagrams dfdAlam Fareed
 
Dfd over flowcharts
Dfd over flowcharts Dfd over flowcharts
Dfd over flowcharts Ashwathy Nair
 
online blood bank system design
online blood bank system designonline blood bank system design
online blood bank system designRohit Jawale
 
Library management system
Library management systemLibrary management system
Library management systemParesh Gosavi
 
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Usman Tariq
 
Is 581 milestone 11 and 12 case study coastline systems consulting
Is 581 milestone 11 and 12 case study coastline systems consultingIs 581 milestone 11 and 12 case study coastline systems consulting
Is 581 milestone 11 and 12 case study coastline systems consultingprintwork4849
 
analysis and design of information system
analysis and design of information systemanalysis and design of information system
analysis and design of information systemRenu Sharma
 
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionary
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionarySe 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionary
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionarybabak danyal
 

Similar to SSAD; TOOLS & TECHNIQUES (20)

It 302 computerized accounting (week 2) - sharifah
It 302   computerized accounting (week 2) - sharifahIt 302   computerized accounting (week 2) - sharifah
It 302 computerized accounting (week 2) - sharifah
 
System Data Modelling Tools
System Data Modelling ToolsSystem Data Modelling Tools
System Data Modelling Tools
 
Accountants can use data flow diagrams (DFDs) to depict the physical.docx
Accountants can use data flow diagrams (DFDs) to depict the physical.docxAccountants can use data flow diagrams (DFDs) to depict the physical.docx
Accountants can use data flow diagrams (DFDs) to depict the physical.docx
 
Design Flow Diagram for Information System
Design Flow Diagram for Information SystemDesign Flow Diagram for Information System
Design Flow Diagram for Information System
 
Df dtutorial
Df dtutorialDf dtutorial
Df dtutorial
 
MIS.ppt
MIS.pptMIS.ppt
MIS.ppt
 
Chapter08 structuring system requirements
Chapter08 structuring system requirementsChapter08 structuring system requirements
Chapter08 structuring system requirements
 
Data flow diagrams dfd
Data flow diagrams dfdData flow diagrams dfd
Data flow diagrams dfd
 
Dfd over flowcharts
Dfd over flowcharts Dfd over flowcharts
Dfd over flowcharts
 
online blood bank system design
online blood bank system designonline blood bank system design
online blood bank system design
 
Library management system
Library management systemLibrary management system
Library management system
 
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
 
Is 581 milestone 11 and 12 case study coastline systems consulting
Is 581 milestone 11 and 12 case study coastline systems consultingIs 581 milestone 11 and 12 case study coastline systems consulting
Is 581 milestone 11 and 12 case study coastline systems consulting
 
analysis and design of information system
analysis and design of information systemanalysis and design of information system
analysis and design of information system
 
Df dtutorial
Df dtutorialDf dtutorial
Df dtutorial
 
Experiment no 6
Experiment no 6Experiment no 6
Experiment no 6
 
VTU - MIS Module 4 - SDLC
VTU - MIS Module 4 - SDLCVTU - MIS Module 4 - SDLC
VTU - MIS Module 4 - SDLC
 
Process modeling
Process modelingProcess modeling
Process modeling
 
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionary
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionarySe 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionary
Se 381 - lec 21 - 23 - 12 may09 - df-ds and data dictionary
 
Dbms
DbmsDbms
Dbms
 

More from Malvika Bansal

Competition Commission of India
Competition Commission of IndiaCompetition Commission of India
Competition Commission of IndiaMalvika Bansal
 
Limon : New Product Development and its Cost-Benefit Analysis
Limon : New Product Development and its Cost-Benefit AnalysisLimon : New Product Development and its Cost-Benefit Analysis
Limon : New Product Development and its Cost-Benefit AnalysisMalvika Bansal
 
HR Practices in Biotech Industry
HR Practices in Biotech IndustryHR Practices in Biotech Industry
HR Practices in Biotech IndustryMalvika Bansal
 
REABSORB : AN ABSORBABLE STENT
REABSORB : AN ABSORBABLE STENTREABSORB : AN ABSORBABLE STENT
REABSORB : AN ABSORBABLE STENTMalvika Bansal
 
PROTEIN STRUCTURE DATABANK
PROTEIN STRUCTURE DATABANKPROTEIN STRUCTURE DATABANK
PROTEIN STRUCTURE DATABANKMalvika Bansal
 
Maggi noodles : ECONOMIC SURVEY
Maggi noodles : ECONOMIC SURVEYMaggi noodles : ECONOMIC SURVEY
Maggi noodles : ECONOMIC SURVEYMalvika Bansal
 

More from Malvika Bansal (11)

Competition Commission of India
Competition Commission of IndiaCompetition Commission of India
Competition Commission of India
 
Limon : New Product Development and its Cost-Benefit Analysis
Limon : New Product Development and its Cost-Benefit AnalysisLimon : New Product Development and its Cost-Benefit Analysis
Limon : New Product Development and its Cost-Benefit Analysis
 
HR Practices in Biotech Industry
HR Practices in Biotech IndustryHR Practices in Biotech Industry
HR Practices in Biotech Industry
 
REABSORB : AN ABSORBABLE STENT
REABSORB : AN ABSORBABLE STENTREABSORB : AN ABSORBABLE STENT
REABSORB : AN ABSORBABLE STENT
 
PROTEIN STRUCTURE DATABANK
PROTEIN STRUCTURE DATABANKPROTEIN STRUCTURE DATABANK
PROTEIN STRUCTURE DATABANK
 
Motivation : OB
Motivation : OBMotivation : OB
Motivation : OB
 
Ob
ObOb
Ob
 
Maggi noodles : ECONOMIC SURVEY
Maggi noodles : ECONOMIC SURVEYMaggi noodles : ECONOMIC SURVEY
Maggi noodles : ECONOMIC SURVEY
 
INVENTORY MANAGEMENT
INVENTORY MANAGEMENTINVENTORY MANAGEMENT
INVENTORY MANAGEMENT
 
SAMPLING
SAMPLINGSAMPLING
SAMPLING
 
SLIM
SLIMSLIM
SLIM
 

Recently uploaded

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 

Recently uploaded (20)

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 

SSAD; TOOLS & TECHNIQUES

  • 2. PRAGNESH DAVE : 1 SAHELI KHERATKAR :2 SUREKHA RASKAR :3 RASIKA PATIL : 4 RICHA KOTHARI : 6 MINAL CHAUHAN : 7 NAMRATA JEURKAR : 8 SNEHAL BARI : 9 ASHWIN PATIL : 10 MALVIKA BANSAL : 11 RASHMI MAHASKAR : 12 TASVIR ZAIDI :13 SHILPA TAHAKAR: 14 PRESENTED BY
  • 3. Management Information System MIS is a system consisting of people, machines, procedures, databases and data models, as its elements. The system gathers data from the internal and external sources of a organization, processes it and supplies information.
  • 4.  SSAD was introduced in 1981 as the standard method of analysis and design developed by CCTA (Central Computing and Telecommunications Agency) for UK Government projects  SSAD was made mandatory for all new information system developments in 1983 HISTORY
  • 5.  Structured Systems Analysis and Design (SSAD) is an integrated set of standards and guides for the analysis and design of computer systems  It is an integrated set of standards and guidelines consisting of : Structural standards, which define the structure of a development project in the form of explicitly defined tasks, with clearly defined interfaces between them, and also the tangible products Structured Systems Analysis and Design
  • 6.  Improves productivity  Improves flexibility  Improves quality by reducing error rates  Delivers the system to users on time  Prevents IT developers’ bureaucracy  Delivers systems that meets user's needs Benefits Of SSAD
  • 7. Disadvantages Of SSAD  The size of SSAD is a big hindrance to using it in all circumstances  There is a large investment in cost and time involved in training people to use the technique to come to terms with  There are lot of standards for the preparation and presentation of documents
  • 8. Data Flow Diagram Data Dictionary Decision Tree Structured English Decision Table Tools of SSAD
  • 9. Data Flow Diagram  Data Flow Diagram is a graphical representation of the logical flow of the data.  It helps in expressing the system’s requirements in simple and understandable form  It is also known as a bubble chart.  Its aim is to clarify the system requirements and identify major transformations that will become programs in system design  It decomposes the requirement specifications down to the lowest level of details
  • 10. DFD contains 4 graphic symbols for  Source/destination  Data flow  Process  Data store
  • 12.  Sign: Arrow  Symbol:  Meaning: Data Flow  Description : It identifies the data flow; it is a pipeline through which the data flows. Data Flow
  • 13.  Sign: circle/ bubble  Symbol: Meaning: Process  Description: It represents a process that transforms incoming data flow into outgoing flow. Process
  • 14.  Sign: Rectangle  Symbol:  Meaning: Data store  Description:It represents data store. Data store
  • 15.  Processes should be named and numbered  The direction of flow is from top to bottom from left to right  The name of the data stores, sources and destination is in capital letter.  Process and data flows name have the first letter capital  When a process is explored / divided in lower level they are number properly Rules for constructing /drawing DFD
  • 16. In case of payroll system to prepare salary statement for each employee data flow can be represented as- Employee Data Accounts Dept Payroll processing Salary statement Employee file Employee
  • 17.
  • 18.  Though DFD is very effective when required design is not clear and the user requires only graphic representation but more than 10-12 processes will make system complex and difficult to understand. ADVANTAGE & DISADVANTAGE
  • 19. Data Dictionary A data dictionary is a structured repository of data. It is a set of rigorous definitions of all DFD data elements and data structure  It supports documentation in a better way  It serves as a common database for programmer and can be also used for control purposes
  • 20. THERE ARE THREE CLASSES OF ITEMS TO BE DEFINED: 1. Data element - the smallest unit of data that provides for no further decomposition. 2. Data structure - a group of data elements handled as a unit 3. Data flows/stores - data flows are nothing but data structures in motion, whereas data stores are data structures at rest.
  • 21. Rules for constructing Data Dictionary  The terms used to describe data structures are always in capital letters Assigned names should be straightforward and user oriented  There should be names for every data flow, data store, data structure and data element  Consistency checks should be performed  Identification numbers of the process and their names should be mentioned in the data dictionary
  • 22. STRUCTURED ENGLISH  Structured English aims at getting the benefits of both the programming logic and natural language  It uses logical construction and imperative sentences designed to carry out instructions for action  Decision are made through IF-THEN-ELSE statements  Its sentences should be precise, concise and clear in word and meaning
  • 23.
  • 24.
  • 25. Example of Structured English A bank will grant loan under the following conditions :  If a customer has an account with the bank and had no loan outstanding, loan will be granted  If a customer has an account with the bank but some amount is outstanding from previous loans then loan will be granted if special approval is given  Reject all loan applications in all other cases
  • 26. IF customer has a Bank Account THEN IF Customer has no dues from previous account THEN Allow loan facility ELSE IF Management Approval is obtained THEN Allow loan facility ELSE Reject
  • 27. DECISION TREE  Clear graphic representation of the logic, which looks like the branches of a tree, called decision tree  Easy to construct, read and update  Turns a decision table into a diagram & is read from left to right  Can be used to verify logic in problem that involves few complex decisions.
  • 28. Example: Computer dealer gets a trade discount of 35% if the order size is 6 or more PCs, whereas for orders from educational institutions and individuals, 15% discount is allowed on order of 6-19 PCs, 20% on orders for 20-49 PCs; 30% on orders for 50 PCs or more Dealer 6 or more 35% Less than 6 NIL DISCOUNT POLICY Educational Institution or individual 50 or more 30% 20 – 49 20% 6-19 15% Less than 6 NIL Decision tree
  • 29.
  • 30. DECISION TABLE  A matrix of rows and columns that shows conditions and actions  Decision rules state the procedure to be followed when certain conditions exist.  Decision table are best-suited for dealing with complex branching routines, e.g., inventory control  A condition is usually given a value of 'Y' for 'Yes, if is true", 'N' for 'No' and a dash for 'Do not care' in each rule.
  • 31.  Decision table consists of four sections. A condition stub at the upper left, a condition entry at the upper right, an action stub at the lower left, and an action entry at the lower right Questions are listed in the condition stub and the action stub outlines the action to be taken to meet each condition  Condition entry part contains the answers to questions asked in the condition stub and the action entry part indicates the appropriate action Condition Stub Condition Entry Action Stub Action Entry
  • 32. In constricting a decision table, the following rules are observed:  A decision should be given a name to be written at the top left of the table  The logic should be independent of the sequence in which the condition rules were written but the action takes place in the order in which the events occur  Consistent and standardized language should be used  Duplication of the terms should be avoided to the maximum extent
  • 33.
  • 34. TECHNIQUES OF STRUCTURAL SYSTEM ANALYSIS AND DESIGN Data Flow Modeling (DFM) Logical Data Structure (LDS) Entity Life History (ELH)
  • 35. DATA FLOW MODELING  Pictorial representations of systems have long been acknowledged as being more effective than narrative  Conventional flowcharts have been used for many years, with considerable advantages over narrative Here are some examples:  System flowchart (for high-level system description)  Clerical procedure flowchart (for low-level description)  Computer run chart
  • 36. Disadvantages  They confuse the logical aspects of the system (what is done) with the specific physical implementation (how it is done)  They do not allow any easy transition from high-level broad description to detailed low-level description  They are "procedure orientated", placing the greatest emphasis on procedures in the system, rather than on data which appears only occasionally on the flow chart
  • 37. LOGICAL DATA STRUCTURE:  The pictorial representation of entities and the relationships between them is called an Entity model  A current system Logical Data Structure (LDS) is a form of Entity model which represents entities and their relationships in the current system environment
  • 38.
  • 39. Entities  For those unfamiliar with the term "entity" its nearest equivalent in more familiar terminology is "file"  A working definition, suitable at this stage, is "something about which an organization keeps data"  An entity may be physical, e.g. Person, Building, Machine etc, or conceptual, e.g. Cost centre, project, etc.
  • 40.
  • 41.
  • 42. ENTITY LIFE HISTORY  Entity Life Histories (Elhs) look at a system from a third viewpoint, providing a means of representing how entities change within a system with the passage of time  Elhs start with the creation of an entity, record the sequence of changes which take place during its life within the system and end with its removal from the system
  • 43. ELHS & PROCESSES Elhs are used to help define :  the logic associated with update processes  an examination of processes provides a starting point to describe ELH concepts and terminology  ELHS are concerned with update processes only
  • 44.  Facilitate more focus on reducing maintenances and time effort in system development  Integrate change when needed  Widely useful in industry - proven techniques  Part of career growth in IT - lots of interesting and well-paying jobs!  Shows a steep increase in demand for systems analysis skills CONCLUSION