Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- 모든 제품
속성/요소
| 유형
| 설명
|
---|---|---|
MATCH
| 개체
| 하위 레코드에 대한 일치 테이블에서 일치 후보를 추가하거나 제거하려면 하위 레코드에 MATCH 개체를 추가합니다.
|
MERGE
| 개체
| 하위 레코드를 병합하거나, 병합에서 후보를 제거하려면 하위 레코드에 MERGE 개체를 추가합니다.
|
{ rowidObject: "123", firstName: "Bob", lastName: "Smith", $original: { firstName: "John" } }
{ rowidObject: "123", firstName: "Bob", lastName: "Smith", $original: { firstName: "John" } Address: { // remove A3 from the matches for A2 in the Address_MTCH table item: [ { rowidObject: "A2", MATCH: { item: [ // to remove matched child records for A2, specify null null ], $original: { item: [{key: {rowid: 'A3'}}] } } } ] } Telephone: { // override the matches for the telephone child records item:[ { rowid: "T1", MERGE: { item: [ // to remove merge candidates for T1, specify null null, null ], $original: { item: [ {rowid: "T2"}, {rowid: "T3"} ] } } }, { rowid: "T4", MERGE: { item: [ // to add or override matches, specify matched records {rowid: "T2"} ], $original: { item: [ null ] } } ] } }