Hi,
I was trying to create a Bank Transaction entry using eConnect in C#. But i was getting the following error.
Error Number = 7604 Stored Procedure= taBRBankTransactionHeader Error Description = Originating Debits and Credits do not match (ORDBTAMT <> ORCRDAMT in CM20400)
Below is my request XML:
<eConnect xmlns:dt="urn:schemas-microsoft-com:datatypes" xmlns="urn:schemas-microsoft-com:datatypes">
<BRBankTransactionType xmlns="">
<eConnectProcessInfo>
<eConnectProcsRunFirst>TRUE</eConnectProcsRunFirst>
</eConnectProcessInfo>
<taBRBankTransactionHeader>
<Option>1</Option>
<CMTrxType>3</CMTrxType>
<CHEKBKID>PETTY CASH</CHEKBKID>
<CMTrxNum>7733</CMTrxNum>
<TRXAMNT>666</TRXAMNT>
<UpdateIfExists>1</UpdateIfExists>
</taBRBankTransactionHeader>
<taBRBankTransactionDist>
<Option>1</Option>
<ACTNUMST>000-1130-00</ACTNUMST>
<DEBITAMT>0</DEBITAMT>
<CRDTAMNT>666</CRDTAMNT>
<UpdateIfExists>1</UpdateIfExists>
</taBRBankTransactionDist>
<taBRBankTransactionDist>
<Option>1</Option>
<ACTNUMST>000-1140-00</ACTNUMST>
<DEBITAMT>666</DEBITAMT>
<CRDTAMNT>0</CRDTAMNT>
<UpdateIfExists>1</UpdateIfExists>
</taBRBankTransactionDist>
</BRBankTransactionType>
</eConnect>
Please help me in resolving this issue.