SlideShare ist ein Scribd-Unternehmen logo
1 von 24
Downloaden Sie, um offline zu lesen
© Peter R. Egli 2015
1/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
OVERVIEW OF BUSINESS PROCESS
MODEL AND NOTATION (BPMN) LANGUAGE FOR
MODELING BUSINESS PROCESSES
PETER R. EGLI
INDIGOO.COM
BPMNBUSINESS PROCESS
MODEL AND NOTATION
© Peter R. Egli 2015
2/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
Contents
1. What is BPMN?
2. BPMN Main Parts
3. BPMN Scope
4. BPMN Core Concepts
5. BPMN versus BPEL
6. BPMN notation elements
7. BPMN 2.0 versus BPMN 1.2
© Peter R. Egli 2015
3/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
1. What is BPMN?
BMPN is a graphical modeling language and notation for business processes (=graphical DSL –
Domain Specific Language) with the following goals:
1. Common language understandable for different stakeholders.
2. Visualization of execution languages like WSBPEL.
3. Interchange format between tools for process description and diagrams.
<bpmn:process name="Order Process">
<bpmn:endEvent name="Send confirmation">
<bpmn:incoming>Incoming_Flow</bpmn:incoming>
<bpmn:messageEventDefinition/>
</bpmn:endEvent>
<bpmn:startEvent name="Receive order"
isInterrupting="true" parallelMultiple="false">
<bpmn:outgoing>Outgoing_Flow</bpmn:outgoing>
<bpmn:messageEventDefinition/>
</bpmn:startEvent>
<bpmn:subProcess name="Process order"
startQuantity="1" triggeredByEvent="false">
Business people
use and monitor processes
Business analysists
define processes
Developers
implement processes
BPMN = common language & notation
© Peter R. Egli 2015
4/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
2. BPMN Main Parts (1/3)
A. Diagram types:
BPMN defines the following 4 diagram types.
ChoreographyOrchestration/Process
Collaboration Conversation
© Peter R. Egli 2015
5/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
2. BPMN Main Parts (2/3)
B. Business process notation:
BPMN defines a common set of modeling elements to be used in BPMN diagrams.
Data
Connecting Objects
Flow Objects
Swimlanes
Artifacts
Activity
Event Gateway
Data
Object
Data
Input
Data
Output
Data
Store
Message FlowSequence Flow Association Data Association
Pool
Lane
Group
Text
Annotation
© Peter R. Egli 2015
6/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
2. BPMN Main Parts (3/3)
C. Mapping to execution language:
BPMN defines a mapping to the WSBPEL execution language.
BPMN roughly maps to WSBPEL, but could be mapped to another execution language as well.
BPMN
Business Process Model
Mapping to
…
<bpel:assign bpmn:label="invoke" name="invoke"
bpmn:id="_Oig9ANU5Edyqa7yB__NlQQ">
<bpel:copy>
<bpel:from>$thisStartRequestMsg.body/tns:city</bpel:f
rom>
<bpel:to>$timeService1GetCityTimeRequestMsg.param
eters/TimeService1:city</bpel:to>
</bpel:copy>
…
WSBPEL to run in BPEL-runtime
© Peter R. Egli 2015
7/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
3. BPMN Scope
Different model notations and languages are used for modeling business aspects.
BPMN is a notation to model business processes.
StrategyVision Organization
Functional
Breakdown
Services
Business
Rules
Business
Processes
Data
Information
Balanced
Scorecards
Org
Chart
BPMN
Enterprise
Architecture
Strategy
Map
ArchiMate
Entity
Relationship
Diagram
SOMF
Business
Rules
Model
Functional
Decomposition
Diagram
© Peter R. Egli 2015
8/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
4. BPMN Core Concepts (1/5)
A. Orchestration / processes (1/2):
A process describes a sequence or flow of activities as part of work to be carried out
(=workflow).
Processes contain the BPMN flow elements (events, actitivies, gateways) and callable
processes.
Process types:
a. Private non-executable process (process for documentary purposes only)
b. Private executable process (contains enough detail to be executable)
c. Public process
Activity
Event Gateway
Task
Sub-Process
Activity
(=abstract super
class)
Concrete
activity
types
Call Activity
© Peter R. Egli 2015
9/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
4. BPMN Core Concepts (2/5)
A. Orchestration / processes (2/2):
a. Private process:
A private process is specific to an organization. There is no interaction with another swimlane
(pool = participant).
b. Public process:
Public processes show interactions between a private process and another process or
participant (pool).
Internals of public process are not shown, only the interactions with another process.
PrivateProcess
Start
Check Credit HistoryCheck Order
Completeness
Calculate Price Send Notification
End
«BusinessPro...
Approve Order
«BusinessPro...
Approve Order
CarOwner
Start
Help Line Receive
Request
Send Service Address Receive Damage
Description
We'll Check What
The Problem Is
Check & Fix Engine
End
My Car is Broken The Engine Rumples Leave The Car Here
Problem Is Fixed,
Go To Checkout
Desk
Go To CarServ
© Peter R. Egli 2015
10/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
4. BPMN Core Concepts (3/5)
B. Collaboration:
A collaboration shows the interaction between participants modeled as swimlanes (pool, lane).
A collaboration diagram typically contains 2 or more pools / lanes.
Message flows cross the pool boundaries while sequence flows connect activities within pools.
PatientHealthcareContact
Center/Doctor
Illness occurs
Contact Doctor
Request
Receive
Request
Send
Appointment
Receive
Appointment
Send
Symptoms
Receive
Symptoms
Give Medicine
Receive
Medicine
I have a stomach
acheGo see your doctorI want to see my doctor
© Peter R. Egli 2015
11/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
4. BPMN Core Concepts (4/5)
C. Choreography:
Choreography shows the interactions between participants modeled as pools.
Choreographies are defined outside of pools and exist between pools.
The focus of choreographies is on the exchange of information between participants.
In choreographies, there is no central control, responsible entity or observer.
Patient
Doctor
Doctor Request
I want to see
my doctor
Go see the
doctor
Patient
Doctor
Handle Symptoms
I feel sick
Patient
Doctor
Handle Prescription
Pick up your
medicine
Patient
Doctor
Hanlde Medicine
I need my
medicine
Here is your
medicine
© Peter R. Egli 2015
12/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
4. BPMN Core Concepts (5/5)
D. Conversation:
Conversation diagrams show the logical message exchanges between participants.
Unlike process, collaboration and choreography diagrams, conversation diagrams show a
"birds eye view" of the different conversations (exchange of information) between participants.
Retailer Supplier
Delivery
Negotiations
Consignee
Shipment
Schedule
Delivery /
Dispatch
Plan
Shipper
Delivery /
Dispatch
Plan
Carrier Insurance
Coverage
© Peter R. Egli 2015
13/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
5. BPMN versus BPEL
BPMN and BPEL share common concepts, but are not tools for the same purpose.
BPMN is mainly a notation that defines how business processes can be modeled graphically.
WS-BPEL defines a machine-processable and –executable format for business processes.
BPMN 1.2 is typically translated to BPEL 2.0 which in turn is executed on a BPMN runtime.
BPMN 2.0 can be directly executed on a BPMN runtime without translation to another format.
Description Language Translator
Execution
Language
Runtime
BPMN 1.2 BPMN Mapper
WS-BPEL
(BPEL 2.0)
BPMN runtime like intalio
BPMN 2.0 - BPMN 2.0 BPMN runtime
Java Java compiler Byte code Java Virtual Machine
C / C++ Compiler Machine code CPU
© Peter R. Egli 2015
14/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (1/10)
Activity:
Activities (tasks, sub-processes) are executable elements of a BPMN process.
Actity type Symbol Description
Task
Atomic activity within a process that cannot be broken down
further.
Typically a task is executed by an end-user or application.
Sub-process
Activity with an internal structure containing activities,
gateways, events and sequence flows.
Call activity
Defines a point where a global task or process is called.
A call activity differs from a sub-process in that it is a reference
to a process while a sub-process is a process itself.
This means that a call activity calls a reusable process or task.
The called sub-process or task can be called multiple times by
different call activities.
Task
Sub-Process
Call Activity
(Task)
Call Activity
(Sub-Process)
© Peter R. Egli 2015
15/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (2/10)
Task types (1/2):
Task type Symbol Description
Abstract task Task without any specialization.
Service task Task that uses some sort of service like a web service.
Send task
Task for sending a message to an external participant. After the message
is sent, the task is completed.
Receive task
Task that waits for a message to arrive from an external participant. After
the message is received, the task is completed.
Instantiating
receive task
Same as receive task, but instantiates a process
("creates process token").
Task
Service Task
Send Task
Receive Task
Process
Instantiate
Receive Task
© Peter R. Egli 2015
16/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (3/10)
Task types (2/2):
Task type Symbol Description
User task Task executed by a human with the assistance of a software application.
Manual task
Task executed by a human without the assistance of any process
execution engine or application.
Business rule
task
Provides input to a business rule engine.
Receives output from a business rule engine.
Business rule tasks connect a process or sub-process to a business rule
engine.
Script task
A script task is executed by a business process engine.
When the script is finished, the task is finished as well.
User Task
Manual Task
Business Rule
Task
Script Task
© Peter R. Egli 2015
17/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (4/10)
Task markers:
Additional markers add more semantics to tasks.
Task marker Symbol Description
Loop A looping task repeats its action as long as a loop flag is set.
Multi-
instance
sequential
The task is executed in multiple instances in sequential order.
Multi-
instance
parallel
Multiple instances of the task are executed in parallel.
Compensation
Compensation is used in case of errors (exceptions) to undo steps that
are already executed (call of compensation handler for a "rollback").
Allowed
marker
combinations
Multi-instance sequential &
compensation
Multi-instance parallel &
compensation
Loop & compensation
Loop Task
Multi-instance
Sequential Task
Multi-instance
Parallel Task
Compensation
Task
Task
Task Task
© Peter R. Egli 2015
18/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (5/10)
Sub-process types:
Sub-process
type
Symbol Description
Transaction
sub-process
A transactional sub-process executes all internal activities either
successfully or none (exception case).
Typically, a transaction sub-process is combined with a cancel event to
call a transaction cancel (rollback) handler.
Event sub-
process
Execution of an event sub-process is triggered by an event. The
execution is independent of the parent process flow, thus there are no
incoming and outgoing sequence flows. However, an event sub-process
is only executed when the parent process (or sub-process) is active.
Transaction
Sub-Process
© Peter R. Egli 2015
19/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (6/10)
Sub-process markers (1/2):
Sub-processes may have the same markers as tasks. Additionally, the ad-hoc marker may be
used on sub-processes to express a less strict execution ordering.
Sub-process
marker
Symbol Description
Loop
A looping sub-process repeats its internal activities as long as a loop
flag is set.
Multi-
instance
sequential
The sub-process is executed in multiple instances in sequential order.
Multi-
instance
parallel
Multiple instances of the sub-process are executed in parallel.
Compensation
Compensation is used in case of errors (exceptions) to undo steps that
are already executed (call of compensation handler to "rollback").
Ad-hoc
sequential
Ad-hoc sub-processes have a less strict temporal ordering of activities.
Internal activities may or may not have sequence flows.
Ad-hoc sequential means that contained activities are executed sequentially.
Ad-hoc
parallel
In a parallel ad-hoc sub-process, contained activities are executed in parallel.
Loop
Sub-Process
Multi-instance
Sequential
Sub-Process
Multi-instance
Parallel
Sub-Process
Compensation
Sub-Process
Ad-hoc
Sequential
Sub-Process
Ad-hoc Parallel
Sub-Process
© Peter R. Egli 2015
20/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (7/10)
Sub-process markers (2/2):
Task marker Symbol & Description
Allowed
marker
combinations
Loop & compensation
Loop & ad-hoc (parallel
and sequential)
Multi-instance &
compensation (parallel and
sequential)
Multi-instance & ad-hoc
(parallel and sequential)
Ad-hoc & compensation
(parallel and sequential)
Loop & compensation &
ad-hoc (parallel and
sequential)
Multi-instance & compensation & ad-hoc (parallel and sequential)
Loop &
Compensation
Sub-Process
Loop & Ad-hoc
Sub-Process
Multi-instance &
Ad-hoc
Sub-process
Multi-instance &
Compensation
Sub-process
Ad-hoc &
Compensation
Sub-process
Loop & Ad-hoc
&
Compensation
Sub-process
Multi-instance &
Ad-hoc &
Compensation
Sub-process
© Peter R. Egli 2015
21/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
Process
pool
Blackbox pool
No process referenced
Contains a process
Pool types
6. BPMN notation elements (8/10)
Swimlanes (1/2):
Swimlanes are either pools (white-box or black-box) or lanes (=partitions in pools).
Pools represent participants which are partner entities like a supplier.
Participants are often responsible for a process execution in a pool.
Simplified meta-model:
PartnerEntity
Example:
Company
Participant
PartnerRole
Example:
Buyer
Process
<<represents>>
<<represents>>
<<responsible for>>
Pool
<<Graphical
representation of>>
Swimlane
Lane
(=Subpartition
in pool)
© Peter R. Egli 2015
22/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
ProcessPool
6. BPMN notation elements (9/10)
Swimlanes (2/2):
Swimlanes markers:
Swimlane
type
Symbol Description
Process
("White-
box") pool
Pool that contains a process.
Black-box
pool
Pool that does not contain a process.
Lane
Lanes are sub-partitions in a pool or process. Lanes can be nested.
Lanes do not have semantics in BPMN, i.e. lanes are a simple
grouping and partitioning concept.
Blackbox pool
Poolwith
lanes
ProductionSales
Swimlane
marker
Symbol Description
Multi-
instance
Multi-instance pools represent multi-instance participants.
Example: Multiple suppliers.
Multi-instance
Pool
© Peter R. Egli 2015
23/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
6. BPMN notation elements (10/10)
Gateways:
Gateways are used to produce and consume process tokens (process instances).
Gateway type Symbol Description
Exclusive
gateway
or
Exclusive gateways are like decisions. The process flow takes either of the
outgoing directions (only 1 or none).
Inclusive
gateway
The inclusive gateway evaluates all outgoing conditions and creates a
process token for each condition that evaluates to true.
Parallel
gateway
Parallel gateways join and fork flows. Thus parallel gateways are used to
create (fork) and synchronize (join) parallel flows.
No condition checking is involved with parallel gateways.
Complex
gateway
Complex gateways are used to model complex synchronization behavior.
Example: 3 out of 5 incoming flow tokens must be present to create an
outgoing process token (depending on the conditions of the outgoing
flows).
Outgoing and incoming token semantics are the same as in inclusive
gateways.
Event gateway
Event gateways represent branching points based on events rather than
conditions.
Example: Reception of different messages is dispatched into different
process paths to handle the messages.
X
© Peter R. Egli 2015
24/24
Rev. 1.60
BPMN – Business Process Model and Notation indigoo.com
7. BPMN 2.0 versus 1.2
BPMN 2.0 brought a number of changes :
• Formalization and clarification of the execution semantics of all BPMN elements
• Extensibility mechanism for graphical elements
• Refinement of event composition and correlation
• Definition of choreography model (choreography, choreography diagram)
• Redefinition and clarification of various BPMN elements (see table below)
BPMN 1.2 Feature BPMN 2.0 Feature
Reusable sub-process Call activity
Embedded sub-process Sub-process
Abstract process Public process
Directional association to show how data objects are
inputs and outputs to activities
Data association connector to show inputs and outputs
Message is a BPMN element Message is only a graphical decorator
None task Abstract task
Directional associations to show data flows to and from
activities
Data association connector to show inputs and outputs of
activities
Performer role for describing people in activities
In addition to Performer role, HumanPerformer role allows to
identify humans performing a task
Intermediate events possible without incoming sequence
flows
Intermediate events must have an incoming sequence flow

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to BPM, Business Process Management, BPM
Introduction to BPM, Business Process Management, BPMIntroduction to BPM, Business Process Management, BPM
Introduction to BPM, Business Process Management, BPMSarbashrestha Panda
 
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
 
How to use BPMN* for modelling business processes
How to use BPMN* for modelling business processesHow to use BPMN* for modelling business processes
How to use BPMN* for modelling business processesAlexander SAMARIN
 
Business Process Management
Business Process ManagementBusiness Process Management
Business Process ManagementAmin Kazemi
 
Introduction to Business Process Monitoring and Process Mining
Introduction to Business Process Monitoring and Process MiningIntroduction to Business Process Monitoring and Process Mining
Introduction to Business Process Monitoring and Process MiningMarlon Dumas
 
Business Process Modeling
Business Process ModelingBusiness Process Modeling
Business Process ModelingAng Chen
 
Fundamentals of business process management and BPMN
Fundamentals of business process management and BPMNFundamentals of business process management and BPMN
Fundamentals of business process management and BPMNGregor Polančič
 
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
 
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
 
BPMN 2.0 overview
BPMN 2.0 overviewBPMN 2.0 overview
BPMN 2.0 overviewsolomd
 
Extending BPMN 2.0
Extending BPMN 2.0Extending BPMN 2.0
Extending BPMN 2.0lstroppi
 
BPMN Introduction and BPD in Visio
BPMN Introduction and BPD in VisioBPMN Introduction and BPD in Visio
BPMN Introduction and BPD in Visiovpmouttou
 
BPM (Business Process Management) Introduction
BPM (Business Process Management) IntroductionBPM (Business Process Management) Introduction
BPM (Business Process Management) IntroductionIntegrify
 
Strategy & Business Process Management
Strategy & Business Process ManagementStrategy & Business Process Management
Strategy & Business Process Management451 Research
 
Business Process Modeling
Business Process ModelingBusiness Process Modeling
Business Process ModelingSandy Kemsley
 

Was ist angesagt? (20)

Introduction to BPM, Business Process Management, BPM
Introduction to BPM, Business Process Management, BPMIntroduction to BPM, Business Process Management, BPM
Introduction to BPM, Business Process Management, BPM
 
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
 
Bpmn tutorial
Bpmn tutorialBpmn tutorial
Bpmn tutorial
 
BPMN 2.0
BPMN 2.0BPMN 2.0
BPMN 2.0
 
Omg bpmn tutorial
Omg bpmn tutorialOmg bpmn tutorial
Omg bpmn tutorial
 
How to use BPMN* for modelling business processes
How to use BPMN* for modelling business processesHow to use BPMN* for modelling business processes
How to use BPMN* for modelling business processes
 
Business Process Management
Business Process ManagementBusiness Process Management
Business Process Management
 
Introduction to Business Process Monitoring and Process Mining
Introduction to Business Process Monitoring and Process MiningIntroduction to Business Process Monitoring and Process Mining
Introduction to Business Process Monitoring and Process Mining
 
Business Process Modeling
Business Process ModelingBusiness Process Modeling
Business Process Modeling
 
Business Process Management Training 1
Business Process Management Training 1Business Process Management Training 1
Business Process Management Training 1
 
Fundamentals of business process management and BPMN
Fundamentals of business process management and BPMNFundamentals of business process management and BPMN
Fundamentals of business process management and BPMN
 
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
 
Business Process Management Approach
Business Process Management Approach  Business Process Management Approach
Business Process Management Approach
 
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
 
BPMN 2.0 overview
BPMN 2.0 overviewBPMN 2.0 overview
BPMN 2.0 overview
 
Extending BPMN 2.0
Extending BPMN 2.0Extending BPMN 2.0
Extending BPMN 2.0
 
BPMN Introduction and BPD in Visio
BPMN Introduction and BPD in VisioBPMN Introduction and BPD in Visio
BPMN Introduction and BPD in Visio
 
BPM (Business Process Management) Introduction
BPM (Business Process Management) IntroductionBPM (Business Process Management) Introduction
BPM (Business Process Management) Introduction
 
Strategy & Business Process Management
Strategy & Business Process ManagementStrategy & Business Process Management
Strategy & Business Process Management
 
Business Process Modeling
Business Process ModelingBusiness Process Modeling
Business Process Modeling
 

Ähnlich wie Business Process Model and Notation (BPMN)

The business analyst and bpm
The business analyst and bpmThe business analyst and bpm
The business analyst and bpmdotNFS
 
Ivana Trickovic @ BPMN 2010
Ivana Trickovic @ BPMN 2010Ivana Trickovic @ BPMN 2010
Ivana Trickovic @ BPMN 2010bpmn2010
 
EMEA Partner Summit: jBPM 5 - Bringing More Power to BPM
EMEA Partner Summit: 	jBPM 5 - Bringing More Power to BPMEMEA Partner Summit: 	jBPM 5 - Bringing More Power to BPM
EMEA Partner Summit: jBPM 5 - Bringing More Power to BPMEric D. Schabell
 
How a Business Process Vision May Boost Innovative Ideas
How a Business Process Vision May Boost Innovative IdeasHow a Business Process Vision May Boost Innovative Ideas
How a Business Process Vision May Boost Innovative IdeasNathaniel Palmer
 
Business Rules and Business Processes - How good partners are they?
Business Rules and Business Processes - How good partners are they?Business Rules and Business Processes - How good partners are they?
Business Rules and Business Processes - How good partners are they?Dragan Gasevic
 
BPMN + BPSim PEX Week 2014
BPMN + BPSim PEX Week 2014BPMN + BPSim PEX Week 2014
BPMN + BPSim PEX Week 2014Denis Gagné
 
Business Process Modeling Notation: A Foundation for Process Transformation
Business Process Modeling Notation: A Foundation for Process TransformationBusiness Process Modeling Notation: A Foundation for Process Transformation
Business Process Modeling Notation: A Foundation for Process TransformationNathaniel Palmer
 
Ssbpm
SsbpmSsbpm
SsbpmWSO2
 
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processes
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processesJBossOneDayTalk 2011: Using jBPM to bring more power to your business processes
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processesKris Verlaenen
 
Business Process Management using BPEL
Business Process Management using BPELBusiness Process Management using BPEL
Business Process Management using BPELThanachart Numnonda
 
Cch slides input from cms walk through
Cch slides input from cms walk throughCch slides input from cms walk through
Cch slides input from cms walk throughLeszek Wisłowski
 
jBPM5 (Argentina workshop)
jBPM5 (Argentina workshop)jBPM5 (Argentina workshop)
jBPM5 (Argentina workshop)Kris Verlaenen
 
Managing business processes with Smalltalk
Managing business processes with SmalltalkManaging business processes with Smalltalk
Managing business processes with SmalltalkESUG
 

Ähnlich wie Business Process Model and Notation (BPMN) (20)

The business analyst and bpm
The business analyst and bpmThe business analyst and bpm
The business analyst and bpm
 
IBM Business Process Management 8.5
IBM Business Process Management 8.5IBM Business Process Management 8.5
IBM Business Process Management 8.5
 
Ivana Trickovic @ BPMN 2010
Ivana Trickovic @ BPMN 2010Ivana Trickovic @ BPMN 2010
Ivana Trickovic @ BPMN 2010
 
Webinar: BPMN with camunda
Webinar: BPMN with camundaWebinar: BPMN with camunda
Webinar: BPMN with camunda
 
Demystifying BPM
Demystifying BPMDemystifying BPM
Demystifying BPM
 
BPMN.ppt
BPMN.pptBPMN.ppt
BPMN.ppt
 
EMEA Partner Summit: jBPM 5 - Bringing More Power to BPM
EMEA Partner Summit: 	jBPM 5 - Bringing More Power to BPMEMEA Partner Summit: 	jBPM 5 - Bringing More Power to BPM
EMEA Partner Summit: jBPM 5 - Bringing More Power to BPM
 
Not your grandfathers BPM
Not your grandfathers BPMNot your grandfathers BPM
Not your grandfathers BPM
 
How a Business Process Vision May Boost Innovative Ideas
How a Business Process Vision May Boost Innovative IdeasHow a Business Process Vision May Boost Innovative Ideas
How a Business Process Vision May Boost Innovative Ideas
 
BPMN trainings
BPMN trainingsBPMN trainings
BPMN trainings
 
Business Rules and Business Processes - How good partners are they?
Business Rules and Business Processes - How good partners are they?Business Rules and Business Processes - How good partners are they?
Business Rules and Business Processes - How good partners are they?
 
BPMN + BPSim PEX Week 2014
BPMN + BPSim PEX Week 2014BPMN + BPSim PEX Week 2014
BPMN + BPSim PEX Week 2014
 
Business Process Modeling Notation: A Foundation for Process Transformation
Business Process Modeling Notation: A Foundation for Process TransformationBusiness Process Modeling Notation: A Foundation for Process Transformation
Business Process Modeling Notation: A Foundation for Process Transformation
 
Jbpm as a bpms
Jbpm as a bpmsJbpm as a bpms
Jbpm as a bpms
 
Ssbpm
SsbpmSsbpm
Ssbpm
 
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processes
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processesJBossOneDayTalk 2011: Using jBPM to bring more power to your business processes
JBossOneDayTalk 2011: Using jBPM to bring more power to your business processes
 
Business Process Management using BPEL
Business Process Management using BPELBusiness Process Management using BPEL
Business Process Management using BPEL
 
Cch slides input from cms walk through
Cch slides input from cms walk throughCch slides input from cms walk through
Cch slides input from cms walk through
 
jBPM5 (Argentina workshop)
jBPM5 (Argentina workshop)jBPM5 (Argentina workshop)
jBPM5 (Argentina workshop)
 
Managing business processes with Smalltalk
Managing business processes with SmalltalkManaging business processes with Smalltalk
Managing business processes with Smalltalk
 

Mehr von Peter R. Egli

LPWAN Technologies for Internet of Things (IoT) and M2M Scenarios
LPWAN Technologies for Internet of Things (IoT) and M2M ScenariosLPWAN Technologies for Internet of Things (IoT) and M2M Scenarios
LPWAN Technologies for Internet of Things (IoT) and M2M ScenariosPeter R. Egli
 
Data Networking Concepts
Data Networking ConceptsData Networking Concepts
Data Networking ConceptsPeter R. Egli
 
Communication middleware
Communication middlewareCommunication middleware
Communication middlewarePeter R. Egli
 
Transaction Processing Monitors (TPM)
Transaction Processing Monitors (TPM)Transaction Processing Monitors (TPM)
Transaction Processing Monitors (TPM)Peter R. Egli
 
Microsoft .NET Platform
Microsoft .NET PlatformMicrosoft .NET Platform
Microsoft .NET PlatformPeter R. Egli
 
Overview of Cloud Computing
Overview of Cloud ComputingOverview of Cloud Computing
Overview of Cloud ComputingPeter R. Egli
 
MQTT - MQ Telemetry Transport for Message Queueing
MQTT - MQ Telemetry Transport for Message QueueingMQTT - MQ Telemetry Transport for Message Queueing
MQTT - MQ Telemetry Transport for Message QueueingPeter R. Egli
 
Enterprise Application Integration Technologies
Enterprise Application Integration TechnologiesEnterprise Application Integration Technologies
Enterprise Application Integration TechnologiesPeter R. Egli
 
Overview of Microsoft .Net Remoting technology
Overview of Microsoft .Net Remoting technologyOverview of Microsoft .Net Remoting technology
Overview of Microsoft .Net Remoting technologyPeter R. Egli
 
Android Native Development Kit
Android Native Development KitAndroid Native Development Kit
Android Native Development KitPeter R. Egli
 
Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Peter R. Egli
 
Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Peter R. Egli
 
Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)Peter R. Egli
 
