Confirmation Page

Certified Senior Developer

Hi All,

What would you all recommend for implementing a confirmation page after a form is submitted ? another user form ? The only concern I have is that once my user submits the form is a subprocess creating multiple instances (as we need). So basically for the confirmation page we need something along the lines this # of items were created in the system, even better if we can give the ids of the created items.

Any suggestions for a good design implementation?

Thanks in advance

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Shubham Aware

    The subprocess creates # of requests , which is given by the user in the initial form in the start node to this subprocess I'm just passing the number of times it needs to execute and thats all. So if user passes 5, this subprocess would create 5 different instances. 

    The goal is to at the end of the main process to show the user you have created these number of instances, these are the IDs.

Children