Multidomain MDM
- Multidomain MDM 10.2
- 所有产品
属性/元素
| 类型
| 说明
|
---|---|---|
keys
| 数组
| 必需。希望添加到合并中的类似根记录的排序列表。可以通过行 ID 或通过源系统和源键的组合来标识记录。
|
overrides
| 对象
| 替代根记录中的字段值以及子记录的匹配项。
|
MERGE
| 对象
| 替代子记录合并的方式。在 overrides 对象内添加子记录类型,然后添加 MERGE 对象。
|
{ keys: [ { rowid: "P2" } ] }
{ keys: [ { rowid: "P2" } ] overrides: { Party: { rowidObject: "P1", firstName: "Serge", //override the value for the first name Telephone: { // override which Telephone child records to merge item:[ { rowidObject: "T1", MERGE: { item: [ // to remove the original merge candidates, specify null null, null ], $original: { item: [ {key:{rowid: "T2"}}, {key:{rowid: "T3"}} ] } } }, { rowidObject: "T4", MERGE: { item: [ // to add or change merge candidates, specify matched records {key:{rowid: "T2"}} ], $original: { item: [ null ] } } ] } } } }