Skip to content

Object Create#

The Object Create node is used to create a Business Object. A business model must be specified.

Adding this node to a Flow will allow you to use all properties of the Business Object as Flow variables.

Creation Modes#

There are two ways to configure how the object's properties are populated:

Properties (Manual)#

Set values for each object property individually, either as a fixed value or as a Flow variable.

  • Select a Model to see its available properties.
  • Add properties and assign values or variables to each one.
  • Required model properties are added automatically and cannot be removed.
  • Optionally configure Access Rights to control who can see the created object.

Auto-create from UI#

Automatically populate object properties from a UI node's response. The system matches UI elements to model properties using the following strategy (in order):

  1. By ID — the UI element's ID matches a model property ID.
  2. By Reference — the UI element's reference field matches a model property ID.
  3. By Label — the UI element's label matches a model property label (in any language).

This mode is useful when a UI form closely mirrors a business model, avoiding the need to manually map each property.

To use this mode:

  1. Add a UI node to your flow before the Object Create node.
  2. In the Object Create node, select Auto-create from UI.
  3. Choose the UI node whose response should be used.

Note

The two modes are mutually exclusive — you can either set properties manually or auto-create from a UI node, but not both.

See Flow Designer