Load

Article • 02.08.2022 • 4 minute(s) to read

Load

The Load Activity loads Entities from the Database into Entity Variables so that other Activity can use or modify them.

If no matching Entities are found in the Database, no Entity Variable will be created but the Load Activity will complete successfully anyways.

This Activity can have an arbitrary amount of Outcomes, but all Outcomes must have the same name. The script of each Outcome is evaluated once the Activity has completed. Each Outcome with a script evaluating to true is followed. If more than one Outcome script evaluates to true, the Instance is paralleled. If no Outcome script evaluates to true, the Instance is ended by entering the closed-state.

Activity config

General
  • Name - Name of the Activity.
  • Version - Version of this Activity used in the Process. If a new version of this Activity is available and you want to use it, you have to manually update the version here. When a new Activity is added to the Process, automatically the latest version is placed.
  • Timeout in second - Once this time is elapsed, the Activity is closed and the Instance changes into the faulted-state. The default Timeout is two minutes. The timeout can be shortened and extended by entering a custom duration. If the Activity is left after a timeout, the first Outcome is followed. If multiple Outcomes have the same name as the first Outcome, all of them are followed. However, a continuation after a timeout does not effect the Outcome Scripts, meaning only Outcomes with Outcome Scripts evaluating to true are followed.
  • Hide in process graph - Controls if the Activity is hidden (Yes) or shown (No) in the Process Graph on the Execution Screen.
  • Continue on error - If this is set to Yes, the execution of the Instance continues even if the Activity failed. If set to No, the Instance fails when the Activity fails by entering the faulted-state. In the case of a continuation after an error, the first Outcome is followed. If multiple Outcomes have the same name as the first Outcome, all of them are followed. However, a continuation after an error does not effect the Outcome Scripts, meaning only Outcomes with Outcome Scripts evaluating to true are followed.
Load

Load Activity specific configurations

GENERAL

General interaction configuration, shared with most other Activities

  • Disable activity - Disables (Yes) or enables (No) the Activity. When disabled, the Activity is not executed and passed like a Connection by following the first Outcome. If multiple Outcomes have the same name as the first Outcome, all of them are followed. Disabling the Activity does not effect the Outcome Scripts, i.e., still only Outcomes with Outcome Scripts evaluating to true are followed.
  • Retry on error - If set to Yes, an automatic retry is executed up to ten times. If set to No, no retries are done. Retries are issued when the Activity failed so that the Instance would enter the faulted-state if the retry is disabled.
  • Additional text for task list - Description of this Activity shown to the Users in their task list. You can enter this text directly or use Process Context Expressions to compile it.
SETTINGS

Configuration to specify what Entity should be loaded from the database.

  • Entity type - Entity Type of the Entity to load and consequentially also the type of the resulting Entity Variable.
  • Source - Defines how the Entity is identified in the Database.
    • Entity Id - Each Entity has a unique Entity Id that can be used to identify it in the Database. The field Entity Id allows you to specify an Entity ID directly, or to calculate it with a Process Context Expressions.
    • Unique Value - When the Entity in question has an Attribute that is subject to a unique constraint, this Attribute can be used to identified the Entity to be loaded from the Database:
      • Attribute - Specifies the name of the unique Attribute used to select the Entity to be loaded.
      • Value - The Entity with this value will be loaded. The value can be specified directly, or it can be determined by entering a Process Context Expressions.
  • Variable - Name of the Entity Variables created by the this Activity.