I want to move to next stage automatically in a business process flow when a user selects particular value for a step. The below snippet moves the process to the next stage
function nextStage(){
console.log("moved")
}
parent.Xrm.Page.data.process.moveNext(nextStage())
Now I want this to happen when a value in a step changes For example when user selects "Form submission" for a step called "Request status", i want the process to move to the next stage. How can I capture the action when user selects a value for the "Request status" step?
*This post is locked for comments
I have the same question (0)