Hi
We use MXI format to import data weekly. We are using a User-Defined Field to do duplicate record matching. Following is our xml file. As per MXI documentation following xml should use field "R1 ID" to perform matching.
i.e if there is already a record for R1 ID = TZ0XV, then it should just update that record, else add a new record.
My problem is every time I ran this file, it creates a new record even if a record for TZ0XV exists.
<?xml version="1.0"?>
<AllData xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ma="http://www.maximizer.com/maximizer/xmlimportexport/3.0" targetNamespace="http://www.maximizer.com/maximizer/xmlimportexport/3.0" elementFormDefault="qualified">
<ImportOptions>
<LogFile>c:\maximizer_data\log\data.log</LogFile>
<LogLevel>7</LogLevel>
<ClientOptions>
<MatchMode>Detail</MatchMode>
<MatchDetail>R1 ID</MatchDetail>
</ClientOptions>
</ImportOptions>
<DetailDef Name="R1 ID" Type="String" Companies="Yes" Length="15"/>
<Company>
<Id>23004728TZ0XV</Id>
<Name>TESTDATA</Name>
<DetailString Name="R1 ID">TZ0XV</DetailString>
</Company>
</AllData>
Original Post