This message was posted by a user wishing to remain anonymous
We have a nested Attribute which is having the survivorship strategy as aggregation. However we need to have in such a way that the attribute should be aggregated for data received from different crosswalks and if data is received from same crosswalk it should be updated.
For example if reltio nested attribute with aggregation has values as below
Attribute :
"Value1" -> from SRC1
"Value2" -->from SRC1
"Value3" --> from SRC3
Now from SRC1 during a new data load we received "Value1" and "Value4", now the record should have like below:
"Value1" -> from SRC1
"Value4" -->from SRC1
"Value3" --> from SRC3
But currently it is like below:
"Value1" -> from SRC1
"Value2" -->from SRC1
"Value4" --> from SRC1
"Value3" --> from SRC3
kindly,help with the suggestions to achieve the above scenario.
-------------------------------------------