Question
We are creating DCR's with alwaysCreateDCR and partialOverride for changes in attribute values but this is creating DCR with deletion of existing attributes and insertion of updated values instead of only updating the changed attribute values for nested attributes.
Example:
We're only changing addressLine1 from one of the addresses.
DCR created with below.
POST https://test-h360.reltio.com/reltio/api/<tenantId>/changeRequests/41IX0Qjk?showObjectsInfo=true
Can we not create DCR with partial update on nested attribute? Can we have a call scheduled to go through this to see for possible workaround or alternate options?
Answer
- The common idea of the
alwaysCreateDCR
functionality is to create a DCR with changes which after applying will lead to the same result as if the request would executed without this option. Therefore, you are sending a request that is not updating existing attribute value. If you execute a request without thealwaysCreateDCR
option, you will have an attribute value with a new URI. This is why our platform generates two changes: remove old attribute and insert a new one. - The mechanism of creating data change requests is provided to fix inability of partial override for Nested attributes using DCR and to create identical objects after operations of partial override and partial override + DCR. The enableNestedPartialOverride property would need to be set to true in the physical configuration.
Comments
Please sign in to leave a comment.