2023-06-07 03:39:43 -04:00
# BPMN Terminology
## Activity
2024-04-01 14:17:38 +00:00
This refers to the work carried out by an individual or an organization within a process.
Activities can be classified into three categories: Task, Subprocess, and Call Activity.
These activities can be either atomic or non-atomic.
Atomic activities are indivisible and represent single tasks, while non-atomic activities involve multiple steps or subprocesses that work together to achieve a larger objective.
2023-06-07 03:39:43 -04:00
## Boundary Event
2024-04-01 14:17:38 +00:00
This refers to an event that can be triggered while an activity is in progress.
Boundary events are utilized for error and exception handling purposes.
2023-06-07 03:39:43 -04:00
## BPMN Model
2024-03-29 19:12:32 +00:00
This is a visual depiction of a business process designed to be both human-readable and machine-readable, typically represented in XML format.
2023-06-07 03:39:43 -04:00
## Business Process
2024-04-01 14:17:38 +00:00
This is a sequence of interconnected activities conducted by individuals and systems, following a defined order, with the aim of delivering a service or product, or accomplishing a specific business objective.
These processes involve the receipt, processing, and transfer of information and resources to generate desired outputs.
2023-06-07 03:39:43 -04:00
## Diagram
2024-03-29 19:12:32 +00:00
This is the visual platform where business processes are represented and mapped out.
2023-06-07 03:39:43 -04:00
## Call Activity
2024-06-28 15:03:25 +00:00
This refers to the act of a parent or higher-level process invoking a predefined or reusable child process, which is represented in another process diagram.
2024-04-01 14:17:38 +00:00
This invocation allows for the utilization of the child process multiple times, enhancing reusability within the overall model.
2023-06-07 03:39:43 -04:00
## Collapsed Subprocess
2024-03-29 19:12:32 +00:00
This is a Subprocess that conceals the underlying process it includes.
2023-06-07 03:39:43 -04:00
## Connecting Element
2024-04-01 14:17:38 +00:00
These are lines that establish connections between Flow Elements within a process, creating a Flow.
There are four distinct types of connecting elements: Sequence Flows, Message Flows, Associations, and Data Associations.
2023-06-07 03:39:43 -04:00
## Elements
2024-04-01 14:17:38 +00:00
These are the fundamental components used to construct processes.
These elements encompass Flow Elements, Connecting Elements, Data Elements, Artifacts, and Swimlanes.
2023-06-07 03:39:43 -04:00
## End Event
2024-04-01 14:17:38 +00:00
This marks the conclusion of a process.
An End Event can result in a Message, Error, or Signal outcome.
2023-06-07 03:39:43 -04:00
## Error
2024-03-29 19:12:32 +00:00
This denotes a significant issue encountered during the execution of an Activity or process, indicating a failure or malfunction in the processing.
2023-06-07 03:39:43 -04:00
## Event
2024-04-01 14:17:38 +00:00
This is an occurrence within a process that influences the Flow and typically involves a trigger and/or a result.
Events can be categorized into four types: Start, Intermediate, End, and Boundary.
2023-06-07 03:39:43 -04:00
## Event-Based Gateway
2024-03-29 19:12:32 +00:00
This marks a specific point within the process where alternative paths are initiated based on the occurrence of an Event.
2023-06-07 03:39:43 -04:00
## Exception
2024-04-01 14:17:38 +00:00
This is an Event within the process that deviates from the normal flow of execution.
Exceptions can be triggered by Time, Error, or Message Events.
2023-06-07 03:39:43 -04:00
## Exclusive Gateway
2024-04-01 14:17:38 +00:00
This denotes a juncture within the process where multiple alternative paths are available, but only one path can be chosen.
The decision regarding the chosen path is determined by a condition.
2023-06-07 03:39:43 -04:00
## Expanded Subprocess
2024-03-29 19:12:32 +00:00
This is a Subprocess that shows the process it contains.
2023-06-07 03:39:43 -04:00
## Gateway
2024-04-01 14:17:38 +00:00
This is a component that governs the available paths within a process.
2024-06-26 02:55:03 +00:00
Gateways can merge or diverge paths or introduce additional paths based on conditions or Events.
2024-04-01 14:17:38 +00:00
There are four types of Gateways: Exclusive, Parallel, Inclusive, and Event-Based.
2023-06-07 03:39:43 -04:00
## Intermediate Event
2024-06-28 15:03:25 +00:00
This is an event that occurs in the middle of a process, neither at the start nor the end.
2024-04-01 14:17:38 +00:00
It can be connected to other tasks through connectors or placed on the border of a task.
It evaluates conditions and circumstances, triggering events and enabling the initiation of alternative paths within the process.
2023-06-07 03:39:43 -04:00
## Join
2024-03-29 19:12:32 +00:00
This refers to the process of merging two or more parallel Sequence Flows into a single path using a Parallel Gateway.
2023-06-07 03:39:43 -04:00
## Lane
2024-03-29 19:12:32 +00:00
These are subdivisions within a Pool that are utilized to assign activities to specific roles, systems, or departments.
2023-06-07 03:39:43 -04:00
## Merge
2024-04-01 14:17:38 +00:00
This is the process in which two or more parallel Sequence Flow paths converge into a single path, achieved either through multiple incoming Sequence Flows or by utilizing an Exclusive Gateway.
2024-06-28 15:03:25 +00:00
This merging of paths is also commonly referred to as an "OR-Join."
2023-06-07 03:39:43 -04:00
## Message
2024-04-01 14:17:38 +00:00
This signifies the content of a communication exchanged between two Participants.
The message is transmitted through a Message Flow.
2023-06-07 03:39:43 -04:00
## Non-atomic Activity
2024-04-01 14:17:38 +00:00
This refers to an Activity that can be further decomposed into more detailed steps or subtasks.
A Subprocess is an example of a non-atomic Activity.
It is also commonly referred to as a "compound" Activity.
2023-06-07 03:39:43 -04:00
## Parallel Gateway
2024-03-29 19:12:32 +00:00
This indicates a specific point within the process where the Flow divides or merges into multiple parallel paths.
2023-06-07 03:39:43 -04:00
## Parent Process
2024-03-29 19:12:32 +00:00
This is a process that contains a Subprocess.
2023-06-07 03:39:43 -04:00
## Participant
2024-03-29 19:12:32 +00:00
This refers to a business entity, which can be an organization, department, unit, or role involved in a process.
2023-06-07 03:39:43 -04:00
## Pool
2024-03-29 19:12:32 +00:00
This represents a Participant in a process.
2023-06-07 03:39:43 -04:00
## Sequence Flow
2024-03-29 19:12:32 +00:00
This specifies the sequence and behavior of the Flow Elements within a process.
2023-06-07 03:39:43 -04:00
## Signal
2024-03-29 19:12:32 +00:00
This is an Event that is transmitted to all individuals or entities participating in a process.
2023-06-07 03:39:43 -04:00
## Start Event
2024-03-29 19:12:32 +00:00
This indicates where a process starts.
2023-06-07 03:39:43 -04:00
## Subprocess
2024-03-29 19:12:32 +00:00
This is a self-contained and compound Activity incorporated within a process, capable of being further decomposed into smaller units of work.
2023-06-07 03:39:43 -04:00
## Swimlane
2024-04-01 14:17:38 +00:00
This is a visual representation that separates processes based on the Participants responsible for performing them.
Swimlanes are comprised of Pools and Lanes.
2023-06-07 03:39:43 -04:00
## Task
2024-03-29 19:12:32 +00:00
This is an action performed by a person, an application, or both.
2023-06-07 03:39:43 -04:00
## Text Annotation
2024-03-29 19:12:32 +00:00
This provides additional information about the elements in a diagram.
2023-06-07 03:39:43 -04:00
## Trigger
2024-03-29 19:12:32 +00:00
This is a mechanism that detects and identifies a particular condition or circumstance within a Start Event or Intermediate Event, subsequently initiating a corresponding response.