Process Creation Activity

Process Creation activities create an instance in another process and run it asynchronously.

The process invoked by the Process Creation activity is called subprocess. You can use any process as a subprocess.

Use Process Creation activities to:


Process Creation activities are similar to Subflow activities because both create an instance in a subprocess.

The main difference with Subflow activities is that Process Creation activities are asynchronous. The instance in the Process Creation activity does not wait for the subprocess to finish, to move to the next activity in the process.

If you need to wait for the subprocess to finish or you need to retrieve its output arguments, you can add a Termination Wait activity later on in the process flow. You can add flow objects between the Process Creation activity and the Termination Wait activity. The Engine runs these flow Objects and the subprocess simultaneously.