SlideShare una empresa de Scribd logo
1 de 34
1
Analysis of Most Common Process
Modelling Mistakes in BPMN Process Models
dr. Tomislav Rozman, Gregor Polančič, doc. dr. Romana Vajde Horvat
26. – 28. September 2007
Potsdam, Germany
Faculty of Electrical
Engineering and Computer
Science
University of Maribor, Slovenia
Institute of Informatics
2
Contents of the article
Introduction
 What is Business Process Management &
Modelling
 A little bit of history
 Similar work
Research method
Findings – process model antipatterns
Conclusions
Discussion
3
What is Business Process
management?
... a field of knowledge at the intersection between
management and information technology,
encompassing methods, techniques and tools to
design, enact, control, and analyze operational
business processes involving humans, organizations,
applications, documents and other sources of
information1 or
...most overused word in the last few years?
1 van der Aalst, W.M.P., ter Hofstede, A.H.M. and Weske, M.: "Business Process Management: A Survey", in Business Process Management,
Proceedings of the First International Conference. Springer Verlag, 2003.
4
Business process management /
business process lifecycle
Preparation
+
BP Modelling
+
BP Assessment
+
BP
Dissemination
+
Report a
'lesson learned'
Compare and
align with
business goal
BP
Implementation
+
no
yes
is responsible for
is responsible for
Defined process
needed
are responsible for
is responsible for
is responsible for
is responsible for
is responsible for
is responsible for
is responsible for
collaborate
Quality
Manager
Process
Performers
Process
Designer
Quality
Manager
IT Expert
Process
Owner
Process
Owner
Process
Performers
Process
Owner
Automate
the
process?
BP Usage BP tracking
& analysing
BP not needed
anymore
BP tailoring
needed
Performing BP
5
What is (Business) Process
modelling?
Better: Discrete process modelling
Goal: to capture the knowledge how people
(machines) perform their work (or, how we would like
them to perform it)
Main purpose: to ensure at least repeatability of
organisation's processes
Plethora of methods, methodologies, notations,…
... but no silver bullet
6
... Some process modelling
notations
EPC,
ARIS,
UML Activity diagrams,
OPM – Object Process Methodology,
BPMN – Business Process Modelling notation
Ontologically most complete (Recker et al, 2005)
7
BPMN notation
Visual representation of (business) processes - workflow
It defines graphical symbols and additional attributes for
process description
Covers the process modelling concepts and patterns very well
Easy to learn
Based on: EPC, Petri nets, Activity diagrams (UML)
Defines the mapping to execution languages (XPDL, BPEL4WS)
Merging with UML?
8
A quick introduction to BPMN notation (1/2)
name name name
~
name
~
name name
name
Sequence
Message flow
Association
name, condition,
code or message
name or message
Atomic activity - task Looping activity Ad-hoc process
Looping ad-hoc process Process (hidden details) Looping process (hidden details)
Process with details
Branching (parallel execution)
A
B
C D
Data-based OR-decision
A
B
C
D
condition
1
condition
2
default
Event-based OR-decision
A
B
C
D
1 day
mssage 1
message 2
Merging
A
B
C
D
9
A quick introduction to BPMN notation (2/2)
name or source
name or type
name or result
Start
event
End
event
Intermediate
event
Message Timer Process
error
Compensate Rule Link Multiple
mesage
Pool
name
mesage
message
 events
gateways 
pools and
messages
10
A little bit of history
BPMN notation has been taught since 2001 (University of
Maribor, Faculty of electrical engineering and computer
science)
BSc. Students of Information Systems, 8th semester
“Information processing organization and management”
practical lectures
The aim: (business) processes modeling, software
standards, software projects organisation
The modeling tool: Modified Microsoft Visio (‘’in-house’
symbols stencil)
11
Similar work
Project ‘anti-pattern’
 = a pitfall, or, set of classes of commonly-
reinvented bad solutions to problems
 = commonly repeated bad practices
workflow patterns
 control flow patterns, resource patterns,
data patterns and exception handling
patterns
12
The problem
BPMN does not prevent us to design bad
process models, including syntactical,
semantic and pragmatically errors.
Poor quality of process models can cause
poor quality software requirements resulting
in a poor information system.
13
Research method
Research question: What are the most common mistakes
when modelling business process diagrams using BPMN
notation?
a multiple case study research
Analysis of the process models (designed by students) from
2002 to 2007 by three independent persons
Extraction & classification of most common mistakes -> process
anti-pattern
Syntactical, semantic and pragmatic mistakes
14
Findings
A set of 15 proces model anti-patterns
 Connecting elements (1-9)
 Other mistakes (9-15)
Description of the antipatterns:
 Name,
 Possible practical impacts,
 Type of error,
 Proposed solution.
