To implement this hotfix, you must have a developer license.
You do not have to have rights to the data stores unless you have to perform data repair.
...
RelatedPartyPrefix := 'descendant::RltdPties/' + RelatedPartyPrefix;
AccountNo := GetNodeValue(CurrentLine,RelatedPartyPrefix + 'Acct/Id/Othr/Id');
IBAN := GetNodeValue(CurrentLine,RelatedPartyPrefix + 'Acct/Id/IBAN');
Address := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/PstlAddr/AdrLine');
// just the first line
City := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/PstlAddr/TwnNm');
Name := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/Nm');
InsertAdditionalLineStructured(AccountNo,CBGStatementLineAddInfo."Information Type"::"Account No. Balancing Account");
...
...
RelatedPartyPrefix := 'descendant::RltdPties/' + RelatedPartyPrefix;
AccountNo := GetNodeValue(CurrentLine,RelatedPartyPrefix + 'Acct/Id/Othr/Id');
IBAN := GetNodeValue(CurrentLine,RelatedPartyPrefix + 'Acct/Id/IBAN');
Address := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/PstlAdr/AdrLine');
// just the first line
City := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/PstlAdr/TwnNm');
Name := GetNodeValue(CurrentLine,RelatedPartyPrefix + '/Nm');
InsertAdditionalLineStructured(AccountNo,CBGStatementLineAddInfo."Information Type"::"Account No. Balancing Account");
...