Hi All,
I have already configure business process in web application. but i want to used that process in field service mobile app.
suggest me how to configure that process in mobile application.
This business process already configure in web application.
I think you can remove the BPF specfically from the Fields Service Mobile Model Driven app
Hi Jacky,
There is JavaScript on the form to hide the BPF. You don't want to change the field service library.
You might need to write a JavaScript to run after the Microsoft OnLoad function.
WebResources/msdyn_/WorkOrder/WorkOrder.Library.js
function HideBpfIfFieldServiceMobile(formContext, allowHidingBpf) { if (allowHidingBpf === void 0) { allowHidingBpf = false; } return __awaiter(this, void 0, void 0, function () { var _a; return __generator(this, function (_b) { switch (_b.label) { case 0: _a = allowHidingBpf; if (_a) return [3 /*break*/, 2]; return [4 /*yield*/, IfFieldServiceMobile()]; case 1: _a = (_b.sent()); _b.label = 2; case 2: if (_a) { formContext.ui.process.setVisible(false); } return [2 /*return*/]; } }); }); }
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,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156