15
Pattern 1. Activities in one
pool are not connected
PoolAPoolB
Task C Task D
Task A Task B ...
...
...
...
Fig. 1. Anti-pattern: Activities in one pool
are not connected
PoolAPoolB
Task C Task D
Task A Task B ...
...
...
...
Fig. 2. Correct pattern
16
Pattern 2. Process does not
contain a start eventPoolA
Task A Task B ...
Message Event
Fig. 1. Anti-pattern: Process does not
contain a start event
PoolA
Task A Task B ...
Message Event
Start Event
Fig. 2. Correct pattern
17
Pattern 3. Process does not
contain an end event
PoolA
Task A
Task B...
Task C
Fig. 1. Anti-pattern: Process does not
contain an end event PoolA
Task A Task B...
Task C
End event
Terminate
Fig. 2. Correct pattern
18
Pattern 4. Sequence flow
crosses process boundary
Process X
Task A Task B...
...
Task C
Fig. 1. Anti-pattern: Sequence flow crosses
process boundary
Process X
Task A
Task B
...
...
Task C
Fig. 2. Correct pattern
19
Pattern 5. Sequence flow
crosses pool boundary
PoolA
Task A Task C
PoolB
Task B Task D
Message flow AB Message flow DC
Task E
Task F
...
...
End event
Start Event
Fig. 1. Anti-pattern: Sequence flow
crosses pool boundary
PoolA
Task A Task C
PoolB
Task B
Task D
Message flow AB
Message flow DC
Task E
Task F
Message flow EF
......
......
Start Event
End event
End event
Start Event
Fig. 2. Correct pattern
20
Pattern 6. Gateway receives,
evaluates or sends a message
PoolA
Task A Task B ......
Message X Message Y
Condition
Task C ...
PoolB
Fig. 1. Anti-pattern: Gateway receives,
evaluates or sends a message
PoolA
Task A
Task B ...
...
Message X MessageY
Condition
Task C ...
Analysing
message X
Send
message Y
...
PoolB
Fig. 2. Correct pattern
21
Pattern 7. Intermediate events are
placed on the edge of the pool
PoolA
Task A Task B
Start event
End event
Intemediate
event M1
Intermediate
event M2
Fig. 1. Anti-pattern: Intermediate events
are placed on the edge of the pool
PoolB
Task A Task B
Start event
End event
Intemediate
event M1
Intemediate
event M2
Fig. 2. Correct pattern
22
Pattern 8. Hanging intermediate
events or activities
PoolA
Task A Task c
Start event
End event
Intermediate event
Task B
Fig. 1. Anti-pattern: Hanging
intermediate events or activities PoolB
Task A Task C
Start event End event
Intermediate event
Task B
Fig. 2. Correct pattern
23
Pattern 9. Each lane in the
pool contains start event
Start event 1
Task A
End event
Start event 2
Task B
End event
Start event 3
Task C
End event
Lane1Lane2Lane3
PoolA
Fig. 1. Anti-pattern: Each lane in the pool contains start event
Start event 1
Task A
End event
Task B
Task C
Lane1Lane2Lane3
PoolA
Lane1Lane2Lane3
PoolA
Task A
End event
Task B
End event
Task C
End event
Start event
Start event 1
Start event 2
Start event 3
Fig. 1. Two possibilities of correct patterns
24
Pattern 10. Incorrect use of
time events
Task A Task B...
Task B ...
Delay
Exception
Time event used as a
DELAY mechanism
Time event representing
task DURATION
Fig. 1. : Anti-pattern: Incorrect use of time events
Solution: the meaning!
25
Pattern 11. Sequence and message
event represent data flow
Task A Task B ......
Message
AB
Fig. 1. Anti-pattern: Sequence and
message event represent data flow
Task A Task B ......
Message
AB
Fig. 2. Correct pattern
26
Pattern 12. Event is used as a
message flow source
Task A Task B ......
Message
A Message
B
A
B
Fig. 1. Anti-pattern: Event is used as a
message flow source
Task A
Send
message B
......
Message
A
Message
B
Task C
Fig. 2. Correct pattern
27
Pattern 13. Improper use of
flow elements
Starting task
A
Receiving
document X
...
Task A
finished
Document
X
...
Fig. 1. Anti-pattern: Improper use of flow
elements
Task A... ...
Document
X
Event X
Fig. 2. Correct pattern
28
Pattern 14. Starting timer placed
instead of intermediate timer
Task A...
...
Duration
Fig. 1. Anti-pattern: Starting timer
placed instead of intermediate timer
Task A...
...
Duration
Fig. 2. Correct pattern
29
Pattern 15. Exception flow is not
connected to the exception
Task A... ...
Duration
Fig. 1. Anti-pattern: Exception flow is
not connected to the exception
Task A...
...
Duration
...
Normal flow
Exception flow
Fig. 2. Correct pattern
30
Frequencies of the anti-patterns
appearance
1
2
4
5
6
7
89
10
11
12
13
14
15
3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Exception is modelled, but not
connected 
 Process does not
contain a end event
Sequence flow crosses
process boundary
 Hanging intermediate events or
activities
Starting timer placed instead of
intermediate timer 
31
Conclusions
We identified unique collection of most common
process modelling mistakes or anti-patterns
Possible practical problems:
 unwanted delays in the process performance,
 non-execution of the activities or
 simply ambiguity which could hinder the process
performers at their work
Practical implications:
 Improvement of the learning materials
 Design of A2 poster with anti-patterns & solutions
 Possible improvement of the BPMN
 Improvements of BPMN modelling tool: verification!
