Skip to main content
April 1, 2026
Question

Loading one interface immediately after another

  • April 1, 2026
  • 3 replies
  • 0 views

Consider blue path only! I used activity chain to start "Choose policy" interface immediately after the main interface. The process is started by a startProcess inside a saveinto of a buttonWidget. After clicking the button the process starts, but the interface isn't automatically loaded. The owner of the task is set as pp!initiator. What could I miss?

    3 replies

    csteward
    April 1, 2026

    You cannot chain into a User Input Task with a!startProcess from a buttonWidget in another process - in this case your parent process is simply waiting for the secondary process to complete on it's own before continuing with the parent process (with a setting of "synchronous").

    If you are moving the user from one process to another, why not utilize a Subprocess after the parent input task completes?

    Ways to Start a Process

    shubhama926776
    April 1, 2026

    Use a!startProcessLink() instead of a!startProcess() in the button saveInto.

    csteward
    April 7, 2026

    Unfortunately we cannot use a!startProcessLink() inside of a!buttonWidget().