Language: Deutsch · English
4.8.2 Assignment logic – part of the MT940 Nuclet documentation (assignment logic matching bank transactions to reference objects).
HOW-TO INTEGRATORS UPDATED: JUL 2026 APPLIES TO NUCLOS 4.2026.X
On this page
Machine-translated – under review
This page was machine-translated from German as a first draft and is currently under review. The authoritative source remains the German original (see the language switch above).
The assignment of incoming bank transactions to reference objects (invoices, etc.) is realised in the method findMatchingReferences() of the abstract class org.nuclet.mt940.logic.AbstractMT940Logic. By default, the assignment is made on the basis of the reference object's designated reference number:
This logic is described by the expression boBankTransaction.getInformationToAccountOwner().indexOf(strReference) >= 0 (from the code segment, see below).
If this rule is to be modified (e.g. so that the check is to be less strict), this is the place to start. If possible, the change should not be made directly in the class AbstractMT940Logic. The source code location provided for this in the concrete implementation MT940Logic is marked accordingly with an @replace! tag.
It is recommended to make the changes in the concrete implementation MT940Logic or in your own class that inherits from the abstract class AbstractMT940Logic.