title | parent |
---|---|
Create Object |
object-activities |
The Create object action can be used to create an object.
{{% alert type="info" %}}
See Microflow Element Common Properties for properties that all microflow activities share (for example, caption). This page only describes the properties specific to the action.
{{% /alert %}}
The entity of which you want to create an object.
The Commit type defines the way the object is committed.
Option | Description |
---|---|
Yes with event handlers | The object is saved in the database and the event handlers are triggered. |
Yes without event handlers | The object is saved in the database, but the event handlers are not triggered. |
No | The object is changed without being saved in the database. |
{{% alert type="warning" %}}
Nanoflows do not support committing changes without events. Committing while running in an online app sends a commit request to the Mendix Runtime and runs the events. If a Create object action is used in an offline app, the changes are committed to the offline database.
{{% /alert %}}
Default value: No
If the microflow is called from the client, data sources do not reload, unless Refresh in client is set to Yes.
{{% alert type="warning" %}}
When inside a nanoflow, the Create object action reloads data sources as if Refresh in client was set to Yes.
{{% /alert %}}
Default value: No
You can initialize members of the newly created object. Values for members are specified with an expression and should be of the same type as the member.
Variable name defines the name of the resulting object variable. It can be used by all activities that follow this activity.