Hi Everyone,
I have created one extension class of InventDim table and have written display method into it. CoC looks like below,
[ExtensionOf(tableStr(InventDim))]
final class SIInventDim_Extension
{
///
/// to get the color code related to invent color.
///
///
/// Color code from EcoResColor.
///
///
///
///
display CHI_ColorCode disCHI_EcoResColor_ColorCode()
{
return EcoResColor::findByName(this.InventColorId).CHI_ColorCode;
}
}
But whenever I attach the same in Field group of InventDim Table as shown below and as InventDim table has reference in BOMTable form as well.
I tried opening Bill of Materials page from dashboard I get below error,
"Menu item could not be opened. Object reference not set to an instance of an object."
However, attaching table method in field group works perfectly for other tables. Does InventDim table have some limitations in D365?
I wanted to display one customized field in Field group inventory dimesions. So that where ever this group has been called, my field will get reflected.

Thank you in advance.