sepafm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +8 -0
  6. data/README.md +236 -0
  7. data/Rakefile +10 -0
  8. data/lib/danske_get_bank_certificate_test.rb +15 -0
  9. data/lib/sepa/application_request.rb +182 -0
  10. data/lib/sepa/application_response.rb +123 -0
  11. data/lib/sepa/client.rb +79 -0
  12. data/lib/sepa/danske_testing/keys/danske_encryption.crt +24 -0
  13. data/lib/sepa/filedescriptor.rb +7 -0
  14. data/lib/sepa/filetypeservice.rb +6 -0
  15. data/lib/sepa/nordea_testing/keys/CSR.csr +0 -0
  16. data/lib/sepa/nordea_testing/keys/nordea.crt +27 -0
  17. data/lib/sepa/nordea_testing/keys/nordea.key +19 -0
  18. data/lib/sepa/nordea_testing/response/content_053.xml +998 -0
  19. data/lib/sepa/nordea_testing/response/content_054.xml +1 -0
  20. data/lib/sepa/nordea_testing/response/download_file_response.xml +14 -0
  21. data/lib/sepa/nordea_testing/response/download_filelist_response.xml +14 -0
  22. data/lib/sepa/nordea_testing/response/get_user_info_response.xml +14 -0
  23. data/lib/sepa/nordea_testing/response/upload_file_response.xml +14 -0
  24. data/lib/sepa/response.rb +177 -0
  25. data/lib/sepa/sender_verifier.rb +15 -0
  26. data/lib/sepa/signature.rb +7 -0
  27. data/lib/sepa/soap_builder.rb +395 -0
  28. data/lib/sepa/soap_danske.rb +47 -0
  29. data/lib/sepa/soap_nordea.rb +68 -0
  30. data/lib/sepa/userfiletype.rb +16 -0
  31. data/lib/sepa/version.rb +3 -0
  32. data/lib/sepa/wsdl/wsdl_danske.xml +234 -0
  33. data/lib/sepa/wsdl/wsdl_danske_cert.xml +280 -0
  34. data/lib/sepa/wsdl/wsdl_nordea.xml +234 -0
  35. data/lib/sepa/wsdl/wsdl_nordea_cert.xml +187 -0
  36. data/lib/sepa/xml_parser.rb +291 -0
  37. data/lib/sepa/xml_schemas/application_request.xsd +135 -0
  38. data/lib/sepa/xml_schemas/application_response.xsd +311 -0
  39. data/lib/sepa/xml_schemas/cert_application_request.xsd +107 -0
  40. data/lib/sepa/xml_schemas/danske_pki.xsd +334 -0
  41. data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-secext-1.0.xsd +195 -0
  42. data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-utility-1.0.xsd +108 -0
  43. data/lib/sepa/xml_schemas/soap.xsd +126 -0
  44. data/lib/sepa/xml_schemas/wsdl.xml +310 -0
  45. data/lib/sepa/xml_schemas/xml.xsd +287 -0
  46. data/lib/sepa/xml_schemas/xmldsig-core-schema.xsd +318 -0
  47. data/lib/sepa/xml_templates/application_request/create_certificate.xml +10 -0
  48. data/lib/sepa/xml_templates/application_request/danske_get_bank_certificate.xml +10 -0
  49. data/lib/sepa/xml_templates/application_request/download_file.xml +32 -0
  50. data/lib/sepa/xml_templates/application_request/download_file_list.xml +29 -0
  51. data/lib/sepa/xml_templates/application_request/get_certificate.xml +10 -0
  52. data/lib/sepa/xml_templates/application_request/get_user_info.xml +26 -0
  53. data/lib/sepa/xml_templates/application_request/upload_file.xml +29 -0
  54. data/lib/sepa/xml_templates/soap/create_certificate.xml +15 -0
  55. data/lib/sepa/xml_templates/soap/danske_get_bank_certificate.xml +14 -0
  56. data/lib/sepa/xml_templates/soap/download_file.xml +16 -0
  57. data/lib/sepa/xml_templates/soap/download_file_list.xml +16 -0
  58. data/lib/sepa/xml_templates/soap/get_certificate.xml +13 -0
  59. data/lib/sepa/xml_templates/soap/get_user_info.xml +16 -0
  60. data/lib/sepa/xml_templates/soap/header.xml +37 -0
  61. data/lib/sepa/xml_templates/soap/upload_file.xml +16 -0
  62. data/lib/sepa.rb +21 -0
  63. data/lib/sepa_client_testing_mika.rb +32 -0
  64. data/lib/sepa_client_testing_tiere.rb +80 -0
  65. data/sepa.gemspec +29 -0
  66. data/test/sepa/application_request_test.rb +423 -0
  67. data/test/sepa/application_response_test.rb +238 -0
  68. data/test/sepa/cert_application_request_test.rb +99 -0
  69. data/test/sepa/client_test.rb +425 -0
  70. data/test/sepa/danske_test_keys/danskeroot.pem +25 -0
  71. data/test/sepa/danske_test_keys/encryption_pkcs.csr +0 -0
  72. data/test/sepa/danske_test_keys/signing_key.pem +27 -0
  73. data/test/sepa/danske_test_keys/signing_pkcs.csr +0 -0
  74. data/test/sepa/nordea_cert_request_soap_builder_test.rb +112 -0
  75. data/test/sepa/nordea_generic_soap_builder_test.rb +427 -0
  76. data/test/sepa/nordea_test_keys/nordea.crt +27 -0
  77. data/test/sepa/nordea_test_keys/nordea.key +19 -0
  78. data/test/sepa/nordea_test_keys/root_cert.cer +0 -0
  79. data/test/sepa/nordea_test_keys/testcert.csr +0 -0
  80. data/test/sepa/response_test.rb +269 -0
  81. data/test/sepa/sepa_test.rb +20 -0
  82. data/test/sepa/test_files/invalid.wsdl +1 -0
  83. data/test/sepa/test_files/test_responses/df.xml +20 -0
  84. data/test/sepa/test_files/test_responses/dfl.xml +20 -0
  85. data/test/sepa/test_files/test_responses/gui.xml +20 -0
  86. data/test/sepa/test_files/test_responses/uf.xml +20 -0
  87. data/test/sepa/user_file_type_test.rb +21 -0
  88. data/test/sepa/xml_parser_test.rb +73 -0
  89. data/test/test_helper.rb +9 -0
  90. metadata +256 -0
