FNRCE0050E: E_OBJECT_MODIFIED The object object_id of class class_name was not changed or deleted because it was modified one or more times in the repository since the application retrieved it.
Explanation
The object was not changed or deleted because it was modified one or more times in the repository since the application retrieved it.
User response
Retrieve the object again to get its most recent modification, and then update the object.
Programmer response
This exception occurs because multiple callers are updating the object at nearly the same time. The callers can be multiple users of the same application, multiple applications, event action handlers running within the Content Engine server, or any combination of these. This exception is often a symptom of a race condition in application logic. Consider changing the application logic or architecture so that the exception does not occur, or catch the exception and transparently retry the operation.