Skip to main content
May 22, 2023
Solved

How to add result page after submit button in the form

  • May 22, 2023
  • 5 replies
  • 0 views

I have a process model where the start form is an interface and the user inputs the data and when he submits the form, i am getting message that Action completed successfully.

In the process model after the start form, the next node is write to Datastore.

How to show any result page after submit button is clicked to user instead of form going back to the first page of the form?

    Best answer by davel001150

    You create a User Input task at the end of the Process model after the Write to Datastore.  Then you use activity chaining to chain all the lines between the nodes from the start to the new User Input task.  User input task can be whatever interface you want, so you design your own results page. 

    If you want to use savedValues output of the Write to Datastore output, you can even display what got saved to the database as part of it, if you want.

    5 replies

    davel001150
    May 23, 2023

    You create a User Input task at the end of the Process model after the Write to Datastore.  Then you use activity chaining to chain all the lines between the nodes from the start to the new User Input task.  User input task can be whatever interface you want, so you design your own results page. 

    If you want to use savedValues output of the Write to Datastore output, you can even display what got saved to the database as part of it, if you want.

    May 23, 2023

    Thank you for the above suggestion.

    The result page is displayed now.

    But I am not able to use the saved Values output to display the value.

    How do I configure  it in user input task or interface to display the stored value?

    stefanhelzle0001
    Brainy
    May 23, 2023

    This video explains data flow in Appian. www.youtube.com/watch

    May 23, 2023

    You can give user input task in which you can give the form of that interface which you want to display after you submits the form and also enable activity chaining with that connecting node.