32
TheaudienceSpeaker
Recieve a
question
Answer the
question
Ask a question
Bored=true
Coffe break
Start of the
discussion
Does a question
make any sense?
yes
no
Mumble or smile
J
Discussion
33
Last but not least
Like it, share it, comment it!
And of course, don’t forget to reuse it (with contribution) in your projects.
If you want to learn how to identify, model, optimize processes, you can attend
our live or on-line learning courses:
ECQA Certified Business Process Manager - Foundation and Advanced level
ECQA Certified Business Process Manager in Higher Education Institutions
i-VBPM (BPM on interactive board for VET)
Subscribe to newsletter: here
Website: BICERO ltd.
E-mail: tomislav.rozman@bicero.com
LinkedIn: Tomislav Rozman 34

Más contenido relacionado

La actualidad más candente

Business Process Model and Notation (BPMN)
Business Process Model and Notation (BPMN)Business Process Model and Notation (BPMN)
Business Process Model and Notation (BPMN)Peter R. Egli
 
HSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and ServerlessHSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and ServerlessAmazon Web Services
 
Governance Deck Powerpoint Presentation Slides
Governance Deck Powerpoint Presentation SlidesGovernance Deck Powerpoint Presentation Slides
Governance Deck Powerpoint Presentation SlidesSlideTeam
 
PL-100 Microsoft Power Platform App Maker
PL-100 Microsoft Power Platform App MakerPL-100 Microsoft Power Platform App Maker
PL-100 Microsoft Power Platform App MakerNanddeep Nachan
 
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...camunda services GmbH
 
BPMN 2.0 - an introduction to the Level 1 Palette
BPMN 2.0 - an introduction to the Level 1 PaletteBPMN 2.0 - an introduction to the Level 1 Palette
BPMN 2.0 - an introduction to the Level 1 PaletteDeclan Chellar
 
Business Process Modeling with BPMN 2.0 - Second edition
Business Process Modeling with BPMN 2.0 - Second editionBusiness Process Modeling with BPMN 2.0 - Second edition
Business Process Modeling with BPMN 2.0 - Second editionGregor Polančič
 
Ultimate guide to_bpmn2_2016_edition_110716
Ultimate guide to_bpmn2_2016_edition_110716Ultimate guide to_bpmn2_2016_edition_110716
Ultimate guide to_bpmn2_2016_edition_110716yomito_2
 
Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...Chris Richardson
 
SAIPEM and SAP: the power of the networked economy
SAIPEM and SAP: the power of the networked economySAIPEM and SAP: the power of the networked economy
SAIPEM and SAP: the power of the networked economyMichele G.B. Camuri
 
Cosmos DB at VLDB 2019
Cosmos DB at VLDB 2019Cosmos DB at VLDB 2019
Cosmos DB at VLDB 2019Dharma Shukla
 
Best Practices for Adopting Microsoft Dynamics 365
Best Practices for Adopting Microsoft Dynamics 365Best Practices for Adopting Microsoft Dynamics 365
Best Practices for Adopting Microsoft Dynamics 365Precisely
 
Implementing BPMN 2.0 with Microsoft Visio
Implementing BPMN 2.0 with Microsoft VisioImplementing BPMN 2.0 with Microsoft Visio
Implementing BPMN 2.0 with Microsoft VisioGoutama Bachtiar
 
Organization and Business Process
Organization and Business ProcessOrganization and Business Process
Organization and Business ProcessGoutama Bachtiar
 
BPMN 2.0 Tutorial 01 - Basic Constructs
BPMN 2.0 Tutorial 01 - Basic ConstructsBPMN 2.0 Tutorial 01 - Basic Constructs
BPMN 2.0 Tutorial 01 - Basic ConstructsMichael zur Muehlen
 
BPMN Introduction and BPD in Visio
BPMN Introduction and BPD in VisioBPMN Introduction and BPD in Visio
BPMN Introduction and BPD in Visiovpmouttou
 

La actualidad más candente (20)

Sap architecture
Sap architectureSap architecture
Sap architecture
 
Business Process Model and Notation (BPMN)
Business Process Model and Notation (BPMN)Business Process Model and Notation (BPMN)
Business Process Model and Notation (BPMN)
 
HSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and ServerlessHSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and Serverless
 
Governance Deck Powerpoint Presentation Slides
Governance Deck Powerpoint Presentation SlidesGovernance Deck Powerpoint Presentation Slides
Governance Deck Powerpoint Presentation Slides
 
PL-100 Microsoft Power Platform App Maker
PL-100 Microsoft Power Platform App MakerPL-100 Microsoft Power Platform App Maker
PL-100 Microsoft Power Platform App Maker
 
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...
Richard Tarling, Managing Director and Randall Graebner, Senior Engineer from...
 
BPMN 2.0 - an introduction to the Level 1 Palette
BPMN 2.0 - an introduction to the Level 1 PaletteBPMN 2.0 - an introduction to the Level 1 Palette
BPMN 2.0 - an introduction to the Level 1 Palette
 
Liquidity management
Liquidity managementLiquidity management
Liquidity management
 
