Multidomain MDM
- Multidomain MDM 10.4 HotFix 2
- Tous les produits
Propriétés/éléments
| Type
| Description
|
---|---|---|
MATCH
| objet
| Si vous voulez ajouter ou supprimer des candidats de correspondance de la table de correspondance de l'enregistrement enfant, ajoutez l'objet MATCH à l'enregistrement enfant.
|
MERGE
| objet
| Si vous voulez fusionner des enregistrements enfants ou supprimer des candidats à la fusion, ajoutez l'objet MERGE à l'enregistrement enfant.
|
{ 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 ] } } ] } }