Hello Everybody,
I am maintaining CRM 2015 on-premise project.
I have a existing BPF, with 5 stages.
My question is, when i am on stage 3 or 4 or 5, i don't see the stages, before them which are 2 or 3 or 4?
Is this normal behavior, i haven't found any c# or javascript, that is hiding the stages.
I tried to see all stages using javascript with below command
var activeProcess = Xrm.Page.data.process.getActiveProcess()
var stageCollection = activeProcess.getStages();
stageCollection.forEach(function (stage, n) {
console.log(stage.Id)
console.log(stage.getName())
console.log(stage.getStatus())
}
I get all the stages in the above code.
The last stage(eg: 5) has status Active, others(1,2,3,4) have Inactive.
I see stage 1 and 5 only.
I don't see any function for visible or display, etc.
How can i display all the previous stages ( Eg: 2,3,4)?
Thanks,
Madhu
*This post is locked for comments