I created a new form from a copy of the Case form but the process flow is showing up. How do I remove it?
I deactivated it under Process and it seems to have disappeared from the form. Thank you for your help.
Hi partner,
The BPF can't be hidden in the form when you deactived it, it will still be displayed on the form, just with a pop-up box.
If you want to remove it and don't want to view it, you need remove the BPF from current app.
Go to Apps to open app designer.
Navigate to Business Process Flow:
Uncheck the BPF you don't want.
Save and publish.
Test:
Regards,
Leah Ju
Please mark as verified if the answer is helpful. Welcome to join hot discussions in Dynamics 365 Forums.
Thank you Leah. If I don't need the Business Process flow on any form, could I deactivate it, and then it won't show up?
Hi Partner,
Process Flow you mentioned is Business process flow?
Once the activated BPF has been added to the app, it will show all forms of the entity, you can’t remove it from only one of form.
But you can try to hide it based on current form with js code.
For example, i want hide process in the case form that label is 'Case':
function hideProcess(executionContext) {
var formContext = executionContext.getFormContext();
formName = formContext.ui.formSelector.getCurrentItem();
if (formName == 'Case') {
formContext.ui.process.getVisible(false);
}
}
Test Result:
Regards,
Leah Ju
Please mark as verified if the answer is helpful. Welcome to join hot discussions in Dynamics 365 Forums.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156