MSMQ - Microsoft Message Queueing
MSMQ - Microsoft Message QueueingMSMQ - Microsoft Message Queueing
MSMQ - Microsoft Message QueueingPeter R. Egli
 
Common Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBACommon Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBAPeter R. Egli
 
Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Peter R. Egli
 
JMS - Java Messaging Service
JMS - Java Messaging ServiceJMS - Java Messaging Service
JMS - Java Messaging ServicePeter R. Egli
 
Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Peter R. Egli
 
REST - Representational State Transfer
REST - Representational State TransferREST - Representational State Transfer
REST - Representational State TransferPeter R. Egli
 

Mehr von Peter R. Egli (20)

LPWAN Technologies for Internet of Things (IoT) and M2M Scenarios
LPWAN Technologies for Internet of Things (IoT) and M2M ScenariosLPWAN Technologies for Internet of Things (IoT) and M2M Scenarios
LPWAN Technologies for Internet of Things (IoT) and M2M Scenarios
 
Data Networking Concepts
Data Networking ConceptsData Networking Concepts
Data Networking Concepts
 
Communication middleware
Communication middlewareCommunication middleware
Communication middleware
 
Transaction Processing Monitors (TPM)
Transaction Processing Monitors (TPM)Transaction Processing Monitors (TPM)
Transaction Processing Monitors (TPM)
 
