Announcements
Hello everyone,
My scenario :
I have 4 legal entities like MH01, MHQA, MHOM, MHBH.
I created one item named as ApntTest in MH01 legal entity.
I have one customized field category name (display method).
when releasing above item to other legal entities only for MH01 and MHQA showing that category name remaining two legal doesn't showing values.
I checked in sql Item is creating for all legal entities but category is created only in 2 legal enitties. consider below image.
Thank u for repsonding André Arnaud de Calavon
I fixed above issue, in parameters set up missing so it's not coming for few lwgal entities.
Hi Prasanth123,
The EcoRes tables are global, so it should be related to the InventParameters table. Have you checked if the value of the custom field ApntCategoryHierarchy has the correct value in all legal entities?
public display EcoResCategoryName apntGetProductCategoryName() { EcoResProductCategory ecoResProductCategory; EcoResCategory ecoResCategory; InventParameters inventParameter = InventParameters::find(); select firstonly ecoResCategory join ecoResProductCategory where ecoResProductCategory.Category == ecoResCategory.RecId && ecoResProductCategory.CategoryHierarchy == inventParameter.ApntCategoryHierarchy && ecoResProductCategory.Product == this.Product; return ecoResCategory.Name; }
above is the display method.
André Arnaud de Cal...
294,127
Super User 2025 Season 1
Martin Dráb
232,871
Most Valuable Professional
nmaenpaa
101,158
Moderator