I am trying to update the Creator property in a FileNetP8 implementation. I tried to update it using the grant of "Modify Certain System Properties" however it seems that this grant does not apply to "Creator" and rather applies to other properties such as "LastModifiedBy" and so on.
I have also tried to alter the property template itself on my class through the "propertyTemplate" property to "Read-Write", however an error is being returned when I try to save it, stating that
"The operation violates a constraint of the implementation. Inherited Settability constraint on property Creator of class"
Any help is appreciated.
It seems like IBM Support has already been asked this question and they provided "Some How" and answer to this here:
https://www.ibm.com/support/pages/setting-selected-system-properties-ibm-filenet-p8-document-versions
IBM's take on this as they highlighted in the summary section of the shared link is that
To summarize the approach they followed:
Document, setting theCreatorproperty to the desired valueReservation Propertiesparameter set to the new Document properties object usingDocument.getProperties()Method.Set the content for the checked out document to a new file, in my case I used the code below to copy the content from the
Documentto theReservationobject.Creatoris now updatedI am not entirely convinced with the solution, however it is what IBM provided and it worked (except for adding an extra version) well for me