Making my first steps with Documentum, so please bear with me.
Using DFS .NET productivity layer, I'd like to rename a folder in the repository. What I do is basically:
- Create an identity using the current folder path
- Create a property filter, and have it include only the object_name property
- Create a PropertySet, and set the new name to object_name
- Run the IObjectService.Update()
As a result, the folder name is indeed changed. However, the Update never returns. Instead, it throws a FaultException (wrapped in a ServiceInvocationException) which says:
"Update" operation failed for object: [<new name>] [id =<old path>] PROPERTIES [object_name=<new name>].
where <new name> is the new object_name and <old path> is the original path.
What am I doing wrong here? How come the action succeeds but I still get an error? How can I further investigate this?
Thanks,
Eran