The element type of 42 means it's a table field. You can figure out which table and field exactly by running the following SQL on your model store. select t.Name AS TableName, f.name AS FieldName from ModelElement f join ModelElement t ON t.ElementType = 44 AND t.ElementHandle = f.ParentHandle where f.ElementType = 42 and f.ElementHandle = 101120 However, the system should not try to re-use an element ID that's already being used. In any case, finding out the table and field may get you one step closer to a root cause. Hope this helps.
↧