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
Can you share the code used in button?
which button? the user input task has an interface which has approve button. All buttons are working perfectly. but my point is when the process model starts from the start node then when it reaches the user input task the form doesn't open automatically. It opens on clicking view form. then on accepting the form works on clicking the view form
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)
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