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?
Discussion posts and replies are publicly visible
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.
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?
This video explains data flow in Appian. www.youtube.com/watch
Make sure that in the write to DSE smart service, you have to keep the Data > Input > SaveInto is kept blank and you have only specified the value and Data> Output> Stored values.
Mapping saveInto will not return the primary key.