@@ -0,0 +1,998 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--Sample XML file generated by FFFS (www.fkl.fi) B2C project to demonstrate FInnish statement of account, 2010-11-01-->
3
+ <!--Attachment for Federation of Finnish Financial Services B2C Guideline for Finnish markets -description project -->
4
+ <Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.053.001.02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:camt.053.001.01
5
+ camt.053.001.02.xsd">
6
+ <BkToCstmrStmt>
7
+ <GrpHdr>
8
+ <MsgId>BANKFILEID00001</MsgId>
9
+ <CreDtTm>2010-10-30T03:30:47+02:00</CreDtTm>
10
+ <!-- No need for message pagination (at this stage)-->
11
+ </GrpHdr>
12
+ <Stmt>
13
+ <!-- This ID identifies the statement at the bank (for example MT940 :20:)-->
14
+ <Id>BANKSTMTID0972010</Id>
15
+ <!-- Numbering to have audit for empty statements (may differ from Legal Number). Since this element is optional statement is valid also without it. The Legal Sequence Number identifies the official statement number-->
16
+ <ElctrncSeqNb>120</ElctrncSeqNb>
17
+ <!-- Account Statement number (per Booking day, Periodical statements are inserted into same message but each day as own Stmt-instance -->
18
+ <!-- This number should be sequential and zero if this is an empty (without transactions, only the balances) statement because of audit trail -->
19
+ <!-- Note: Electronic Sequence Number starts from 1 in the beginning of camt-service (if bank is able to deliver it) and will increase without change to 1 in the each calendar year -->
20
+ <LglSeqNb>97</LglSeqNb>
21
+ <CreDtTm>2010-10-30T02:00:00+02:00</CreDtTm>
22
+ <FrToDt>
23
+ <!-- Recommendation: One booking date from start of day till end of day-->
24
+ <!-- Each Balance instance has its own date to be used in the ERP database processing-->
25
+ <!-- Because of each balance instance on the statement has their correpsonding date, this structure may be omitted -->
26
+ <FrDtTm>2010-10-29T02:00:00+02:00</FrDtTm>
27
+ <ToDtTm>2010-10-29T21:00:00+02:00</ToDtTm>
28
+ </FrToDt>
29
+ <!-- Optional to indicate possible reporduction of the statement, not used at all if a "normal" one delivered statement -->
30
+ <!-- COPY is used for parallel statement delivered for two different customer id for same statement, DUPL is used if statement is reporduced by the request of the customer
31
+ <CpyDplctInd>COPY</CpyDplctInd>
32
+ -->
33
+ <!-- Bank Account of which statement is reported -->
34
+ <Acct>
35
+ <Id>
36
+ <!-- always and only in IBAN format -->
37
+ <IBAN>FI7433010001222090</IBAN>
38
+ </Id>
39
+ <!-- optional info from the bank to identify account type, in this case Current account -->
40
+ <Tp>
41
+ <Cd>CACC</Cd>
42
+ </Tp>
43
+ <!-- "Main" Currency of the account. In case of multicurrency account there should be own Stmt -instances for each currency pocket statement per booking date -->
44
+ <Ccy>EUR</Ccy>
45
+ <!-- Account owner per bank's register -->
46
+ <Ownr>
47
+ <Nm>BANK ACCOUNT OWNER</Nm>
48
+ <PstlAdr>
49
+ <StrtNm>HELSINGINKATU</StrtNm>
50
+ <BldgNb>31</BldgNb>
51
+ <PstCd>00100</PstCd>
52
+ <TwnNm>HELSINKI</TwnNm>
53
+ <Ctry>FI</Ctry>
54
+ </PstlAdr>
55
+ <Id>
56
+ <OrgId>
57
+ <Othr>
58
+ <!-- Finnish Organisation Id (Y-tunnus) -->
59
+ <Id>12345678901</Id>
60
+ <SchmeNm>
61
+ <!-- Recipient's bank Id. In case of Finnish Y-tunnus use "CUST" -->
62
+ <Cd>BANK</Cd>
63
+ </SchmeNm>
64
+ </Othr>
65
+ </OrgId>
66
+ </Id>
67
+ </Ownr>
68
+ <!-- Reporting bank identified only by BIC but it is always available-->
69
+ <Svcr>
70
+ <FinInstnId>
71
+ <BIC>ESSEFIHX</BIC>
72
+ </FinInstnId>
73
+ </Svcr>
74
+ </Acct>
75
+ <RltdAcct>
76
+ <!-- Parent account of the current account and not used at all in case of single account reported within statement -->
77
+ <!-- TITO-structure of corporate group account statements is not repeated but Related Account info is enough to build up the structure at customer applications -->
78
+ <Id>
79
+ <IBAN>FI1533010001911270</IBAN>
80
+ </Id>
81
+ <Ccy>EUR</Ccy>
82
+ </RltdAcct>
83
+ <!-- Optional Interest terms and conditions reporting as statement level information for the reported bank account. Level of this reporting is up to reporting bank -->
84
+ <!-- Actual Interest bookings (credits or debits) are done as normal statement bookings -->
85
+ <Intrst>
86
+ <Tp>
87
+ <!-- "normal" daily interest with INDY (if OVRN is reported it will be given in separate Intrst -instance) -->
88
+ <Cd>INDY</Cd>
89
+ </Tp>
90
+ <Rate>
91
+ <Tp>
92
+ <Othr>Business agreement</Othr>
93
+ </Tp>
94
+ <VldtyRg>
95
+ <Amt>
96
+ <FrToAmt>
97
+ <FrAmt>
98
+ <BdryAmt>0.00</BdryAmt>
99
+ <Incl>true</Incl>
100
+ </FrAmt>
101
+ <ToAmt>
102
+ <BdryAmt>1000000.00</BdryAmt>
103
+ <Incl>true</Incl>
104
+ </ToAmt>
105
+ </FrToAmt>
106
+ </Amt>
107
+ <CdtDbtInd>CRDT</CdtDbtInd>
108
+ <Ccy>EUR</Ccy>
109
+ </VldtyRg>
110
+ </Rate>
111
+ </Intrst>
112
+ <!-- Balances for the statement booking date reported -->
113
+ <!-- Minimum is to report OPBD and CLBD and in case of reporting the possible account limit value also the CLAV value inclduing the limit value (CLBD + limit = CLAV) -->
114
+ <!-- All other balances reported are based on bank implementation and are used for informative purposes -->
115
+ <!-- in case of later camt.052 B2C Account report for intra-day reports the ITAV and ITBD are used (not at all on camt.053 statement) -->
116
+ <Bal>
117
+ <Tp>
118
+ <CdOrPrtry>
119
+ <Cd>OPBD</Cd>
120
+ </CdOrPrtry>
121
+ </Tp>
122
+ <!-- Limit value (not included into the balance)-->
123
+ <CdtLine>
124
+ <Incl>false</Incl>
125
+ <Amt Ccy="EUR">10000.00</Amt>
126
+ </CdtLine>
127
+ <Amt Ccy="EUR">10000.00</Amt>
128
+ <CdtDbtInd>CRDT</CdtDbtInd>
129
+ <!-- OPBD reports the same date as the CLBD (in a daily statement) -->
130
+ <Dt>
131
+ <Dt>2010-10-29</Dt>
132
+ </Dt>
133
+ </Bal>
134
+ <!-- PRCD balance might also be used as complement for OPBD since it is recommended by SWIFT MT940-conversion guideline -->
135
+ <Bal>
136
+ <Tp>
137
+ <CdOrPrtry>
138
+ <Cd>PRCD</Cd>
139
+ </CdOrPrtry>
140
+ </Tp>
141
+ <CdtLine>
142
+ <Incl>false</Incl>
143
+ <Amt Ccy="EUR">10000.00</Amt>
144
+ </CdtLine>
145
+ <Amt Ccy="EUR">10000.00</Amt>
146
+ <CdtDbtInd>CRDT</CdtDbtInd>
147
+ <!-- Since PRCD must equal with previous camt.053 CLBD also the dates reported should equal: PRCD reports same date as the previous statements CLBD date -->
148
+ <Dt>
149
+ <Dt>2010-10-28</Dt>
150
+ </Dt>
151
+ </Bal>
152
+ <Bal>
153
+ <!-- Booked closing balanceOpening balance on the next banking date -->
154
+ <Tp>
155
+ <CdOrPrtry>
156
+ <Cd>CLBD</Cd>
157
+ </CdOrPrtry>
158
+ </Tp>
159
+ <!-- Limit value (not included into the balance)-->
160
+ <CdtLine>
161
+ <Incl>false</Incl>
162
+ <Amt Ccy="EUR">10000.00</Amt>
163
+ </CdtLine>
164
+ <Amt Ccy="EUR">23644.83</Amt>
165
+ <CdtDbtInd>CRDT</CdtDbtInd>
166
+ <!-- equals -->
167
+ <Dt>
168
+ <Dt>2010-10-29</Dt>
169
+ </Dt>
170
+ </Bal>
171
+ <Bal>
172
+ <!-- CLAV in Finnish TITO-meaning is to used to report CLBD + Credit Line and in this sense CLAV may be omitted because of OPBD and CLBD embedded credit line. -->
173
+ <!-- When used to report meaning like MT940 64-tag info the CLAV is used to report funds available at the reported date based on the value date based bookings-->
174
+ <Tp>
175
+ <CdOrPrtry>
176
+ <Cd>CLAV</Cd>
177
+ </CdOrPrtry>
178
+ </Tp>
179
+ <Amt Ccy="EUR">33644.83</Amt>
180
+ <CdtDbtInd>CRDT</CdtDbtInd>
181
+ <Dt>
182
+ <Dt>2010-10-29</Dt>
183
+ </Dt>
184
+ </Bal>
185
+ <!-- additional optional summary information of the transactions. To match current TITO at the minimun the statement (booking date) deposits and withdrawals should be reported-->
186
+ <TxsSummry>
187
+ <!-- total number of statement entries for reconciliation -->
188
+ <TtlNtries>
189
+ <NbOfNtries>10</NbOfNtries>
190
+ </TtlNtries>
191
+ <!-- Deposits)-->
192
+ <TtlCdtNtries>
193
+ <NbOfNtries>6</NbOfNtries>
194
+ <Sum>23075.00</Sum>
195
+ </TtlCdtNtries>
196
+ <!-- withdrawls)-->
197
+ <TtlDbtNtries>
198
+ <NbOfNtries>4</NbOfNtries>
199
+ <Sum>9430.17</Sum>
200
+ </TtlDbtNtries>
201
+ <!-- reporting transaction code based summaries if service is considered useful-->
202
+ <!--
203
+ <TtlNtriesPerBkTxCd>
204
+ </TtlNtriesPerBkTxCd>
205
+ -->
206
+ </TxsSummry>
207
+ <!-- Here is the begiining of the transactions for the booking date 29.5.2010-->
208
+ <Ntry>
209
+ <!-- Transaction 1 as an sample of SALA batch with elements filled both for PMJ-salaries as well as SCT SALA-->
210
+ <!-- sequence number of other statement / entry unique reference -->
211
+ <NtryRef>1</NtryRef>
212
+ <!-- Here only as collection, since in salaries the payment level details are not reported -->
213
+ <Amt Ccy="EUR">1000.12</Amt>
214
+ <CdtDbtInd>DBIT</CdtDbtInd>
215
+ <Sts>BOOK</Sts>
216
+ <BookgDt>
217
+ <Dt>2010-10-29</Dt>
218
+ </BookgDt>
219
+ <ValDt>
220
+ <Dt>2010-10-29</Dt>
221
+ </ValDt>
222
+ <!-- In case of separate Salary debit report (camt.054) is generated the banks' reference has to be in it as one matching term-->
223
+ <AcctSvcrRef>091029ACCTSTMTARCH01</AcctSvcrRef>
224
+ <BkTxCd>
225
+ <!-- In case of PMJ salaries as in the sample. In case of SCT SALA PMNT/ICDT/ESCT + PurposeCode SALA) -->
226
+ <Domn>
227
+ <Cd>PMNT</Cd>
228
+ <Fmly>
229
+ <Cd>ICDT</Cd>
230
+ <SubFmlyCd>SALA</SubFmlyCd>
231
+ </Fmly>
232
+ </Domn>
233
+ <!-- Prtry used only in case of PMJ-salaries -->
234
+ <Prtry>
235
+ <Cd>701TransactionCodeText</Cd>
236
+ <Issr>FFFS</Issr>
237
+ </Prtry>
238
+ </BkTxCd>
239
+ <NtryDtls>
240
+ <Btch>
241
+ <!-- customer made batch and message-references (not in old TS but yes in SALA SCT in case that pain.001 is used and direct corresponding matching can be found). Purpose: Reconciiation-->
242
+ <!-- Basic recommendation: as much as possible of the original payment instruction material that came from the customer into the bank-->
243
+ <MsgId>MSGSALA0001</MsgId>
244
+ <!-- in LM-batches this is an info given in the batch record and supported by most of the banks as the initiator batch level identification-->
245
+ <PmtInfId>CustRefForSalaBatch</PmtInfId>
246
+ <!-- customer made batch's transaction total by the initiated material. Purpose: Reconciiation-->
247
+ <NbOfTxs>4</NbOfTxs>
248
+ </Btch>
249
+ <TxDtls>
250
+ <!-- Applying to CGI-rules and for consistencty purposes indicating always required TxDtls/AmtDtsl/TxAmt as a copy of Ntry/Amt -->
251
+ <AmtDtls>
252
+ <TxAmt>
253
+ <Amt Ccy="EUR">1000.12</Amt>
254
+ </TxAmt>
255
+ </AmtDtls>
256
+ <!-- used to specify what subtype (purpose code) of SCT SALA (category purpose and notice that tx code in this case is PMNT/ICDT/ESCT) debtor has used. Not so critical on debtor stmts but on creditor it is -->
257
+ <Purp>
258
+ <Cd>SALA</Cd>
259
+ </Purp>
260
+ </TxDtls>
261
+ </NtryDtls>
262
+ </Ntry>
263
+ <Ntry>
264
+ <!-- Transaction 2 / case of lump sum debit booking for a normal vendor payment batck (locl PMJ or SCT)-->
265
+ <NtryRef>2</NtryRef>
266
+ <!-- SCT lump sum booking logic is up to payment processing bank-->
267
+ <Amt Ccy="EUR">4000.00</Amt>
268
+ <CdtDbtInd>DBIT</CdtDbtInd>
269
+ <Sts>BOOK</Sts>
270
+ <BookgDt>
271
+ <Dt>2010-10-29</Dt>
272
+ </BookgDt>
273
+ <ValDt>
274
+ <Dt>2010-10-29</Dt>
275
+ </ValDt>
276
+ <!-- In case of separate payment debit report (camt.054) is generated the banks' reference has to be in it as one matching term-->
277
+ <AcctSvcrRef>091029ACCTSTMTARCH02</AcctSvcrRef>
278
+ <!-- In case of PMJ payments as in the sample. In case of SCT PMNT/ICDT/ESCT with no purpose code) -->
279
+ <BkTxCd>
280
+ <Domn>
281
+ <Cd>PMNT</Cd>
282
+ <Fmly>
283
+ <Cd>ICDT</Cd>
284
+ <SubFmlyCd>DMCT</SubFmlyCd>
285
+ </Fmly>
286
+ </Domn>
287
+ <!-- Prtry used only in case of PMJ Payments-->
288
+ <Prtry>
289
+ <Cd>702TransactionCodeText</Cd>
290
+ <Issr>FFFS</Issr>
291
+ </Prtry>
292
+ </BkTxCd>
293
+ <NtryDtls>
294
+ <Btch>
295
+ <!-- customer made batch and message-references (not in old LM but yes in SCT in case that pain.001 is used and direct corresponding matching can be found). Purpose: Reconciiation-->
296
+ <!-- Basic recommendation: as many original payment instruction ids that came from the customer into the bank should be reported -> and let the customer application to choose the ones for its reconciliation-->
297
+ <MsgId>MSGSCT0099</MsgId>
298
+ <PmtInfId>CustRefForPmtBatch</PmtInfId>
299
+ <!-- customer made batch's transaction total. Purpose: Reconciiation-->
300
+ <NbOfTxs>3</NbOfTxs>
301
+ </Btch>
302
+ <TxDtls>
303
+ <!-- Applying to CGI-rules and for consistencty purposes indicating always required TxDtls/AmtDtsl/TxAmt as a copy of Ntry/Amt -->
304
+ <AmtDtls>
305
+ <TxAmt>
306
+ <Amt Ccy="EUR">4000.00</Amt>
307
+ </TxAmt>
308
+ </AmtDtls>
309
+ </TxDtls>
310
+ </NtryDtls>
311
+ </Ntry>
312
+ <Ntry>
313
+ <!-- Transaction 3 / alternative reporting for the transaction 2 when customer wants to have all in statment and not separate camt.054 advice -->
314
+ <NtryRef>3</NtryRef>
315
+ <Amt Ccy="EUR">4230.05</Amt>
316
+ <CdtDbtInd>DBIT</CdtDbtInd>
317
+ <Sts>BOOK</Sts>
318
+ <BookgDt>
319
+ <!--Booking date for all sub transactions in this entry -->
320
+ <Dt>2010-10-29</Dt>
321
+ </BookgDt>
322
+ <ValDt>
323
+ <!--Value date for all sub transactions in this entry -->
324
+ <Dt>2010-10-29</Dt>
325
+ </ValDt>
326
+ <AcctSvcrRef>091029ACCTSTMTARCH03</AcctSvcrRef>
327
+ <BkTxCd>
328
+ <Domn>
329
+ <Cd>PMNT</Cd>
330
+ <Fmly>
331
+ <Cd>ICDT</Cd>
332
+ <SubFmlyCd>DMCT</SubFmlyCd>
333
+ </Fmly>
334
+ </Domn>
335
+ <!-- Prtry used only in case of PMJ Payments-->
336
+ <Prtry>
337
+ <Cd>702TransactionCodeText</Cd>
338
+ <Issr>FFFS</Issr>
339
+ </Prtry>
340
+ </BkTxCd>
341
+ <NtryDtls>
342
+ <Btch>
343
+ <MsgId>MSGSCT0100</MsgId>
344
+ <PmtInfId>CustRefForPmtBatch9</PmtInfId>
345
+ <NbOfTxs>3</NbOfTxs>
346
+ </Btch>
347
+ <!-- Debit transaction details level depend on the source given by the originator in its payment material in different formats -->
348
+ <!-- Sufficient amount of references should be reported for reconciliation-->
349
+ <TxDtls>
350
+ <!-- Sub transaction no 1 of the batch / with reference -->
351
+ <Refs>
352
+ <!-- The contents of Refs used depends on clearing system and / or availablle data on the instruction material -->
353
+ <AcctSvcrRef>091029ARCH03001</AcctSvcrRef>
354
+ <!-- Instruction Id to Indicate TITO_T11_06 id given from the initiator in specific LM-payment file field -->
355
+ <InstrId>TITOT1106ID01</InstrId>
356
+ </Refs>
357
+ <AmtDtls>
358
+ <TxAmt>
359
+ <Amt Ccy="EUR">2000.02</Amt>
360
+ </TxAmt>
361
+ </AmtDtls>
362
+ <RltdPties>
363
+ <Cdtr>
364
+ <Nm>Creditor Company</Nm>
365
+ <!-- unstructured address on LM based material -->
366
+ <PstlAdr>
367
+ <Ctry>FI</Ctry>
368
+ <AdrLine>Mannerheimintie 123</AdrLine>
369
+ <AdrLine>00100 Helsinki</AdrLine>
370
+ </PstlAdr>
371
+ <CtryOfRes>FI</CtryOfRes>
372
+ </Cdtr>
373
+ <!-- Creditor account in BBAN still in PMJ-transactions, banks don't convert internally into the reports creditor account on debtor reports -->
374
+ <CdtrAcct>
375
+ <Id>
376
+ <Othr>
377
+ <Id>29501800020582</Id>
378
+ <SchmeNm>
379
+ <Cd>BBAN</Cd>
380
+ </SchmeNm>
381
+ </Othr>
382
+ </Id>
383
+ </CdtrAcct>
384
+ </RltdPties>
385
+ <RmtInf>
386
+ <Strd>
387
+ <CdtrRefInf>
388
+ <Tp>
389
+ <CdOrPrtry>
390
+ <Cd>SCOR</Cd>
391
+ </CdOrPrtry>
392
+ </Tp>
393
+ <Ref>3900</Ref>
394
+ </CdtrRefInf>
395
+ </Strd>
396
+ </RmtInf>
397
+ </TxDtls>
398
+ <TxDtls>
399
+ <!-- Sub transaction no 2 of the batch / with free text -->
400
+ <Refs>
401
+ <AcctSvcrRef>091029ARCH03002</AcctSvcrRef>
402
+ <InstrId>TITOT1106ID02</InstrId>
403
+ </Refs>
404
+ <AmtDtls>
405
+ <TxAmt>
406
+ <Amt Ccy="EUR">1000.01</Amt>
407
+ </TxAmt>
408
+ </AmtDtls>
409
+ <RltdPties>
410
+ <Cdtr>
411
+ <Nm>Creditor Company</Nm>
412
+ <PstlAdr>
413
+ <Ctry>FI</Ctry>
414
+ <AdrLine>Mannerheimintie 123</AdrLine>
415
+ <AdrLine>00100 Helsinki</AdrLine>
416
+ </PstlAdr>
417
+ <CtryOfRes>FI</CtryOfRes>
418
+ </Cdtr>
419
+ <CdtrAcct>
420
+ <Id>
421
+ <Othr>
422
+ <Id>29501800020582</Id>
423
+ <SchmeNm>
424
+ <Cd>BBAN</Cd>
425
+ </SchmeNm>
426
+ </Othr>
427
+ </Id>
428
+ <!-- Creditor Account Changed at Debtor bank for better routing according to Debtor and its bank agreement-->
429
+ <Tp>
430
+ <Prtry>ACWC</Prtry>
431
+ </Tp>
432
+ </CdtrAcct>
433
+ </RltdPties>
434
+ <RmtInf>
435
+ <Ustrd>Invoices 123 and 321</Ustrd>
436
+ </RmtInf>
437
+ </TxDtls>
438
+ <TxDtls>
439
+ <!-- Sub transaction no 3 of the batch / with PMJ payment type code 2 (TITO T11-02) -->
440
+ <!-- One simple option is to write this type of remittance type into one Unstrcured instance-->
441
+ <Refs>
442
+ <AcctSvcrRef>091029ARCH03003</AcctSvcrRef>
443
+ <InstrId>TITOT1106ID03</InstrId>
444
+ </Refs>
445
+ <AmtDtls>
446
+ <TxAmt>
447
+ <Amt Ccy="EUR">1230.02</Amt>
448
+ </TxAmt>
449
+ </AmtDtls>
450
+ <RltdPties>
451
+ <Cdtr>
452
+ <Nm>Creditor Company</Nm>
453
+ <PstlAdr>
454
+ <Ctry>FI</Ctry>
455
+ <AdrLine>Mannerheimintie 123</AdrLine>
456
+ <AdrLine>00100 Helsinki</AdrLine>
457
+ </PstlAdr>
458
+ <CtryOfRes>FI</CtryOfRes>
459
+ </Cdtr>
460
+ <CdtrAcct>
461
+ <Id>
462
+ <Othr>
463
+ <Id>29501800020574</Id>
464
+ <SchmeNm>
465
+ <Cd>BBAN</Cd>
466
+ </SchmeNm>
467
+ </Othr>
468
+ </Id>
469
+ </CdtrAcct>
470
+ </RltdPties>
471
+ <RmtInf>
472
+ <Strd>
473
+ <RfrdDocInf>
474
+ <Tp>
475
+ <CdOrPrtry>
476
+ <Cd>CINV</Cd>
477
+ </CdOrPrtry>
478
+ </Tp>
479
+ <Nb>217827182718</Nb>
480
+ </RfrdDocInf>
481
+ <Invcee>
482
+ <Id>
483
+ <OrgId>
484
+ <Othr>
485
+ <Id>9102910</Id>
486
+ </Othr>
487
+ </OrgId>
488
+ </Id>
489
+ </Invcee>
490
+ </Strd>
491
+ </RmtInf>
492
+ </TxDtls>
493
+ </NtryDtls>
494
+ </Ntry>
495
+ <!-- Some Credit entry samples -->
496
+ <Ntry>
497
+ <!-- Transaction 4a / refers to sample camt.054 report in FI_camt.054_sample.xml and its first Entry-->
498
+ <NtryRef>4</NtryRef>
499
+ <Amt Ccy="EUR">2000.00</Amt>
500
+ <CdtDbtInd>CRDT</CdtDbtInd>
501
+ <Sts>BOOK</Sts>
502
+ <BookgDt>
503
+ <Dt>2010-10-29</Dt>
504
+ </BookgDt>
505
+ <ValDt>
506
+ <Dt>2010-10-29</Dt>
507
+ </ValDt>
508
+ <!-- Archiving code that matches account statement entry (don't care about the date)-->
509
+ <AcctSvcrRef>091029ACCTSTMTARCH04</AcctSvcrRef>
510
+ <BkTxCd>
511
+ <Domn>
512
+ <Cd>PMNT</Cd>
513
+ <Fmly>
514
+ <Cd>RCDT</Cd>
515
+ <SubFmlyCd>DMCT</SubFmlyCd>
516
+ </Fmly>
517
+ </Domn>
518
+ <Prtry>
519
+ <Cd>705TransactionCodeText</Cd>
520
+ <Issr>FFFS</Issr>
521
+ </Prtry>
522
+ </BkTxCd>
523
+ <NtryDtls>
524
+ <Btch>
525
+ <MsgId>BANKFILEID998765</MsgId>
526
+ <!-- customer made batch's transaction total. Purpose: Reconciiation-->
527
+ <NbOfTxs>2</NbOfTxs>
528
+ </Btch>
529
+ <TxDtls>
530
+ <AmtDtls>
531
+ <TxAmt>
532
+ <Amt Ccy="EUR">2000.00</Amt>
533
+ </TxAmt>
534
+ </AmtDtls>
535
+ </TxDtls>
536
+ </NtryDtls>
537
+ </Ntry>
538
+ <Ntry>
539
+ <!-- Transaction 4b / refers to sample camt.054 report in FI_camt.054_sample.xml and its second Entry-->
540
+ <NtryRef>5</NtryRef>
541
+ <Amt Ccy="EUR">500.00</Amt>
542
+ <CdtDbtInd>CRDT</CdtDbtInd>
543
+ <Sts>BOOK</Sts>
544
+ <BookgDt>
545
+ <Dt>2010-10-29</Dt>
546
+ </BookgDt>
547
+ <ValDt>
548
+ <Dt>2010-10-29</Dt>
549
+ </ValDt>
550
+ <!-- Archiving code that matches account statement entry (don't care about the date)-->
551
+ <AcctSvcrRef>091029ACCTSTMTARCH21</AcctSvcrRef>
552
+ <BkTxCd>
553
+ <Domn>
554
+ <Cd>PMNT</Cd>
555
+ <Fmly>
556
+ <Cd>IDDT</Cd>
557
+ <SubFmlyCd>PMDD</SubFmlyCd>
558
+ </Fmly>
559
+ </Domn>
560
+ <Prtry>
561
+ <Cd>705TransactionCodeText</Cd>
562
+ <Issr>FFFS</Issr>
563
+ </Prtry>
564
+ </BkTxCd>
565
+ <NtryDtls>
566
+ <Btch>
567
+ <MsgId>BANKFILEID998799</MsgId>
568
+ <!-- customer made batch's transaction total. Purpose: Reconciiation-->
569
+ <NbOfTxs>2</NbOfTxs>
570
+ </Btch>
571
+ <TxDtls>
572
+ <AmtDtls>
573
+ <TxAmt>
574
+ <Amt Ccy="EUR">500.00</Amt>
575
+ </TxAmt>
576
+ </AmtDtls>
577
+ </TxDtls>
578
+ </NtryDtls>
579
+ </Ntry>
580
+ <Ntry>
581
+ <!-- Transaction 5 / refers to sample camt.054 report in FI_camt.054_sample.xml and its third Entry-->
582
+ <Amt Ccy="EUR">3000.00</Amt>
583
+ <CdtDbtInd>CRDT</CdtDbtInd>
584
+ <Sts>BOOK</Sts>
585
+ <BookgDt>
586
+ <Dt>2010-10-29</Dt>
587
+ </BookgDt>
588
+ <ValDt>
589
+ <Dt>2010-10-29</Dt>
590
+ </ValDt>
591
+ <AcctSvcrRef>091029ACCTSTMTARCH05</AcctSvcrRef>
592
+ <BkTxCd>
593
+ <Domn>
594
+ <Cd>PMNT</Cd>
595
+ <Fmly>
596
+ <Cd>RCDT</Cd>
597
+ <SubFmlyCd>ESCT</SubFmlyCd>
598
+ </Fmly>
599
+ </Domn>
600
+ <Prtry>
601
+ <Cd>700TransactionCodeText</Cd>
602
+ <Issr>FFFS</Issr>
603
+ </Prtry>
604
+ </BkTxCd>
605
+ <NtryDtls>
606
+ <Btch>
607
+ <MsgId>BANKFILEID998765</MsgId>
608
+ <!-- customer made batch's transaction total. Purpose: Reconciiation-->
609
+ <NbOfTxs>2</NbOfTxs>
610
+ </Btch>
611
+ <TxDtls>
612
+ <AmtDtls>
613
+ <TxAmt>
614
+ <Amt Ccy="EUR">3000.00</Amt>
615
+ </TxAmt>
616
+ </AmtDtls>
617
+ </TxDtls>
618
+ </NtryDtls>
619
+ </Ntry>
620
+ <!-- Transaction 6 is an incoming international payment -->
621
+ <Ntry>
622
+ <NtryRef>6</NtryRef>
623
+ <Amt Ccy="EUR">2120.00</Amt>
624
+ <CdtDbtInd>CRDT</CdtDbtInd>
625
+ <Sts>BOOK</Sts>
626
+ <BookgDt>
627
+ <Dt>2010-10-29</Dt>
628
+ </BookgDt>
629
+ <!-- May differ from booking date on non-PSD (or one-leg) transactions -->
630
+ <ValDt>
631
+ <Dt>2010-10-30</Dt>
632
+ </ValDt>
633
+ <AcctSvcrRef>091029ACCTSTMTARCH06</AcctSvcrRef>
634
+ <BkTxCd>
635
+ <Domn>
636
+ <Cd>PMNT</Cd>
637
+ <Fmly>
638
+ <Cd>RCDT</Cd>
639
+ <SubFmlyCd>XBCT</SubFmlyCd>
640
+ </Fmly>
641
+ </Domn>
642
+ <Prtry>
643
+ <Cd>770TransactionCodeText</Cd>
644
+ <Issr>FFFS</Issr>
645
+ </Prtry>
646
+ </BkTxCd>
647
+ <NtryDtls>
648
+ <TxDtls>
649
+ <Refs>
650
+ <!-- Reference used by the Debtor banks-->
651
+ <InstrId>ISSRBKREF12345678</InstrId>
652
+ <TxId>ISSRBKREF12345678</TxId>
653
+ </Refs>
654
+ <!-- specification of counter values (TITO T11_05) -->
655
+ <AmtDtls>
656
+ <!-- Amount as original instruction, Gross value of the incoming transaction before deductions-->
657
+ <InstdAmt>
658
+ <Amt Ccy="USD">3230.00</Amt>
659
+ </InstdAmt>
660
+ <!-- Booked Amount after deductions -->
661
+ <TxAmt>
662
+ <Amt Ccy="EUR">2120.00</Amt>
663
+ <CcyXchg>
664
+ <SrcCcy>USD</SrcCcy>
665
+ <TrgtCcy>EUR</TrgtCcy>
666
+ <!-- denomintor currency in the Exchange rate factor: Exchange rate = Unit Curerency / Quoted Currency -->
667
+ <UnitCcy>EUR</UnitCcy>
668
+ <XchgRate>1.5</XchgRate>
669
+ <CtrctId>FX12345</CtrctId>
670
+ <QtnDt>2010-10-29T10:00:00+02:00</QtnDt>
671
+ </CcyXchg>
672
+ </TxAmt>
673
+ <!-- Amount as CounterValue, Gross value of the incoming transaction before deductions-->
674
+ <CntrValAmt>
675
+ <Amt Ccy="EUR">2140.00</Amt>
676
+ <CcyXchg>
677
+ <SrcCcy>USD</SrcCcy>
678
+ <TrgtCcy>EUR</TrgtCcy>
679
+ <UnitCcy>EUR</UnitCcy>
680
+ <XchgRate>1.5</XchgRate>
681
+ <CtrctId>FX12345</CtrctId>
682
+ <QtnDt>2010-10-29T10:00:00+02:00</QtnDt>
683
+ </CcyXchg>
684
+ </CntrValAmt>
685
+ </AmtDtls>
686
+ <!-- in case of netted booking, debited charges are given like this. Note! Charges can be given without amount deduction also as an information!-->
687
+ <Chrgs>
688
+ <Amt Ccy="EUR">20.00</Amt>
689
+ <Tp>
690
+ <Cd>COMM</Cd>
691
+ </Tp>
692
+ </Chrgs>
693
+ <RltdPties>
694
+ <Dbtr>
695
+ <Nm>DEBTOR NAME</Nm>
696
+ <!-- Usually OrgId is not available in inernational money transfers -->
697
+ <Id>
698
+ <OrgId>
699
+ <Othr>
700
+ <Id>123456789</Id>
701
+ <SchmeNm>
702
+ <Cd>DUNS</Cd>
703
+ </SchmeNm>
704
+ </Othr>
705
+ </OrgId>
706
+ </Id>
707
+ </Dbtr>
708
+ </RltdPties>
709
+ <RltdAgts>
710
+ <DbtrAgt>
711
+ <FinInstnId>
712
+ <BIC>BOFAUS6H</BIC>
713
+ </FinInstnId>
714
+ </DbtrAgt>
715
+ </RltdAgts>
716
+ <RmtInf>
717
+ <Ustrd>INVOICE US20291092</Ustrd>
718
+ </RmtInf>
719
+ </TxDtls>
720
+ </NtryDtls>
721
+ </Ntry>
722
+ <!-- Transaction 7 as a sample of priority payment reporting-->
723
+ <Ntry>
724
+ <!-- Transaction 7-->
725
+ <NtryRef>7</NtryRef>
726
+ <Amt Ccy="EUR">5455.00</Amt>
727
+ <CdtDbtInd>CRDT</CdtDbtInd>
728
+ <Sts>BOOK</Sts>
729
+ <BookgDt>
730
+ <Dt>2010-10-29</Dt>
731
+ </BookgDt>
732
+ <ValDt>
733
+ <Dt>2010-10-29</Dt>
734
+ </ValDt>
735
+ <AcctSvcrRef>091029ACCTSTMTARCH07</AcctSvcrRef>
736
+ <BkTxCd>
737
+ <Domn>
738
+ <Cd>PMNT</Cd>
739
+ <Fmly>
740
+ <Cd>RCDT</Cd>
741
+ <!-- Priority Credit Transfer-->
742
+ <SubFmlyCd>PRCT</SubFmlyCd>
743
+ </Fmly>
744
+ </Domn>
745
+ <Prtry>
746
+ <Cd>700TransactionCodeText</Cd>
747
+ <Issr>FFFS</Issr>
748
+ </Prtry>
749
+ </BkTxCd>
750
+ <NtryDtls>
751
+ <TxDtls>
752
+ <Refs>
753
+ <!-- Reference used by the Debtor banks -->
754
+ <InstrId>BKREFDBT0101010</InstrId>
755
+ <TxId>BKREFDBT0101010</TxId>
756
+ </Refs>
757
+ <AmtDtls>
758
+ <!-- Amount as original -->
759
+ <InstdAmt>
760
+ <Amt Ccy="EUR">5500.00</Amt>
761
+ </InstdAmt>
762
+ <TxAmt>
763
+ <Amt Ccy="EUR">5455.00</Amt>
764
+ </TxAmt>
765
+ </AmtDtls>
766
+ <Chrgs>
767
+ <Amt Ccy="EUR">45.00</Amt>
768
+ <Tp>
769
+ <Cd>COMM</Cd>
770
+ </Tp>
771
+ </Chrgs>
772
+ <RltdPties>
773
+ <Dbtr>
774
+ <Nm>PAYERS NAME2</Nm>
775
+ <PstlAdr>
776
+ <StrtNm>GOVERN STREET</StrtNm>
777
+ <BldgNb>22</BldgNb>
778
+ <PstCd>291092</PstCd>
779
+ <TwnNm>LONDON</TwnNm>
780
+ <Ctry>UK</Ctry>
781
+ </PstlAdr>
782
+ <Id>
783
+ <OrgId>
784
+ <Othr>
785
+ <Id>123456789</Id>
786
+ <SchmeNm>
787
+ <Cd>EANG</Cd>
788
+ </SchmeNm>
789
+ </Othr>
790
+ </OrgId>
791
+ </Id>
792
+ </Dbtr>
793
+ </RltdPties>
794
+ <RltdAgts>
795
+ <DbtrAgt>
796
+ <FinInstnId>
797
+ <BIC>BOFSGB22</BIC>
798
+ </FinInstnId>
799
+ </DbtrAgt>
800
+ </RltdAgts>
801
+ <RmtInf>
802
+ <Strd>
803
+ <RfrdDocAmt>
804
+ <RmtdAmt Ccy="EUR">5500.00</RmtdAmt>
805
+ </RfrdDocAmt>
806
+ <CdtrRefInf>
807
+ <Tp>
808
+ <CdOrPrtry>
809
+ <Cd>SCOR</Cd>
810
+ </CdOrPrtry>
811
+ <Issr>ISO</Issr>
812
+ </Tp>
813
+ <Ref>RF98123456789012</Ref>
814
+ </CdtrRefInf>
815
+ </Strd>
816
+ </RmtInf>
817
+ </TxDtls>
818
+ </NtryDtls>
819
+ </Ntry>
820
+ <!--Transaction 8/ Single incoming SCT-->
821
+ <Ntry>
822
+ <NtryRef>8</NtryRef>
823
+ <Amt Ccy="EUR">10000.00</Amt>
824
+ <CdtDbtInd>CRDT</CdtDbtInd>
825
+ <Sts>BOOK</Sts>
826
+ <BookgDt>
827
+ <Dt>2010-10-29</Dt>
828
+ </BookgDt>
829
+ <ValDt>
830
+ <Dt>2010-10-29</Dt>
831
+ </ValDt>
832
+ <AcctSvcrRef>091029ACCTSTMTARCH08</AcctSvcrRef>
833
+ <BkTxCd>
834
+ <Domn>
835
+ <Cd>PMNT</Cd>
836
+ <Fmly>
837
+ <Cd>RCDT</Cd>
838
+ <SubFmlyCd>ESCT</SubFmlyCd>
839
+ </Fmly>
840
+ </Domn>
841
+ <Prtry>
842
+ <Cd>700TransactionCodeText</Cd>
843
+ <Issr>FFFS</Issr>
844
+ </Prtry>
845
+ </BkTxCd>
846
+ <NtryDtls>
847
+ <TxDtls>
848
+ <Refs>
849
+ <EndToEndId>EndToEndIdSCT01</EndToEndId>
850
+ </Refs>
851
+ <!-- EPC recommendation -->
852
+ <AmtDtls>
853
+ <TxAmt>
854
+ <Amt Ccy="EUR">10000.00</Amt>
855
+ </TxAmt>
856
+ </AmtDtls>
857
+ <RltdPties>
858
+ <Dbtr>
859
+ <Nm>DEBTOR</Nm>
860
+ </Dbtr>
861
+ <UltmtDbtr>
862
+ <Nm>ULTIMATE DEBTOR</Nm>
863
+ <Id>
864
+ <OrgId>
865
+ <Othr>
866
+ <Id>987654321</Id>
867
+ <SchmeNm>
868
+ <Cd>TXID</Cd>
869
+ </SchmeNm>
870
+ </Othr>
871
+ </OrgId>
872
+ </Id>
873
+ </UltmtDbtr>
874
+ </RltdPties>
875
+ <RltdAgts>
876
+ <DbtrAgt>
877
+ <FinInstnId>
878
+ <BIC>NDEAFIHH</BIC>
879
+ </FinInstnId>
880
+ </DbtrAgt>
881
+ </RltdAgts>
882
+ <Purp>
883
+ <Cd>TREA</Cd>
884
+ </Purp>
885
+ <RmtInf>
886
+ <Strd>
887
+ <CdtrRefInf>
888
+ <Tp>
889
+ <CdOrPrtry>
890
+ <Cd>SCOR</Cd>
891
+ </CdOrPrtry>
892
+ <Issr>ISO</Issr>
893
+ </Tp>
894
+ <Ref>RF98123456789012</Ref>
895
+ </CdtrRefInf>
896
+ </Strd>
897
+ </RmtInf>
898
+ <RltdDts>
899
+ <AccptncDtTm>2010-10-28T03:00:00+02:00</AccptncDtTm>
900
+ </RltdDts>
901
+ </TxDtls>
902
+ </NtryDtls>
903
+ </Ntry>
904
+ <Ntry>
905
+ <!-- Transaction 9 as an sample of bank charges debit that can be applied to Interest too if bank has possibility to do such a reporting-->
906
+ <!-- Maybe iomplemented for the interest reporting too-->
907
+ <NtryRef>9</NtryRef>
908
+ <Amt Ccy="EUR">200.00</Amt>
909
+ <CdtDbtInd>DBIT</CdtDbtInd>
910
+ <Sts>BOOK</Sts>
911
+ <BookgDt>
912
+ <Dt>2010-10-29</Dt>
913
+ </BookgDt>
914
+ <ValDt>
915
+ <Dt>2010-10-29</Dt>
916
+ </ValDt>
917
+ <AcctSvcrRef>091029ACCTSTMTARCH09</AcctSvcrRef>
918
+ <!-- generic Family code to give possibility to report received PMNT charges with sub types for DMCT and ESCT-->
919
+ <BkTxCd>
920
+ <Domn>
921
+ <Cd>PMNT</Cd>
922
+ <Fmly>
923
+ <Cd>MDOP</Cd>
924
+ <SubFmlyCd>CHRG</SubFmlyCd>
925
+ </Fmly>
926
+ </Domn>
927
+ <Prtry>
928
+ <Cd>730TransactionCodeText</Cd>
929
+ <Issr>FFFS</Issr>
930
+ </Prtry>
931
+ </BkTxCd>
932
+ <NtryDtls>
933
+ <!-- TX-details defining the type specific charges -->
934
+ <!-- PMJ received Payments -->
935
+ <TxDtls>
936
+ <Refs>
937
+ <AcctSvcrRef>091029ARCH09001</AcctSvcrRef>
938
+ </Refs>
939
+ <AmtDtls>
940
+ <TxAmt>
941
+ <Amt Ccy="EUR">100.00</Amt>
942
+ </TxAmt>
943
+ </AmtDtls>
944
+ <BkTxCd>
945
+ <Domn>
946
+ <Cd>PMNT</Cd>
947
+ <Fmly>
948
+ <Cd>RCDT</Cd>
949
+ <SubFmlyCd>DMCT</SubFmlyCd>
950
+ </Fmly>
951
+ </Domn>
952
+ </BkTxCd>
953
+ <RltdPties>
954
+ <Dbtr>
955
+ <Nm>SEB Merchant Banking Finland</Nm>
956
+ </Dbtr>
957
+ </RltdPties>
958
+ <RltdQties>
959
+ <Qty>
960
+ <Unit>10000</Unit>
961
+ </Qty>
962
+ </RltdQties>
963
+ </TxDtls>
964
+ <!-- SEPA Received Payments -->
965
+ <TxDtls>
966
+ <Refs>
967
+ <AcctSvcrRef>091029ARCH09001</AcctSvcrRef>
968
+ </Refs>
969
+ <AmtDtls>
970
+ <TxAmt>
971
+ <Amt Ccy="EUR">100.00</Amt>
972
+ </TxAmt>
973
+ </AmtDtls>
974
+ <BkTxCd>
975
+ <Domn>
976
+ <Cd>PMNT</Cd>
977
+ <Fmly>
978
+ <Cd>RCDT</Cd>
979
+ <SubFmlyCd>ESCT</SubFmlyCd>
980
+ </Fmly>
981
+ </Domn>
982
+ </BkTxCd>
983
+ <RltdPties>
984
+ <Dbtr>
985
+ <Nm>SEB Merchant Banking Finland</Nm>
986
+ </Dbtr>
987
+ </RltdPties>
988
+ <RltdQties>
989
+ <Qty>
990
+ <Unit>150000</Unit>
991
+ </Qty>
992
+ </RltdQties>
993
+ </TxDtls>
994
+ </NtryDtls>
995
+ </Ntry>
996
+ </Stmt>
997
+ </BkToCstmrStmt>
998
+ </Document>