You're creating a process model that will serve as the case creation workflow.
Your requirements:
This process captures input from the user before executing a series of unattended subprocess nodes.
Each subprocess performs extended data processing which is dependent on output from each of the previous nodes.
An activity chained task node is displayed asking the user if they'd like to create another case.
What should you do?
Combining the separate subprocesses into one synchronous subprocess and placing it between each user input task ensures each subprocess's output is available for the next step, maintaining data dependencies and supporting the required user experience with activity chaining.
Currently there are no comments in this discussion, be the first to comment!