Workflow:Process: Difference between revisions

From ContactsLaw Documentation
No edit summary
No edit summary
Line 3: Line 3:
'''Processes''' provide a way to model business rules and add automation to [[ContactsLaw]].
'''Processes''' provide a way to model business rules and add automation to [[ContactsLaw]].


A process is a collection of '''rules''' which run in response to some event, or when started manually. These rules pertain to a particular [[subscription]], [[workgroup]] or [[document type]].
A process is a collection of '''[[Workflow:Process#Rules|rules]]''' which run in response to some event, or when started manually. These rules pertain to a particular [[subscription]], [[workgroup]] or [[document type]].


== Assets ==
== Assets ==
Similarly to how they are used in [[Document Template#Assets|document templates]], a process defines a set of assets that represent the resources it can refer to. One important difference is that processes can also create new resources (e.g. new [[Contact|contacts]], [[Matter|matters]], [[Task item|tasks]], etc).
Similarly to how they are used in [[Document Template#Assets|document templates]], a process defines a set of assets that represent the resources it can refer to.
 
One important difference is that processes can also create new resources (e.g. new [[Contact|contacts]], [[Matter|matters]], [[Task item|tasks]], etc). This means that a particular asset may refer to an existing resource, a newly-created resource or a combination of both. It also means that the number of resources a particular asset resolves to may change during the course of the process.
 
The other main difference is that, since processes do not have separate definitions and configurations, each asset has a single mapping only. [[Workflow:Process#Rules|Rules]] are often too specific to allow a process to run outside of the [[business]] or workgroup for which it was originally designed.
 
Assets have the following properties:
 
* '''New Indicator''' - Indicates that the asset will be used to create new resources.
* '''Required Indicator''' - Marks the asset as mandatory. The process will not start unless the asset resolves to at least one resource. This allows the author of the process to avoid making provisions for the asset going unfulfilled.
* '''Multiple Indicator''' - Allows the asset to be resolved more than once. If absent, this allows the author to avoid making provisions for multiple values.
* '''Source/Mapping''' - Indicates how the asset resolves to a subscriber-specific resource. For example, a contact may be resolved using a role on a matter. This may be overridden by an [[Workflow:Process#Entry Points|entry point]].


== Entry Points ==
== Entry Points ==
Entry points describe how to start a process automatically.
Entry points describe how to start a process automatically.
They consist of:
* An '''asset''' of a particular type that is fulfilled when the entry point is triggered.
* An '''event''' that may occur on the type of asset (e.g. when a [[document]] is uploaded).
* A '''condition''' (optional) that further quantifies the event (e.g. for a particular [[document type]]).
A process may define several entry points, allowing it to start in different circumstances. Each time an entry point is triggered, a new [[Workflow:Process#Instances|instance]] of the process is created; even if that process is already running using the same resource(s).
If a process has no entry points, it can still be started manually.


== Rules ==
== Rules ==
Line 27: Line 48:
=== Actions ===
=== Actions ===
Actions describe work to carry out within [[ContactsLaw]].
Actions describe work to carry out within [[ContactsLaw]].
== Instances ==
When a process starts, [[ContactsLaw]] creates a new instance.
Instances of processes have the following properties:
* Information about how the process was started
* A list of resources that were resolved for each [[Workflow:Process#Assets|asset]]
* The current progress through the [[Workflow:Process#Rules|rules]]
* Whether the process is waiting on any [[Task item|tasks]] or prompts
[[Member|Members]] can see a list of processes that they started, with the option to abort a particular instance if it needs to be stopped prematurely.
[[Category:Workflow]]
[[Category:Workflow]]

Revision as of 10:17, 18 March 2024


Processes provide a way to model business rules and add automation to ContactsLaw.

A process is a collection of rules which run in response to some event, or when started manually. These rules pertain to a particular subscription, workgroup or document type.

Assets

Similarly to how they are used in document templates, a process defines a set of assets that represent the resources it can refer to.

One important difference is that processes can also create new resources (e.g. new contacts, matters, tasks, etc). This means that a particular asset may refer to an existing resource, a newly-created resource or a combination of both. It also means that the number of resources a particular asset resolves to may change during the course of the process.

The other main difference is that, since processes do not have separate definitions and configurations, each asset has a single mapping only. Rules are often too specific to allow a process to run outside of the business or workgroup for which it was originally designed.

Assets have the following properties:

  • New Indicator - Indicates that the asset will be used to create new resources.
  • Required Indicator - Marks the asset as mandatory. The process will not start unless the asset resolves to at least one resource. This allows the author of the process to avoid making provisions for the asset going unfulfilled.
  • Multiple Indicator - Allows the asset to be resolved more than once. If absent, this allows the author to avoid making provisions for multiple values.
  • Source/Mapping - Indicates how the asset resolves to a subscriber-specific resource. For example, a contact may be resolved using a role on a matter. This may be overridden by an entry point.

Entry Points

Entry points describe how to start a process automatically.

They consist of:

  • An asset of a particular type that is fulfilled when the entry point is triggered.
  • An event that may occur on the type of asset (e.g. when a document is uploaded).
  • A condition (optional) that further quantifies the event (e.g. for a particular document type).

A process may define several entry points, allowing it to start in different circumstances. Each time an entry point is triggered, a new instance of the process is created; even if that process is already running using the same resource(s).

If a process has no entry points, it can still be started manually.

Rules

Rules contain the logic of a process.

There are several types of rules:

  • Unconditional - performs a sequence of actions.
  • If-Then-Else - tests a condition and executes a different sequence of rules depending on the result.
  • Switch-Case - executes the sequence of rules that correspond to a particular value for an expression.
  • While-Do - repeats a sequence of rules for as long as a condition remains true.
  • For-Each - repeats a sequence of rules for each value in a set.

Conditions

Conditions are tests (typically expressions) that evaluate to either "Yes" or "No", and are the basis for making decisions in processes. They can be combined using Boolean logic ("and", "or").

Actions

Actions describe work to carry out within ContactsLaw.

Instances

When a process starts, ContactsLaw creates a new instance.

Instances of processes have the following properties:

  • Information about how the process was started
  • A list of resources that were resolved for each asset
  • The current progress through the rules
  • Whether the process is waiting on any tasks or prompts

Members can see a list of processes that they started, with the option to abort a particular instance if it needs to be stopped prematurely.