Fill in this field and all instances will be named after the text you enter. 



How to set the Instance settings

  1. When deploying a process application, click on Instance settings in the process configuration.
  2. Enter a text for the name of the instances. If you want to use form fields to set the name, you may have to make some settings on your form, see Name the instance with form field below.
  3. Click on deploy.


How can I name the instances

The instance name can be set to anything using these components:

  • Static string - Write a static string and every instance will be named that string - Note that it's hard to separate the instances if only using strings for the name
  • Form field - Use a form field to set the instance name, the syntax for fetching form fields are $[objectname].[fieldname]$, see example below
  • Variable - Use variables to set the instance name, i.e. $instance.createddate$
  • Concatenate - Use combinations of strings, form fields and variables, i.e. "Purchase request: $Request.requestName$", "$Requst.requestName$ $instance.createddate$", "$Request.requestName$ $Request.requestDate$"


Read more about variables in the article Variables.


Example of using form field to set the name of the instances

  1. Make sure you have the name of the form template connected to the start event.

  2. Get the field name of the field you wish to capture the text for the instance name from.
    TIP: To make it easier to remember set your own name to the form field instead of using the default ones (i.e. Field8).



  3. When deploying the application, open the instance settings and set the instance name to $[form template name].[field name]$



TIP: The syntax for the images above are: "Purchase request: $Request.purchaseTitle$" 


When to set the Instance settings

Instances are named according to this requirements, in this specific order:

  • If there is an Instance setting the instance is named according to that, else
  • if the start event has a Form Template connected and that template has a field named instance.name the instance will fetch the text filled in that field when the instances starts, else
  • if the start event has a Form Template connected but no field named instance.name, the user will have to fill in a Instance name when starting the instance, else
  • if the start event hasn't any Form Template connected, the user will have to fill in a Instance name when starting the instance. 


Use the instance settings when you want to control the name of the instance more than what the initiator writes in a form field or if you want to concatenate values from text, form fields and variables.


NOTE: Instance settings are also available for sub processes and Call Activity, read more in the article Sub instance settings.