I developed a process model with a form that collects employee details. If the "submit" button is clicked, it moves to a user input task with "Approve" button. Upon pressing this, the details are updated in the database. The issue is that when I run the process model in debug mode, it works perfectly, but when I run it through the site action button, the first page is displayed but doesn’t proceed to the user input task. Instead, it stayed on that page.
Please provide a solution.
Discussion posts and replies are publicly visible
Yeah that's what we are mentioning before, The chaining is incorrect, After start form you skipped the chaining. Configure Chaining in between them, it will fix everything for you
Venkat Avuluri said:You missed chaining after Start node (between start node and XOR)
Sorry i missed your comment , Please go through the link . Chaining is like linking User input tasks ,When you have a scenario where same user needs to perform multiple tasks , Activity chaining comes in handy, it will remove the extra burden of sending task to user and user accepting it and performing it. https://docs.appian.com/suite/help/24.3/Process_Model_Recipes.html#using-activity-chaining-to-display-multiple-forms-in-succession
Open the process model --> right click on the line between start node and xor node --> Enable activity chaining --> Save and publish
Then test, it will probably work
yes, thankyou it worked