Cloud or On Premise
Cloud or On PremiseCloud or On Premise
Cloud or On Premise
 
Business Process Modeling with BPMN 2.0 - Second edition
Business Process Modeling with BPMN 2.0 - Second editionBusiness Process Modeling with BPMN 2.0 - Second edition
Business Process Modeling with BPMN 2.0 - Second edition
 
Ultimate guide to_bpmn2_2016_edition_110716
Ultimate guide to_bpmn2_2016_edition_110716Ultimate guide to_bpmn2_2016_edition_110716
Ultimate guide to_bpmn2_2016_edition_110716
 
Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...
 
SAIPEM and SAP: the power of the networked economy
SAIPEM and SAP: the power of the networked economySAIPEM and SAP: the power of the networked economy
SAIPEM and SAP: the power of the networked economy
 
Cosmos DB at VLDB 2019
Cosmos DB at VLDB 2019Cosmos DB at VLDB 2019
Cosmos DB at VLDB 2019
 
Best Practices for Adopting Microsoft Dynamics 365
Best Practices for Adopting Microsoft Dynamics 365Best Practices for Adopting Microsoft Dynamics 365
Best Practices for Adopting Microsoft Dynamics 365
 
Implementing BPMN 2.0 with Microsoft Visio
Implementing BPMN 2.0 with Microsoft VisioImplementing BPMN 2.0 with Microsoft Visio
Implementing BPMN 2.0 with Microsoft Visio
 
Organization and Business Process
Organization and Business ProcessOrganization and Business Process
Organization and Business Process
 
BPMN 2.0 Tutorial 01 - Basic Constructs
BPMN 2.0 Tutorial 01 - Basic ConstructsBPMN 2.0 Tutorial 01 - Basic Constructs
BPMN 2.0 Tutorial 01 - Basic Constructs
 
BPMN Introduction and BPD in Visio
BPMN Introduction and BPD in VisioBPMN Introduction and BPD in Visio
BPMN Introduction and BPD in Visio
 
Sap grc-access-control-solution
Sap grc-access-control-solutionSap grc-access-control-solution
Sap grc-access-control-solution
 

Similar a Analysis of Most Common Process Modelling Mistakes in BPMN Process Models

Operation research's CPM techniques
Operation research's CPM techniques Operation research's CPM techniques
Operation research's CPM techniques Mohammad Younus
 
Bpmn poster a4_ver_1.0.10
Bpmn poster a4_ver_1.0.10Bpmn poster a4_ver_1.0.10
Bpmn poster a4_ver_1.0.10primulah
 
Woop - Workflow Optimizer
Woop - Workflow OptimizerWoop - Workflow Optimizer
Woop - Workflow OptimizerMartin Homik
 
How To Explain BPMN To Business Users
How To Explain BPMN To Business UsersHow To Explain BPMN To Business Users
How To Explain BPMN To Business UsersSandy Kemsley
 
Project management planning
Project management planningProject management planning
Project management planningAlvin Niere
 
Programming For Problem Solving Lecture Notes
Programming For Problem Solving Lecture NotesProgramming For Problem Solving Lecture Notes
Programming For Problem Solving Lecture NotesSreedhar Chowdam
 
Multi-Perspective Comparison of Business Processes Variants Based on Event Logs
Multi-Perspective Comparison of Business Processes Variants Based on Event LogsMulti-Perspective Comparison of Business Processes Variants Based on Event Logs
Multi-Perspective Comparison of Business Processes Variants Based on Event LogsMarlon Dumas
 
Mining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesMining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesSaimir Bala
 
Mining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesMining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesSaimir Bala
 
Towards Service-based Business Process Modeling, Prototyping and Integration
Towards Service-based Business Process Modeling, Prototyping and IntegrationTowards Service-based Business Process Modeling, Prototyping and Integration
Towards Service-based Business Process Modeling, Prototyping and IntegrationAng Chen
 
Master thesis Francesco Serafin
Master thesis Francesco SerafinMaster thesis Francesco Serafin
Master thesis Francesco SerafinRiccardo Rigon
 
Smart Hydroponic Plant Growing System using IoT
Smart Hydroponic Plant Growing System using IoTSmart Hydroponic Plant Growing System using IoT
Smart Hydroponic Plant Growing System using IoTGustavo Sanchez Collado
 
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...Process State vs. Object State: Modeling Best Practices for Simple Workflows ...
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...Thorsten Franz
 
Network Problem CPM & PERT
Network Problem CPM &  PERTNetwork Problem CPM &  PERT
Network Problem CPM & PERTPulchowk Campus
 

Similar a Analysis of Most Common Process Modelling Mistakes in BPMN Process Models (20)

Operation research's CPM techniques
Operation research's CPM techniques Operation research's CPM techniques
Operation research's CPM techniques
 
BPMN Poster
BPMN PosterBPMN Poster
BPMN Poster
 
Bpmn poster a4_ver_1.0.10
Bpmn poster a4_ver_1.0.10Bpmn poster a4_ver_1.0.10
Bpmn poster a4_ver_1.0.10
 
Carasik BPM ECM
Carasik BPM ECMCarasik BPM ECM
Carasik BPM ECM
 
