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.
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