Comment on page
Core actions
Core actions are actions directly supported by the process interpreter. They relate to how a process runs, completes or fails.
Complete the top-level process right away and return a success value.
You can run a sub-process with the
process
action:<property as="xs:string" name="oxf.fr.detail.process.home.*.*">
process("orbeon-home")
</property>
You can also run a sub-process directly by name:
<!-- Define a sub-process which navigates to the "/" URL -->
<property as="xs:string" name="oxf.fr.detail.process.orbeon-home.*.*">
navigate("/")
</property>
<!-- Use that sub-process from the "home" process -->
<property as="xs:string" name="oxf.fr.detail.process.home.*.*">
orbeon-home
</property>
[SINCE Orbeon Forms 4.3]
Suspend the current process. The continuation of the process is associated with the current form session.
[SINCE Orbeon Forms 4.3]
Resume the process previously suspended with
suspend
.[SINCE Orbeon Forms 4.3]
Abort the process previously suspended with
suspend
. This clears the information associated with the process and it won't be possible to resume it with resume
.[SINCE Orbeon Forms 4.3]
Don't do anything and return a success value.