Every Day, I need to integrate a large amounts (over 1.000.000) of data from txt files to Dynamics GP 2013.
At first, I did a development with VS 2010 and eConnect 2013, but integration process took a lot of time and sometimes not finish. then I'm using eConnect 2013 (v 12.0) direct on SQL Server database running stores procedures of eConnect and take about 3 minutes to integrate over 1.000.000 data transactions.
But, each node is a Store Procedure eConnect on SQL Server database less principal and group nodes,
<eConnect> It's not a SP
<PMTransactionType> It's not a SP
<taPMTransactionTaxInsert_Items> It's not a SP
<taPMTransactionTaxInsert /> It's a SP
</taPMTransactionTaxInsert_Items> It's not a SP
<taPMDistribution_Items> It's not a SP
<taPMDistribution /> It's a SP
</taPMDistribution_Items> It's not a SP
<taPMTransactionInsert /> It's a SP
</PMTransactionType> It's not a SP
</eConnect> It's not a SP
Integration should execute SPs in order to scheme XML document, but sample above that isn't happened because threw an exception and resolved it executing first taPMTransactionInsert SP then taPMDistribution SP, Does It not important taPMTransactionType node?, Does node not execute anything validation?, It is correct to execute eConnect SP in any order? how to guarantee data integrity?
I want to continue integrating on SQL Server database but ensuring integrity of data.
*This post is locked for comments