Hello community,
I’m working on Dynamics 365 Finance and Operations and customizing the InventOnHandItem form.
I need to make Item Group a filterable field in the filter pane (right side) of the InventOnHandItem form.
When a user selects an Item Group from the dropdown, the results in the grid should be filtered accordingly.
Here's what the form currently looks like (no Item Group filter yet):
What I've done so far:
1. I created a custom View that joins: InventSum→InventTable→InventItemGroupItem
2. I tried adding ItemGroupId as a computed column and also tried exposing it through the view.
3. Attempted to manually set relations like: MIH_ItemGroupView.ItemId == InventSum.ItemId and MIH_ItemGroupView.InventDimId == InventSum.InventDimId
However, The ItemGroupId field does not appear in the filter pane and even when added manually, it does not show dropdown values, or doesn’t filter the results properly.
I need a help with,
1. How can I properly add Item Group as a filterable field in the filter pane of the InventOnHandItem form?
2. What is the recommended approach — using a computed column, a custom view, or should I customize the form extension directly?
3. How to make the filter dropdown populate with item group values (from InventItemGroup table) and make filtering work?
Any suggestions, sample implementations, or best practices would be really appreciated!
Thanks in advance for your support.