Hello,
I have a custom Business Process flow that applies to only the Opportunity entity and contains 4 Stages:
Develop -> Prepare -> Approve -> Book
When Develop is the Active stage (has the blue flag), I want to Disable the 3 fields in the Approve Stage so that when Approve is not the active Stage, users cannot click on the Approve stage and edit the fields.
Currently the only way I can disable the fields is when Approve is the active stage (has the blue flag) and I use a business rule or the SDK (JS):
Xrm.Page.getControl("header_process_lc_approvalstatus").setDisabled(true);
How can I Disable the BPF fields of a stage that is not currently the active stage?