We upgraded a Business Central Sandbox to v24 to test the new OOTB integration with D365 Field Service. The integration between BC and FS seems to be working and now we're seeing what's changed in Field Service. I've been checking forums for similar issues, but couldn't find much help online so I decided to post our list in case it helped others.
We're using the new Work Order form, new Dynamics look, and we're on 2024 release wave 1.
ID | Issue | Issue Notes | Resolved? | Resolution Notes |
1 | Business Process Flow appears briefly, but disappears on new work order form | Tried a new BPF and modifying the standard. Both show on the old work order form, but not the new | No | |
2 | Work Order data import template fails to generate | | Yes | The integration with BC (I assume) created duplicate cost and price not to exceed fields that needed the header modified. |
3 | New Work Order form won't display fields side by side in a 2-column section | | No | |
I'll reply/edit as more things come up
Edit 5/31/24: The BPF seems to be hidden in the new work order form/experience due to the code in WorkOrderExperience.Library.js that's being called in the commonLoad function. I've included the block below. It's quite a bit different than the previous WorkOrder.Library.js.
const hideBPF = (formContext) => { if (typeof window !== /undefined/ && formContext.ui.process) { formContext.ui.process.setVisible(false); }