Woop - Workflow Optimizer
Woop - Workflow OptimizerWoop - Workflow Optimizer
Woop - Workflow Optimizer
 
How To Explain BPMN To Business Users
How To Explain BPMN To Business UsersHow To Explain BPMN To Business Users
How To Explain BPMN To Business Users
 
Project management planning
Project management planningProject management planning
Project management planning
 
Programming For Problem Solving Lecture Notes
Programming For Problem Solving Lecture NotesProgramming For Problem Solving Lecture Notes
Programming For Problem Solving Lecture Notes
 
Ovi project
Ovi  projectOvi  project
Ovi project
 
Planning document
Planning documentPlanning document
Planning document
 
Multi-Perspective Comparison of Business Processes Variants Based on Event Logs
Multi-Perspective Comparison of Business Processes Variants Based on Event LogsMulti-Perspective Comparison of Business Processes Variants Based on Event Logs
Multi-Perspective Comparison of Business Processes Variants Based on Event Logs
 
Mining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesMining Project-Oriented Business Processes
Mining Project-Oriented Business Processes
 
Mining Project-Oriented Business Processes
Mining Project-Oriented Business ProcessesMining Project-Oriented Business Processes
Mining Project-Oriented Business Processes
 
Work shop eventstorming
Work shop  eventstormingWork shop  eventstorming
Work shop eventstorming
 
Towards Service-based Business Process Modeling, Prototyping and Integration
Towards Service-based Business Process Modeling, Prototyping and IntegrationTowards Service-based Business Process Modeling, Prototyping and Integration
Towards Service-based Business Process Modeling, Prototyping and Integration
 
Master thesis Francesco Serafin
Master thesis Francesco SerafinMaster thesis Francesco Serafin
Master thesis Francesco Serafin
 
Smart Hydroponic Plant Growing System using IoT
Smart Hydroponic Plant Growing System using IoTSmart Hydroponic Plant Growing System using IoT
Smart Hydroponic Plant Growing System using IoT
 
Book
BookBook
Book
 
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...Process State vs. Object State: Modeling Best Practices for Simple Workflows ...
Process State vs. Object State: Modeling Best Practices for Simple Workflows ...
 
Network Problem CPM & PERT
Network Problem CPM &  PERTNetwork Problem CPM &  PERT
Network Problem CPM & PERT
 

Más de Tomislav Rozman

Celostni pogled na pametna mesta
Celostni pogled na pametna mestaCelostni pogled na pametna mesta
Celostni pogled na pametna mestaTomislav Rozman
 
Sustainability, social innovations and information technology
Sustainability, social innovations and information technologySustainability, social innovations and information technology
Sustainability, social innovations and information technologyTomislav Rozman
 
Digital transformation, BPM future and job roles
Digital transformation, BPM future and job rolesDigital transformation, BPM future and job roles
Digital transformation, BPM future and job rolesTomislav Rozman
 
Growth hacking and gamification - presentation
Growth hacking and gamification - presentation Growth hacking and gamification - presentation
Growth hacking and gamification - presentation Tomislav Rozman
 
Poslovna informatika 6: Podatkovne baze
Poslovna informatika 6: Podatkovne bazePoslovna informatika 6: Podatkovne baze
Poslovna informatika 6: Podatkovne bazeTomislav Rozman
 
Poslovna informatika 5: Informacijska varnost
Poslovna informatika 5: Informacijska varnostPoslovna informatika 5: Informacijska varnost
Poslovna informatika 5: Informacijska varnostTomislav Rozman
 
Poslovna informatika 4: Razvoj in management informatike
Poslovna informatika 4: Razvoj in management informatikePoslovna informatika 4: Razvoj in management informatike
Poslovna informatika 4: Razvoj in management informatikeTomislav Rozman
 
Poslovna informatika 3: e-poslovanje in digitalizacija
Poslovna informatika 3: e-poslovanje in digitalizacijaPoslovna informatika 3: e-poslovanje in digitalizacija
Poslovna informatika 3: e-poslovanje in digitalizacijaTomislav Rozman
 
Poslovna informatika 2: Podpora upravljanju in infomacijska analiza
Poslovna informatika 2: Podpora upravljanju in infomacijska analizaPoslovna informatika 2: Podpora upravljanju in infomacijska analiza
Poslovna informatika 2: Podpora upravljanju in infomacijska analizaTomislav Rozman
 
Poslovna informatika 1: Uvod
Poslovna informatika 1: UvodPoslovna informatika 1: Uvod
Poslovna informatika 1: UvodTomislav Rozman
 
Growth hacking / Gamification - Case study (7)
Growth hacking / Gamification - Case study  (7)Growth hacking / Gamification - Case study  (7)
Growth hacking / Gamification - Case study (7)Tomislav Rozman
 
Growth hacking - the Content Marketing (3)
Growth hacking - the Content Marketing (3)Growth hacking - the Content Marketing (3)
Growth hacking - the Content Marketing (3)Tomislav Rozman
 
Growth hacking - the Referrals (2)
Growth hacking - the Referrals (2)Growth hacking - the Referrals (2)
Growth hacking - the Referrals (2)Tomislav Rozman
 