Microsoft .NET Platform
Microsoft .NET PlatformMicrosoft .NET Platform
Microsoft .NET Platform
 
Overview of Cloud Computing
Overview of Cloud ComputingOverview of Cloud Computing
Overview of Cloud Computing
 
MQTT - MQ Telemetry Transport for Message Queueing
MQTT - MQ Telemetry Transport for Message QueueingMQTT - MQ Telemetry Transport for Message Queueing
MQTT - MQ Telemetry Transport for Message Queueing
 
Enterprise Application Integration Technologies
Enterprise Application Integration TechnologiesEnterprise Application Integration Technologies
Enterprise Application Integration Technologies
 
Overview of Microsoft .Net Remoting technology
Overview of Microsoft .Net Remoting technologyOverview of Microsoft .Net Remoting technology
Overview of Microsoft .Net Remoting technology
 
Android Native Development Kit
Android Native Development KitAndroid Native Development Kit
Android Native Development Kit
 
Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)
 
Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)Overview of SCTP (Stream Control Transmission Protocol)
Overview of SCTP (Stream Control Transmission Protocol)
 
Web services
Web servicesWeb services
Web services
 
Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)
 
MSMQ - Microsoft Message Queueing
MSMQ - Microsoft Message QueueingMSMQ - Microsoft Message Queueing
MSMQ - Microsoft Message Queueing
 
