Question

CAMT - wrong amount in transaction

  • 28 February 2022
  • 0 replies
  • 71 views

Badge +3

Oberbank CAMT file has consists Ntry part of XML for bank fee. Amount of this bank fee is presented in Ntry part, but in same part NtryDtls part is amount and reference to which transaction this fee belong to.

Problem is that IFS fetch to external payments amount of referenced transaction (customer payment) and not amount of fee. So result in external payment is that customer payment amount is twice, but no bank fee:

example:

    <Ntry>
                <Amt Ccy="EUR">.24</Amt>
               .

               .

               .  
                <NtryDtls>
                  .

                  .
                        <AmtDtls><TxAmt>
                                <Amt Ccy="EUR">500.00</Amt>
                            </TxAmt>
                        </AmtDtls>
                        <BkTxCd>
                            <Domn>
                                <Cd>ACMT</Cd>
                                <Fmly>
                                    <Cd>MDOP</Cd>
                                    <SubFmlyCd>FEES</SubFmlyCd>
                                </Fmly>
                            </Domn>
                            <Prtry>
                                <Cd>NTRF+808</Cd>
                                <Issr>ISO</Issr>
                            </Prtry>
                        </BkTxCd>
                    .     
                    .        
                </NtryDtls>
            </Ntry>

 

In application it is shown as amount 500, but it should be 0,24. Is it possible to setup it to fetch correct amount?


This topic has been closed for comments