Simple Matching

In the simple matching process, specify only record attributes as matching criteria in the rulebase file.

For example, for a Customer repository, the matching attributes may be FirstName, MiddleName, and LastName. If any of these attributes’ values match an existing record up to the specified minimum matching threshold, the record can be a matching record candidate. The specified record attributes are searched in all repositories and the matching result displays the values of matching attributes for all repositories.

MatchAttributesArray

Match Attributes Array lists the record attributes to be used as matching criteria. For example,

   <constraint>
        <name>Attribute</name>
        <description>match attribute List</description>
         <action>
            <assign>
                <var>MatchAttributeArray</var>
                <const type="string">FIRSTNAME</const>
                <const type="string">MIDDLENAME</const>
                <const type="string">LASTNAME</const>
            </assign>
        </action>
   </constraint>