Common Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBACommon Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBA
 
Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)
 
JMS - Java Messaging Service
JMS - Java Messaging ServiceJMS - Java Messaging Service
JMS - Java Messaging Service
 
Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)
 
REST - Representational State Transfer
REST - Representational State TransferREST - Representational State Transfer
REST - Representational State Transfer
 

Kürzlich hochgeladen

What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
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
 
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
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
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
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
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
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
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
 

Kürzlich hochgeladen (20)

What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
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
 
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.
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
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
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
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
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
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
 

Business Process Model and Notation (BPMN)

  • 1. © Peter R. Egli 2015 1/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com OVERVIEW OF BUSINESS PROCESS MODEL AND NOTATION (BPMN) LANGUAGE FOR MODELING BUSINESS PROCESSES PETER R. EGLI INDIGOO.COM BPMNBUSINESS PROCESS MODEL AND NOTATION
  • 2. © Peter R. Egli 2015 2/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com Contents 1. What is BPMN? 2. BPMN Main Parts 3. BPMN Scope 4. BPMN Core Concepts 5. BPMN versus BPEL 6. BPMN notation elements 7. BPMN 2.0 versus BPMN 1.2
  • 3. © Peter R. Egli 2015 3/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 1. What is BPMN? BMPN is a graphical modeling language and notation for business processes (=graphical DSL – Domain Specific Language) with the following goals: 1. Common language understandable for different stakeholders. 2. Visualization of execution languages like WSBPEL. 3. Interchange format between tools for process description and diagrams. <bpmn:process name="Order Process"> <bpmn:endEvent name="Send confirmation"> <bpmn:incoming>Incoming_Flow</bpmn:incoming> <bpmn:messageEventDefinition/> </bpmn:endEvent> <bpmn:startEvent name="Receive order" isInterrupting="true" parallelMultiple="false"> <bpmn:outgoing>Outgoing_Flow</bpmn:outgoing> <bpmn:messageEventDefinition/> </bpmn:startEvent> <bpmn:subProcess name="Process order" startQuantity="1" triggeredByEvent="false"> Business people use and monitor processes Business analysists define processes Developers implement processes BPMN = common language & notation
  • 4. © Peter R. Egli 2015 4/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 2. BPMN Main Parts (1/3) A. Diagram types: BPMN defines the following 4 diagram types. ChoreographyOrchestration/Process Collaboration Conversation
  • 5. © Peter R. Egli 2015 5/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 2. BPMN Main Parts (2/3) B. Business process notation: BPMN defines a common set of modeling elements to be used in BPMN diagrams. Data Connecting Objects Flow Objects Swimlanes Artifacts Activity Event Gateway Data Object Data Input Data Output Data Store Message FlowSequence Flow Association Data Association Pool Lane Group Text Annotation
  • 6. © Peter R. Egli 2015 6/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 2. BPMN Main Parts (3/3) C. Mapping to execution language: BPMN defines a mapping to the WSBPEL execution language. BPMN roughly maps to WSBPEL, but could be mapped to another execution language as well. BPMN Business Process Model Mapping to … <bpel:assign bpmn:label="invoke" name="invoke" bpmn:id="_Oig9ANU5Edyqa7yB__NlQQ"> <bpel:copy> <bpel:from>$thisStartRequestMsg.body/tns:city</bpel:f rom> <bpel:to>$timeService1GetCityTimeRequestMsg.param eters/TimeService1:city</bpel:to> </bpel:copy> … WSBPEL to run in BPEL-runtime
  • 7. © Peter R. Egli 2015 7/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 3. BPMN Scope Different model notations and languages are used for modeling business aspects. BPMN is a notation to model business processes. StrategyVision Organization Functional Breakdown Services Business Rules Business Processes Data Information Balanced Scorecards Org Chart BPMN Enterprise Architecture Strategy Map ArchiMate Entity Relationship Diagram SOMF Business Rules Model Functional Decomposition Diagram
  • 8. © Peter R. Egli 2015 8/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 4. BPMN Core Concepts (1/5) A. Orchestration / processes (1/2): A process describes a sequence or flow of activities as part of work to be carried out (=workflow). Processes contain the BPMN flow elements (events, actitivies, gateways) and callable processes. Process types: a. Private non-executable process (process for documentary purposes only) b. Private executable process (contains enough detail to be executable) c. Public process Activity Event Gateway Task Sub-Process Activity (=abstract super class) Concrete activity types Call Activity
  • 9. © Peter R. Egli 2015 9/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 4. BPMN Core Concepts (2/5) A. Orchestration / processes (2/2): a. Private process: A private process is specific to an organization. There is no interaction with another swimlane (pool = participant). b. Public process: Public processes show interactions between a private process and another process or participant (pool). Internals of public process are not shown, only the interactions with another process. PrivateProcess Start Check Credit HistoryCheck Order Completeness Calculate Price Send Notification End «BusinessPro... Approve Order «BusinessPro... Approve Order CarOwner Start Help Line Receive Request Send Service Address Receive Damage Description We'll Check What The Problem Is Check & Fix Engine End My Car is Broken The Engine Rumples Leave The Car Here Problem Is Fixed, Go To Checkout Desk Go To CarServ
  • 10. © Peter R. Egli 2015 10/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 4. BPMN Core Concepts (3/5) B. Collaboration: A collaboration shows the interaction between participants modeled as swimlanes (pool, lane). A collaboration diagram typically contains 2 or more pools / lanes. Message flows cross the pool boundaries while sequence flows connect activities within pools. PatientHealthcareContact Center/Doctor Illness occurs Contact Doctor Request Receive Request Send Appointment Receive Appointment Send Symptoms Receive Symptoms Give Medicine Receive Medicine I have a stomach acheGo see your doctorI want to see my doctor
  • 11. © Peter R. Egli 2015 11/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 4. BPMN Core Concepts (4/5) C. Choreography: Choreography shows the interactions between participants modeled as pools. Choreographies are defined outside of pools and exist between pools. The focus of choreographies is on the exchange of information between participants. In choreographies, there is no central control, responsible entity or observer. Patient Doctor Doctor Request I want to see my doctor Go see the doctor Patient Doctor Handle Symptoms I feel sick Patient Doctor Handle Prescription Pick up your medicine Patient Doctor Hanlde Medicine I need my medicine Here is your medicine
  • 12. © Peter R. Egli 2015 12/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 4. BPMN Core Concepts (5/5) D. Conversation: Conversation diagrams show the logical message exchanges between participants. Unlike process, collaboration and choreography diagrams, conversation diagrams show a "birds eye view" of the different conversations (exchange of information) between participants. Retailer Supplier Delivery Negotiations Consignee Shipment Schedule Delivery / Dispatch Plan Shipper Delivery / Dispatch Plan Carrier Insurance Coverage
  • 13. © Peter R. Egli 2015 13/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 5. BPMN versus BPEL BPMN and BPEL share common concepts, but are not tools for the same purpose. BPMN is mainly a notation that defines how business processes can be modeled graphically. WS-BPEL defines a machine-processable and –executable format for business processes. BPMN 1.2 is typically translated to BPEL 2.0 which in turn is executed on a BPMN runtime. BPMN 2.0 can be directly executed on a BPMN runtime without translation to another format. Description Language Translator Execution Language Runtime BPMN 1.2 BPMN Mapper WS-BPEL (BPEL 2.0) BPMN runtime like intalio BPMN 2.0 - BPMN 2.0 BPMN runtime Java Java compiler Byte code Java Virtual Machine C / C++ Compiler Machine code CPU
  • 14. © Peter R. Egli 2015 14/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (1/10) Activity: Activities (tasks, sub-processes) are executable elements of a BPMN process. Actity type Symbol Description Task Atomic activity within a process that cannot be broken down further. Typically a task is executed by an end-user or application. Sub-process Activity with an internal structure containing activities, gateways, events and sequence flows. Call activity Defines a point where a global task or process is called. A call activity differs from a sub-process in that it is a reference to a process while a sub-process is a process itself. This means that a call activity calls a reusable process or task. The called sub-process or task can be called multiple times by different call activities. Task Sub-Process Call Activity (Task) Call Activity (Sub-Process)
  • 15. © Peter R. Egli 2015 15/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (2/10) Task types (1/2): Task type Symbol Description Abstract task Task without any specialization. Service task Task that uses some sort of service like a web service. Send task Task for sending a message to an external participant. After the message is sent, the task is completed. Receive task Task that waits for a message to arrive from an external participant. After the message is received, the task is completed. Instantiating receive task Same as receive task, but instantiates a process ("creates process token"). Task Service Task Send Task Receive Task Process Instantiate Receive Task
  • 16. © Peter R. Egli 2015 16/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (3/10) Task types (2/2): Task type Symbol Description User task Task executed by a human with the assistance of a software application. Manual task Task executed by a human without the assistance of any process execution engine or application. Business rule task Provides input to a business rule engine. Receives output from a business rule engine. Business rule tasks connect a process or sub-process to a business rule engine. Script task A script task is executed by a business process engine. When the script is finished, the task is finished as well. User Task Manual Task Business Rule Task Script Task
  • 17. © Peter R. Egli 2015 17/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (4/10) Task markers: Additional markers add more semantics to tasks. Task marker Symbol Description Loop A looping task repeats its action as long as a loop flag is set. Multi- instance sequential The task is executed in multiple instances in sequential order. Multi- instance parallel Multiple instances of the task are executed in parallel. Compensation Compensation is used in case of errors (exceptions) to undo steps that are already executed (call of compensation handler for a "rollback"). Allowed marker combinations Multi-instance sequential & compensation Multi-instance parallel & compensation Loop & compensation Loop Task Multi-instance Sequential Task Multi-instance Parallel Task Compensation Task Task Task Task
  • 18. © Peter R. Egli 2015 18/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (5/10) Sub-process types: Sub-process type Symbol Description Transaction sub-process A transactional sub-process executes all internal activities either successfully or none (exception case). Typically, a transaction sub-process is combined with a cancel event to call a transaction cancel (rollback) handler. Event sub- process Execution of an event sub-process is triggered by an event. The execution is independent of the parent process flow, thus there are no incoming and outgoing sequence flows. However, an event sub-process is only executed when the parent process (or sub-process) is active. Transaction Sub-Process
  • 19. © Peter R. Egli 2015 19/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (6/10) Sub-process markers (1/2): Sub-processes may have the same markers as tasks. Additionally, the ad-hoc marker may be used on sub-processes to express a less strict execution ordering. Sub-process marker Symbol Description Loop A looping sub-process repeats its internal activities as long as a loop flag is set. Multi- instance sequential The sub-process is executed in multiple instances in sequential order. Multi- instance parallel Multiple instances of the sub-process are executed in parallel. Compensation Compensation is used in case of errors (exceptions) to undo steps that are already executed (call of compensation handler to "rollback"). Ad-hoc sequential Ad-hoc sub-processes have a less strict temporal ordering of activities. Internal activities may or may not have sequence flows. Ad-hoc sequential means that contained activities are executed sequentially. Ad-hoc parallel In a parallel ad-hoc sub-process, contained activities are executed in parallel. Loop Sub-Process Multi-instance Sequential Sub-Process Multi-instance Parallel Sub-Process Compensation Sub-Process Ad-hoc Sequential Sub-Process Ad-hoc Parallel Sub-Process
  • 20. © Peter R. Egli 2015 20/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (7/10) Sub-process markers (2/2): Task marker Symbol & Description Allowed marker combinations Loop & compensation Loop & ad-hoc (parallel and sequential) Multi-instance & compensation (parallel and sequential) Multi-instance & ad-hoc (parallel and sequential) Ad-hoc & compensation (parallel and sequential) Loop & compensation & ad-hoc (parallel and sequential) Multi-instance & compensation & ad-hoc (parallel and sequential) Loop & Compensation Sub-Process Loop & Ad-hoc Sub-Process Multi-instance & Ad-hoc Sub-process Multi-instance & Compensation Sub-process Ad-hoc & Compensation Sub-process Loop & Ad-hoc & Compensation Sub-process Multi-instance & Ad-hoc & Compensation Sub-process
  • 21. © Peter R. Egli 2015 21/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com Process pool Blackbox pool No process referenced Contains a process Pool types 6. BPMN notation elements (8/10) Swimlanes (1/2): Swimlanes are either pools (white-box or black-box) or lanes (=partitions in pools). Pools represent participants which are partner entities like a supplier. Participants are often responsible for a process execution in a pool. Simplified meta-model: PartnerEntity Example: Company Participant PartnerRole Example: Buyer Process <<represents>> <<represents>> <<responsible for>> Pool <<Graphical representation of>> Swimlane Lane (=Subpartition in pool)
  • 22. © Peter R. Egli 2015 22/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com ProcessPool 6. BPMN notation elements (9/10) Swimlanes (2/2): Swimlanes markers: Swimlane type Symbol Description Process ("White- box") pool Pool that contains a process. Black-box pool Pool that does not contain a process. Lane Lanes are sub-partitions in a pool or process. Lanes can be nested. Lanes do not have semantics in BPMN, i.e. lanes are a simple grouping and partitioning concept. Blackbox pool Poolwith lanes ProductionSales Swimlane marker Symbol Description Multi- instance Multi-instance pools represent multi-instance participants. Example: Multiple suppliers. Multi-instance Pool
  • 23. © Peter R. Egli 2015 23/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 6. BPMN notation elements (10/10) Gateways: Gateways are used to produce and consume process tokens (process instances). Gateway type Symbol Description Exclusive gateway or Exclusive gateways are like decisions. The process flow takes either of the outgoing directions (only 1 or none). Inclusive gateway The inclusive gateway evaluates all outgoing conditions and creates a process token for each condition that evaluates to true. Parallel gateway Parallel gateways join and fork flows. Thus parallel gateways are used to create (fork) and synchronize (join) parallel flows. No condition checking is involved with parallel gateways. Complex gateway Complex gateways are used to model complex synchronization behavior. Example: 3 out of 5 incoming flow tokens must be present to create an outgoing process token (depending on the conditions of the outgoing flows). Outgoing and incoming token semantics are the same as in inclusive gateways. Event gateway Event gateways represent branching points based on events rather than conditions. Example: Reception of different messages is dispatched into different process paths to handle the messages. X
  • 24. © Peter R. Egli 2015 24/24 Rev. 1.60 BPMN – Business Process Model and Notation indigoo.com 7. BPMN 2.0 versus 1.2 BPMN 2.0 brought a number of changes : • Formalization and clarification of the execution semantics of all BPMN elements • Extensibility mechanism for graphical elements • Refinement of event composition and correlation • Definition of choreography model (choreography, choreography diagram) • Redefinition and clarification of various BPMN elements (see table below) BPMN 1.2 Feature BPMN 2.0 Feature Reusable sub-process Call activity Embedded sub-process Sub-process Abstract process Public process Directional association to show how data objects are inputs and outputs to activities Data association connector to show inputs and outputs Message is a BPMN element Message is only a graphical decorator None task Abstract task Directional associations to show data flows to and from activities Data association connector to show inputs and outputs of activities Performer role for describing people in activities In addition to Performer role, HumanPerformer role allows to identify humans performing a task Intermediate events possible without incoming sequence flows Intermediate events must have an incoming sequence flow