Growth hacking - the basic process (1)
Growth hacking - the basic process (1)Growth hacking - the basic process (1)
Growth hacking - the basic process (1)Tomislav Rozman
 
Gamification academy training programme
Gamification academy training programmeGamification academy training programme
Gamification academy training programmeTomislav Rozman
 
5 tips - how to become irreplaceable member of any project team
5 tips - how to become irreplaceable member of any project team5 tips - how to become irreplaceable member of any project team
5 tips - how to become irreplaceable member of any project teamTomislav Rozman
 
Email management processes (BPMN)
Email management processes (BPMN)Email management processes (BPMN)
Email management processes (BPMN)Tomislav Rozman
 
EU project proposal preparation process
EU project proposal preparation processEU project proposal preparation process
EU project proposal preparation processTomislav Rozman
 
Achieving sustainable development by integrating it into the business proces...
Achieving sustainable development by integrating it into the business proces...Achieving sustainable development by integrating it into the business proces...
Achieving sustainable development by integrating it into the business proces...Tomislav Rozman
 
PHD presentation BPM (in SLO)
PHD presentation BPM (in SLO)PHD presentation BPM (in SLO)
PHD presentation BPM (in SLO)Tomislav Rozman
 

Más de Tomislav Rozman (20)

Celostni pogled na pametna mesta
Celostni pogled na pametna mestaCelostni pogled na pametna mesta
Celostni pogled na pametna mesta
 
Sustainability, social innovations and information technology
Sustainability, social innovations and information technologySustainability, social innovations and information technology
Sustainability, social innovations and information technology
 
Digital transformation, BPM future and job roles
Digital transformation, BPM future and job rolesDigital transformation, BPM future and job roles
Digital transformation, BPM future and job roles
 
Growth hacking and gamification - presentation
Growth hacking and gamification - presentation Growth hacking and gamification - presentation
Growth hacking and gamification - presentation
 
Poslovna informatika 6: Podatkovne baze
Poslovna informatika 6: Podatkovne bazePoslovna informatika 6: Podatkovne baze
Poslovna informatika 6: Podatkovne baze
 
Poslovna informatika 5: Informacijska varnost
Poslovna informatika 5: Informacijska varnostPoslovna informatika 5: Informacijska varnost
Poslovna informatika 5: Informacijska varnost
 
Poslovna informatika 4: Razvoj in management informatike
Poslovna informatika 4: Razvoj in management informatikePoslovna informatika 4: Razvoj in management informatike
Poslovna informatika 4: Razvoj in management informatike
 
Poslovna informatika 3: e-poslovanje in digitalizacija
Poslovna informatika 3: e-poslovanje in digitalizacijaPoslovna informatika 3: e-poslovanje in digitalizacija
Poslovna informatika 3: e-poslovanje in digitalizacija
 
Poslovna informatika 2: Podpora upravljanju in infomacijska analiza
Poslovna informatika 2: Podpora upravljanju in infomacijska analizaPoslovna informatika 2: Podpora upravljanju in infomacijska analiza
Poslovna informatika 2: Podpora upravljanju in infomacijska analiza
 
Poslovna informatika 1: Uvod
Poslovna informatika 1: UvodPoslovna informatika 1: Uvod
Poslovna informatika 1: Uvod
 
Growth hacking / Gamification - Case study (7)
Growth hacking / Gamification - Case study  (7)Growth hacking / Gamification - Case study  (7)
Growth hacking / Gamification - Case study (7)
 
Growth hacking - the Content Marketing (3)
Growth hacking - the Content Marketing (3)Growth hacking - the Content Marketing (3)
Growth hacking - the Content Marketing (3)
 
Growth hacking - the Referrals (2)
Growth hacking - the Referrals (2)Growth hacking - the Referrals (2)
Growth hacking - the Referrals (2)
 
Growth hacking - the basic process (1)
Growth hacking - the basic process (1)Growth hacking - the basic process (1)
Growth hacking - the basic process (1)
 
Gamification academy training programme
Gamification academy training programmeGamification academy training programme
Gamification academy training programme
 
5 tips - how to become irreplaceable member of any project team
5 tips - how to become irreplaceable member of any project team5 tips - how to become irreplaceable member of any project team
5 tips - how to become irreplaceable member of any project team
 
Email management processes (BPMN)
Email management processes (BPMN)Email management processes (BPMN)
Email management processes (BPMN)
 
EU project proposal preparation process
EU project proposal preparation processEU project proposal preparation process
EU project proposal preparation process
 
Achieving sustainable development by integrating it into the business proces...
Achieving sustainable development by integrating it into the business proces...Achieving sustainable development by integrating it into the business proces...
Achieving sustainable development by integrating it into the business proces...
 
PHD presentation BPM (in SLO)
PHD presentation BPM (in SLO)PHD presentation BPM (in SLO)
PHD presentation BPM (in SLO)
 

