Quantcast
Channel: NAV Three Tier — mibuso.com
Viewing all articles
Browse latest Browse all 10032

Import SEPA Bank Statement file with multiple Stmt

$
0
0
Hi all,
I am currently facing an issue regarding the import of bank statements based on the SEPA format camt.053.
The customer in charge recieves multiple bank statements from its eBanking portal all combinded in just one xml file. Thus, the file received contains multiple Stmt elements.
The SEPA CAMT setup and configuration has been applied from the DE demo company CRONUS AG. Through the processing codeunits, there's a check routine within CU 1262 which throws an error if the statement file contains mutiple statements:
[b]CheckMultipleStatements(PostingExch : Record "Posting Exch.";StatementIdPathFilter : Text)[/b]
  IF HasPostExchFieldValue(PostExchFieldDetails,PostingExch."Entry No.",StatementIdPathFilter) THEN BEGIN
    StmtCount := 1;
    WHILE PostExchFieldDetails.READ DO
      StmtCount += 1;
  END;
  
  IF StmtCount > 1 THEN
    ERROR(MultipleStmtErr);

The import with files containing only one single Stmt element just works fine as expected.

Has anyone out there already experienced similar issues with importing multiple bank statements combined in one file ? I would be interested in how this had been resolved. For instance, could we force the bank to provide individual bank statement files - or do we have to adjust NAV's processing CUs ?

Many thanks in advance
Andrew T.

Viewing all articles
Browse latest Browse all 10032

Trending Articles