Error when updating an Entity

I’m trying to update the description on an entity value (Edit ‘moqui.basic.EnumerationAndType’ Entity Value) and I keep getting the following errors:

  • Error updating EnumerationAndType [enumId:ItemCouponCredit]
  • Update not yet implemented for view-entity

What can I do to resolve this error? Or is there another way to update the description?

1 Like

Why hello Tara,

What you’re trying to update is the view-entity, rather than the entity itself. The view-entity is essentially a join of tables / entities described in that definition.

You’re probably looking for the Enumeration Entity:
{hostname}/vapps/tools/Entity/DataEdit/EntityDataEdit?enumId=ItemCouponCredit&pageIndex=0&selectedEntity=moqui.basic.Enumeration
or
{hostname}/vapps/tools/AutoScreen/AutoEdit/AutoEditMaster?enumId=ItemCouponCredit&aen=moqui.basic.Enumeration

2 Likes

Thanks LT, that is exactly what I was looking for.