Skip to content

Commit cae78e1

Browse files
committed
Add paused state
1 parent fcdadae commit cae78e1

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

content/en/docs/refguide/modeling/application-logic/workflows/event-sub-processes.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,13 @@ The `WorkflowSubProcess` entity represents a specific runtime instance of an eve
171171

172172
The `WorkflowSubProcessState` enumeration defines the possible lifecycle phases of a sub-process instance:
173173

174-
| Caption | Name | Description |
175-
| --- | --- | --- |
176-
| In progress | `InProgress` | The sub-process has been triggered and is currently executing. |
177-
| Aborted | `Aborted` | Execution was terminated, either because the parent workflow was aborted or due to an interrupting event. |
178-
| Failed | `Failed` | Execution ended unsuccessfully because an activity within the sub-process encountered an error. |
179-
| Completed | `Completed` | The sub-process reached its end event and finished successfully. |
174+
| Caption | Name | Description |
175+
|-------------|--------------|-----------------------------------------------------------------------------------------------------------|
176+
| In progress | `InProgress` | The sub-process has been triggered and is currently executing. |
177+
| Aborted | `Aborted` | Execution was terminated, either because the parent workflow was aborted or due to an interrupting event. |
178+
| Failed | `Failed` | Execution ended unsuccessfully because an activity within the sub-process encountered an error. |
179+
| Completed | `Completed` | The sub-process reached its end event and finished successfully. |
180+
| Paused | `Paused` | The sub-process was paused because the parent workflow was paused. |
180181

181182
## Read more
182183

0 commit comments

Comments
 (0)