Analysis of Most Common Process Modelling Mistakes in BPMN Process Models

  • 1. 1 Analysis of Most Common Process Modelling Mistakes in BPMN Process Models dr. Tomislav Rozman, Gregor Polančič, doc. dr. Romana Vajde Horvat 26. – 28. September 2007 Potsdam, Germany Faculty of Electrical Engineering and Computer Science University of Maribor, Slovenia Institute of Informatics
  • 2. 2 Contents of the article Introduction  What is Business Process Management & Modelling  A little bit of history  Similar work Research method Findings – process model antipatterns Conclusions Discussion
  • 3. 3 What is Business Process management? ... a field of knowledge at the intersection between management and information technology, encompassing methods, techniques and tools to design, enact, control, and analyze operational business processes involving humans, organizations, applications, documents and other sources of information1 or ...most overused word in the last few years? 1 van der Aalst, W.M.P., ter Hofstede, A.H.M. and Weske, M.: "Business Process Management: A Survey", in Business Process Management, Proceedings of the First International Conference. Springer Verlag, 2003.
  • 4. 4 Business process management / business process lifecycle Preparation + BP Modelling + BP Assessment + BP Dissemination + Report a 'lesson learned' Compare and align with business goal BP Implementation + no yes is responsible for is responsible for Defined process needed are responsible for is responsible for is responsible for is responsible for is responsible for is responsible for is responsible for collaborate Quality Manager Process Performers Process Designer Quality Manager IT Expert Process Owner Process Owner Process Performers Process Owner Automate the process? BP Usage BP tracking & analysing BP not needed anymore BP tailoring needed Performing BP
  • 5. 5 What is (Business) Process modelling? Better: Discrete process modelling Goal: to capture the knowledge how people (machines) perform their work (or, how we would like them to perform it) Main purpose: to ensure at least repeatability of organisation's processes Plethora of methods, methodologies, notations,… ... but no silver bullet
  • 6. 6 ... Some process modelling notations EPC, ARIS, UML Activity diagrams, OPM – Object Process Methodology, BPMN – Business Process Modelling notation Ontologically most complete (Recker et al, 2005)
  • 7. 7 BPMN notation Visual representation of (business) processes - workflow It defines graphical symbols and additional attributes for process description Covers the process modelling concepts and patterns very well Easy to learn Based on: EPC, Petri nets, Activity diagrams (UML) Defines the mapping to execution languages (XPDL, BPEL4WS) Merging with UML?
  • 8. 8 A quick introduction to BPMN notation (1/2) name name name ~ name ~ name name name Sequence Message flow Association name, condition, code or message name or message Atomic activity - task Looping activity Ad-hoc process Looping ad-hoc process Process (hidden details) Looping process (hidden details) Process with details Branching (parallel execution) A B C D Data-based OR-decision A B C D condition 1 condition 2 default Event-based OR-decision A B C D 1 day mssage 1 message 2 Merging A B C D
  • 9. 9 A quick introduction to BPMN notation (2/2) name or source name or type name or result Start event End event Intermediate event Message Timer Process error Compensate Rule Link Multiple mesage Pool name mesage message  events gateways  pools and messages
  • 10. 10 A little bit of history BPMN notation has been taught since 2001 (University of Maribor, Faculty of electrical engineering and computer science) BSc. Students of Information Systems, 8th semester “Information processing organization and management” practical lectures The aim: (business) processes modeling, software standards, software projects organisation The modeling tool: Modified Microsoft Visio (‘’in-house’ symbols stencil)
  • 11. 11 Similar work Project ‘anti-pattern’  = a pitfall, or, set of classes of commonly- reinvented bad solutions to problems  = commonly repeated bad practices workflow patterns  control flow patterns, resource patterns, data patterns and exception handling patterns
  • 12. 12 The problem BPMN does not prevent us to design bad process models, including syntactical, semantic and pragmatically errors. Poor quality of process models can cause poor quality software requirements resulting in a poor information system.
  • 13. 13 Research method Research question: What are the most common mistakes when modelling business process diagrams using BPMN notation? a multiple case study research Analysis of the process models (designed by students) from 2002 to 2007 by three independent persons Extraction & classification of most common mistakes -> process anti-pattern Syntactical, semantic and pragmatic mistakes
  • 14. 14 Findings A set of 15 proces model anti-patterns  Connecting elements (1-9)  Other mistakes (9-15) Description of the antipatterns:  Name,  Possible practical impacts,  Type of error,  Proposed solution.
  • 15. 15 Pattern 1. Activities in one pool are not connected PoolAPoolB Task C Task D Task A Task B ... ... ... ... Fig. 1. Anti-pattern: Activities in one pool are not connected PoolAPoolB Task C Task D Task A Task B ... ... ... ... Fig. 2. Correct pattern
  • 16. 16 Pattern 2. Process does not contain a start eventPoolA Task A Task B ... Message Event Fig. 1. Anti-pattern: Process does not contain a start event PoolA Task A Task B ... Message Event Start Event Fig. 2. Correct pattern
  • 17. 17 Pattern 3. Process does not contain an end event PoolA Task A Task B... Task C Fig. 1. Anti-pattern: Process does not contain an end event PoolA Task A Task B... Task C End event Terminate Fig. 2. Correct pattern
  • 18. 18 Pattern 4. Sequence flow crosses process boundary Process X Task A Task B... ... Task C Fig. 1. Anti-pattern: Sequence flow crosses process boundary Process X Task A Task B ... ... Task C Fig. 2. Correct pattern
  • 19. 19 Pattern 5. Sequence flow crosses pool boundary PoolA Task A Task C PoolB Task B Task D Message flow AB Message flow DC Task E Task F ... ... End event Start Event Fig. 1. Anti-pattern: Sequence flow crosses pool boundary PoolA Task A Task C PoolB Task B Task D Message flow AB Message flow DC Task E Task F Message flow EF ...... ...... Start Event End event End event Start Event Fig. 2. Correct pattern
  • 20. 20 Pattern 6. Gateway receives, evaluates or sends a message PoolA Task A Task B ...... Message X Message Y Condition Task C ... PoolB Fig. 1. Anti-pattern: Gateway receives, evaluates or sends a message PoolA Task A Task B ... ... Message X MessageY Condition Task C ... Analysing message X Send message Y ... PoolB Fig. 2. Correct pattern
  • 21. 21 Pattern 7. Intermediate events are placed on the edge of the pool PoolA Task A Task B Start event End event Intemediate event M1 Intermediate event M2 Fig. 1. Anti-pattern: Intermediate events are placed on the edge of the pool PoolB Task A Task B Start event End event Intemediate event M1 Intemediate event M2 Fig. 2. Correct pattern
  • 22. 22 Pattern 8. Hanging intermediate events or activities PoolA Task A Task c Start event End event Intermediate event Task B Fig. 1. Anti-pattern: Hanging intermediate events or activities PoolB Task A Task C Start event End event Intermediate event Task B Fig. 2. Correct pattern
  • 23. 23 Pattern 9. Each lane in the pool contains start event Start event 1 Task A End event Start event 2 Task B End event Start event 3 Task C End event Lane1Lane2Lane3 PoolA Fig. 1. Anti-pattern: Each lane in the pool contains start event Start event 1 Task A End event Task B Task C Lane1Lane2Lane3 PoolA Lane1Lane2Lane3 PoolA Task A End event Task B End event Task C End event Start event Start event 1 Start event 2 Start event 3 Fig. 1. Two possibilities of correct patterns
  • 24. 24 Pattern 10. Incorrect use of time events Task A Task B... Task B ... Delay Exception Time event used as a DELAY mechanism Time event representing task DURATION Fig. 1. : Anti-pattern: Incorrect use of time events Solution: the meaning!
  • 25. 25 Pattern 11. Sequence and message event represent data flow Task A Task B ...... Message AB Fig. 1. Anti-pattern: Sequence and message event represent data flow Task A Task B ...... Message AB Fig. 2. Correct pattern
  • 26. 26 Pattern 12. Event is used as a message flow source Task A Task B ...... Message A Message B A B Fig. 1. Anti-pattern: Event is used as a message flow source Task A Send message B ...... Message A Message B Task C Fig. 2. Correct pattern
  • 27. 27 Pattern 13. Improper use of flow elements Starting task A Receiving document X ... Task A finished Document X ... Fig. 1. Anti-pattern: Improper use of flow elements Task A... ... Document X Event X Fig. 2. Correct pattern
  • 28. 28 Pattern 14. Starting timer placed instead of intermediate timer Task A... ... Duration Fig. 1. Anti-pattern: Starting timer placed instead of intermediate timer Task A... ... Duration Fig. 2. Correct pattern
  • 29. 29 Pattern 15. Exception flow is not connected to the exception Task A... ... Duration Fig. 1. Anti-pattern: Exception flow is not connected to the exception Task A... ... Duration ... Normal flow Exception flow Fig. 2. Correct pattern
  • 30. 30 Frequencies of the anti-patterns appearance 1 2 4 5 6 7 89 10 11 12 13 14 15 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Exception is modelled, but not connected   Process does not contain a end event Sequence flow crosses process boundary  Hanging intermediate events or activities Starting timer placed instead of intermediate timer 
  • 31. 31 Conclusions We identified unique collection of most common process modelling mistakes or anti-patterns Possible practical problems:  unwanted delays in the process performance,  non-execution of the activities or  simply ambiguity which could hinder the process performers at their work Practical implications:  Improvement of the learning materials  Design of A2 poster with anti-patterns & solutions  Possible improvement of the BPMN  Improvements of BPMN modelling tool: verification!
  • 32. 32 TheaudienceSpeaker Recieve a question Answer the question Ask a question Bored=true Coffe break Start of the discussion Does a question make any sense? yes no Mumble or smile J Discussion
  • 33. 33
  • 34. Last but not least Like it, share it, comment it! And of course, don’t forget to reuse it (with contribution) in your projects. If you want to learn how to identify, model, optimize processes, you can attend our live or on-line learning courses: ECQA Certified Business Process Manager - Foundation and Advanced level ECQA Certified Business Process Manager in Higher Education Institutions i-VBPM (BPM on interactive board for VET) Subscribe to newsletter: here Website: BICERO ltd. E-mail: tomislav.rozman@bicero.com LinkedIn: Tomislav Rozman 34

Notas del editor

  1. Vprašaj na koncu