zilverline-mt940 1.0 → 2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Gemfile.lock +1 -1
- data/README.md +5 -4
- data/lib/mt940.rb +1 -6
- data/lib/mt940/version.rb +2 -2
- data/lib/mt940_structured/file_content.rb +46 -0
- data/lib/mt940_structured/header.rb +30 -0
- data/lib/mt940_structured/mt940_structured.rb +8 -0
- data/lib/mt940_structured/parser.rb +18 -0
- data/lib/mt940_structured/parsers/abnamro/abnamro.rb +5 -0
- data/lib/mt940_structured/parsers/abnamro/parser.rb +15 -0
- data/lib/mt940_structured/parsers/abnamro/transaction_parser.rb +55 -0
- data/lib/mt940_structured/parsers/balance_parser.rb +12 -0
- data/lib/mt940_structured/parsers/bank_statement_parser.rb +59 -0
- data/lib/mt940_structured/parsers/base.rb +34 -0
- data/lib/mt940_structured/parsers/date_parser.rb +7 -0
- data/lib/mt940_structured/parsers/default_line61_parser.rb +25 -0
- data/lib/mt940_structured/parsers/iban_support.rb +15 -0
- data/lib/mt940_structured/parsers/ing/ing.rb +7 -0
- data/lib/mt940_structured/parsers/ing/parser.rb +18 -0
- data/lib/mt940_structured/parsers/ing/structured_transaction_parser.rb +50 -0
- data/lib/mt940_structured/parsers/ing/transaction_parser.rb +31 -0
- data/lib/mt940_structured/parsers/ing/types.rb +26 -0
- data/lib/mt940_structured/parsers/parsers.rb +16 -0
- data/lib/mt940_structured/parsers/rabobank/parser.rb +13 -0
- data/lib/mt940_structured/parsers/rabobank/rabobank.rb +8 -0
- data/lib/mt940_structured/parsers/rabobank/structured_transaction_parser.rb +41 -0
- data/lib/mt940_structured/parsers/rabobank/transaction_parser.rb +29 -0
- data/lib/mt940_structured/parsers/rabobank/types.rb +714 -0
- data/lib/mt940_structured/parsers/structured_description_parser.rb +12 -0
- data/lib/mt940_structured/parsers/tridios/parser.rb +14 -0
- data/lib/mt940_structured/parsers/tridios/transaction_parser.rb +23 -0
- data/lib/mt940_structured/parsers/tridios/triodos.rb +5 -0
- data/spec/fixtures/ing/eu_incasso.txt +17 -0
- data/spec/fixtures/ing/eu_incasso_foreign_transaction.txt +17 -0
- data/spec/fixtures/ing/failing.txt +18 -0
- data/spec/mt940_abnamro_spec.rb +18 -6
- data/spec/mt940_ing_spec.rb +78 -2
- data/spec/mt940_rabobank_spec.rb +11 -11
- data/spec/mt940_structured/file_content_spec.rb +77 -0
- data/spec/mt940_structured/header_spec.rb +32 -0
- data/spec/mt940_structured/parsers/rabobank/bank_statement_parser_spec.rb +32 -0
- data/spec/mt940_triodos_spec.rb +1 -1
- data/spec/mt940_two_accounts_spec.rb +1 -1
- metadata +41 -9
- data/lib/mt940/banks/abnamro.rb +0 -76
- data/lib/mt940/banks/ing.rb +0 -84
- data/lib/mt940/banks/rabobank.rb +0 -770
- data/lib/mt940/banks/triodos.rb +0 -20
- data/lib/mt940/base.rb +0 -165
- data/lib/mt940/structured_format.rb +0 -16
- data/spec/mt940_base_spec.rb +0 -48
@@ -0,0 +1,50 @@
|
|
1
|
+
module MT940Structured::Parsers::Ing
|
2
|
+
class StructuredTransactionParser < TransactionParser
|
3
|
+
include MT940Structured::Parsers::DateParser,
|
4
|
+
Types,
|
5
|
+
MT940Structured::Parsers::StructuredDescriptionParser,
|
6
|
+
MT940Structured::Parsers::IbanSupport
|
7
|
+
|
8
|
+
IBAN = %Q{[a-zA-Z]{2}[0-9]{2}[a-zA-Z0-9]{0,30}}
|
9
|
+
BIC = %Q{[a-zA-Z0-9]{8,11}}
|
10
|
+
IBAN_BIC_R = /^(#{IBAN})(?:\s)(#{BIC})(?:\s)(.*)/
|
11
|
+
CONTRA_ACCOUNT_DESCRIPTION_R = /^(.*)\sN\s?O\s?T\s?P\s?R\s?O\s?V\s?I\s?D\s?E\s?D\s?(.*)/
|
12
|
+
|
13
|
+
def enrich_transaction(transaction, line_86)
|
14
|
+
if line_86.match(/^:86:\s?(.*)\Z/m)
|
15
|
+
description = $1.gsub(/>\d{2}/, '').strip
|
16
|
+
case description
|
17
|
+
when IBAN_BIC_R
|
18
|
+
parse_structured_description transaction, $1, $3
|
19
|
+
when /^Europese Incasso, doorlopend(.*)/
|
20
|
+
description.match(/^Europese Incasso, doorlopend\s(#{IBAN})\s(#{BIC})(.*)\s([a-zA-Z0-9[:space:]]{19,30})\sSEPA(.*)/)
|
21
|
+
transaction.contra_account_iban=$1
|
22
|
+
transaction.contra_account_owner=$3.strip
|
23
|
+
transaction.description = "#{$4.strip} #{$5.strip}"
|
24
|
+
if transaction.contra_account_iban.match /^NL/
|
25
|
+
transaction.contra_account=iban_to_account(transaction.contra_account_iban)
|
26
|
+
else
|
27
|
+
transaction.contra_account=transaction.contra_account_iban
|
28
|
+
end
|
29
|
+
else
|
30
|
+
transaction.description = description
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
def parse_structured_description(transaction, iban, description)
|
37
|
+
transaction.contra_account_iban=iban
|
38
|
+
transaction.description=description
|
39
|
+
transaction.contra_account=iban_to_account(iban) if transaction.contra_account_iban.match /^NL/
|
40
|
+
if transaction.description.match CONTRA_ACCOUNT_DESCRIPTION_R
|
41
|
+
transaction.contra_account_owner=$1
|
42
|
+
transaction.description=$2
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module MT940Structured::Parsers::Ing
|
2
|
+
class TransactionParser
|
3
|
+
include MT940Structured::Parsers::DateParser
|
4
|
+
include MT940Structured::Parsers::IbanSupport
|
5
|
+
include MT940Structured::Parsers::StructuredDescriptionParser
|
6
|
+
include MT940Structured::Parsers::Ing::Types
|
7
|
+
|
8
|
+
def parse_transaction(line_61)
|
9
|
+
if line_61.match(/^:61:(\d{6})(C|D)(\d+),(\d{0,2})N(\S+)/)
|
10
|
+
sign = $2 == 'D' ? -1 : 1
|
11
|
+
transaction = MT940::Transaction.new(:amount => sign * ($3 + '.' + $4).to_f)
|
12
|
+
transaction.type = human_readable_type($5.strip)
|
13
|
+
transaction.date = parse_date($1)
|
14
|
+
transaction
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
|
19
|
+
def enrich_transaction(transaction, line_86)
|
20
|
+
if line_86.match(/^:86:\s?(.*)\Z/m)
|
21
|
+
description = $1.gsub(/>\d{2}/, '').strip
|
22
|
+
if description.match(/([P|\d]\d{9})?(.+)/)
|
23
|
+
transaction.description = $2.strip
|
24
|
+
transaction.contra_account = $1.nil? ? "NONREF" : $1.gsub(/\D/, '').gsub(/^0+/, '')
|
25
|
+
else
|
26
|
+
transaction.description = description
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module MT940Structured::Parsers::Ing
|
2
|
+
module Types
|
3
|
+
def human_readable_type(type)
|
4
|
+
ING_MAPPING[type.strip] || type.strip
|
5
|
+
end
|
6
|
+
|
7
|
+
ING_MAPPING = {}
|
8
|
+
ING_MAPPING["AC"]= "Acceptgiro"
|
9
|
+
ING_MAPPING["BA"]= "Betaalautomaattransactie"
|
10
|
+
ING_MAPPING["CH"]= "Cheque"
|
11
|
+
ING_MAPPING["DV"]= "Diversen"
|
12
|
+
ING_MAPPING["FL"]= "Filiaalboeking, concernboeking"
|
13
|
+
ING_MAPPING["GF"]= "Telefonisch bankieren"
|
14
|
+
ING_MAPPING["GM"]= "Geldautomaat"
|
15
|
+
ING_MAPPING["GT"]= "Internetbankieren"
|
16
|
+
ING_MAPPING["IC"]= "Incasso"
|
17
|
+
ING_MAPPING["OV"]= "Overschrijving"
|
18
|
+
ING_MAPPING["PK"]= "Opname kantoor"
|
19
|
+
ING_MAPPING["PO"]= "Periodieke overschrijving"
|
20
|
+
ING_MAPPING["ST"]= "ST Storting (eigen rekening of derde)"
|
21
|
+
ING_MAPPING["VZ"]= "Verzamelbetaling"
|
22
|
+
ING_MAPPING["Code"]= "Toelichting"
|
23
|
+
ING_MAPPING["CHK"]= "Cheque"
|
24
|
+
ING_MAPPING["TRF"]= "Overboeking buitenland"
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module MT940Structured
|
2
|
+
module Parsers
|
3
|
+
end
|
4
|
+
end
|
5
|
+
|
6
|
+
require_relative 'balance_parser'
|
7
|
+
require_relative 'date_parser'
|
8
|
+
require_relative 'iban_support'
|
9
|
+
require_relative 'structured_description_parser'
|
10
|
+
require_relative 'default_line61_parser'
|
11
|
+
require_relative 'bank_statement_parser'
|
12
|
+
require_relative 'base'
|
13
|
+
require_relative 'tridios/triodos'
|
14
|
+
require_relative 'ing/ing'
|
15
|
+
require_relative 'abnamro/abnamro'
|
16
|
+
require_relative 'rabobank/rabobank'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module MT940Structured::Parsers::Rabobank
|
2
|
+
class Parser < MT940Structured::Parsers::Base
|
3
|
+
def initialize
|
4
|
+
super "Rabobank", TransactionParsers.new
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
class TransactionParsers
|
9
|
+
def for_format(is_structured)
|
10
|
+
is_structured ? StructuredTransactionParser.new : TransactionParser.new
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module MT940Structured::Parsers::Rabobank
|
2
|
+
class StructuredTransactionParser
|
3
|
+
include MT940Structured::Parsers::DateParser,
|
4
|
+
Types,
|
5
|
+
MT940Structured::Parsers::StructuredDescriptionParser,
|
6
|
+
MT940Structured::Parsers::IbanSupport
|
7
|
+
|
8
|
+
|
9
|
+
def parse_transaction(line_61)
|
10
|
+
valuta_date = parse_date(line_61[4, 6])
|
11
|
+
sign = line_61[10, 1] == 'D' ? -1 : 1
|
12
|
+
amount = sign * line_61[11, 15].gsub(',', '.').to_f
|
13
|
+
transaction_type = human_readable_type(line_61[27, 3])
|
14
|
+
parts = line_61.split(/\s/)
|
15
|
+
potential_iban = parts.size > 1 ? parts.last.gsub(/^[P]{0,1}0*/, '').strip : nil
|
16
|
+
number = potential_iban.nil? ? "NONREF" : iban_to_account(potential_iban)
|
17
|
+
contra_account_iban = iban?(potential_iban) ? potential_iban : nil
|
18
|
+
MT940::Transaction.new(amount: amount,
|
19
|
+
type: transaction_type,
|
20
|
+
date: valuta_date,
|
21
|
+
contra_account_iban: contra_account_iban,
|
22
|
+
contra_account: number.strip)
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
def enrich_transaction(transaction, line_86)
|
27
|
+
transaction.description = line_86[4..-1]
|
28
|
+
description_parts = transaction.description.split('/')
|
29
|
+
transaction.description = parse_description_after_tag description_parts, "REMI"
|
30
|
+
if transaction.description == ''
|
31
|
+
structured_betalingskenmerk = parse_description_after_tag(description_parts, "CDTRREF")
|
32
|
+
transaction.description = "BETALINGSKENMERK #{structured_betalingskenmerk}" unless structured_betalingskenmerk == ''
|
33
|
+
end
|
34
|
+
transaction.contra_account_owner = description_parts[description_parts.index { |part| part == "NAME" } + 1].gsub(/\r|\n/, '') if description_parts.index { |part| part == "NAME" }
|
35
|
+
transaction.description.strip!
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module MT940Structured::Parsers::Rabobank
|
2
|
+
class TransactionParser
|
3
|
+
include MT940Structured::Parsers::DateParser, Types
|
4
|
+
|
5
|
+
def parse_transaction(line_61)
|
6
|
+
if line_61.match(/^:61:(\d{6})(C|D)(\d+),(\d{0,2})N(.{3})([P|\d]\d{9}|NONREF)\s*(.+)?$/)
|
7
|
+
sign = $2 == 'D' ? -1 : 1
|
8
|
+
transaction = MT940::Transaction.new(:amount => sign * ($3 + '.' + $4).to_f)
|
9
|
+
transaction.type = human_readable_type($5)
|
10
|
+
transaction.date = parse_date($1)
|
11
|
+
number = $6.strip
|
12
|
+
name = $7 || ""
|
13
|
+
number = number.gsub(/\D/, '').gsub(/^0+/, '') unless number == 'NONREF'
|
14
|
+
transaction.contra_account = number
|
15
|
+
transaction.contra_account_owner = name.strip
|
16
|
+
transaction
|
17
|
+
else
|
18
|
+
raise line_61
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def enrich_transaction(transaction, line_86)
|
23
|
+
if line_86.match(/^:86:(.*)$/)
|
24
|
+
transaction.description = [transaction.description, $1].join(" ").strip
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,714 @@
|
|
1
|
+
module MT940Structured::Parsers::Rabobank
|
2
|
+
module Types
|
3
|
+
def human_readable_type(type)
|
4
|
+
if type.match(/\d+/)
|
5
|
+
MAPPING[type.to_i] || type.to_s
|
6
|
+
elsif type == "MSC"
|
7
|
+
"MSC"
|
8
|
+
else
|
9
|
+
type.to_s
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
#PAYMENT_TYPES MUT.TXT: {"AC" => "Acceptgiro", "BA" => "Betaalautomaat", "BG" => "Bankgiro", "BY" => "Bijschrijving", "CB" => "Crediteuren betaling", "CK" => "Chipknip", "DA" => "Diverse afboekingen", "DB" => "Diverse Boekingen", "GA" => "Geldautomaat", "ID" => "Ideal", "KO" => "Kasopname", "MA" => "Machtiging", "OV" => "Overschrijving", "PB" => "Periodieke betaling", "TB" => "Telebankieren", "TG" => "Telegiro"}
|
14
|
+
|
15
|
+
#popular types: "MSC", "013", "023", "030", "034", "060", "062", "070", "071", "084", "088", "093", "102", "121", "122", "127", "131", "133", "404", "411", "501", "504", "505", "508", "541", "544", "578", "689", "690", "691"
|
16
|
+
|
17
|
+
MAPPING = {}
|
18
|
+
MAPPING[1]="Betaalopdracht NotaBox"
|
19
|
+
MAPPING[10]="Opname bij andere Rabobank"
|
20
|
+
MAPPING[11]="Opname balie"
|
21
|
+
MAPPING[12]="Betaalautomaat buitenland (vreemde valuta)"
|
22
|
+
MAPPING[13]="Betaalautomaat buitenland (euro)"
|
23
|
+
MAPPING[14]="Intra Rabo saldoconcentratie (uitgaand)"
|
24
|
+
MAPPING[15]="Telefonische machtiging eenmalig"
|
25
|
+
MAPPING[16]="Telefonische machtiging doorlopend"
|
26
|
+
MAPPING[17]="Telefonische machtiging kansspelen"
|
27
|
+
MAPPING[18]="Betaalopdracht Mobiel Bankieren (periodiek)"
|
28
|
+
MAPPING[20]="Geldautomaat eigen Rabobank"
|
29
|
+
MAPPING[21]="Geldautomaat andere Rabobank"
|
30
|
+
MAPPING[22]="Opladen Chipknip"
|
31
|
+
MAPPING[23]="Geldautomaat niet Rabobank"
|
32
|
+
MAPPING[25]="Acceptgiro Telebankieren"
|
33
|
+
MAPPING[26]="Betaalopdracht periodiek restsparen"
|
34
|
+
MAPPING[28]="RGS transactie (debet)"
|
35
|
+
MAPPING[29]="Geldautomaat buitenland (euro)"
|
36
|
+
MAPPING[30]="Betaalautomaat Nederland"
|
37
|
+
MAPPING[31]="Geldautomaat buitenland (vreemde valuta)"
|
38
|
+
MAPPING[32]="CrediteurenbetalingTelebankieren (periodiek)"
|
39
|
+
MAPPING[33]="Betaalopdracht handmatig"
|
40
|
+
MAPPING[34]="Betaalopdracht Internetbankieren (periodiek)"
|
41
|
+
MAPPING[35]="Betaalopdracht Telebankieren"
|
42
|
+
MAPPING[36]="Betaalopdracht Telebankieren (periodiek)"
|
43
|
+
MAPPING[37]="Afschrijving overig"
|
44
|
+
MAPPING[38]="Crediteurenbetaling Telebankieren"
|
45
|
+
MAPPING[39]="Salarisbetaling Telebankieren (periodiek)"
|
46
|
+
MAPPING[40]="Betaalopdracht periodiek"
|
47
|
+
MAPPING[41]="Acceptgiro bijlageloos"
|
48
|
+
MAPPING[42]="Boeking naar consumptief krediet (via bank)"
|
49
|
+
MAPPING[44]="Terugboeking incasso"
|
50
|
+
MAPPING[45]="Overheidsvordering"
|
51
|
+
MAPPING[46]="Terugboeking overheidsvordering"
|
52
|
+
MAPPING[47]="Terugboeking machtiging"
|
53
|
+
MAPPING[48]="Betaalopdracht Rabobank"
|
54
|
+
MAPPING[51]="Betaalopdracht Rabofoon (periodiek)"
|
55
|
+
MAPPING[52]="Crediteurenbetaling (Secure FTP)"
|
56
|
+
MAPPING[53]="Salarisbetaling Telebankieren"
|
57
|
+
MAPPING[57]="Salarisbetaling (Secure FTP)"
|
58
|
+
MAPPING[58]="Boeking naar consumptief krediet (balie)"
|
59
|
+
MAPPING[59]="Overboeking naar niet Raborekening (balie)"
|
60
|
+
MAPPING[60]="Doorlopende machtiging algemeen"
|
61
|
+
MAPPING[61]="Eenmalige machtiging"
|
62
|
+
MAPPING[62]="Doorlopende machtiging bedrijven"
|
63
|
+
MAPPING[63]="Doorlopende machtiging kansspelen"
|
64
|
+
MAPPING[64]="Eenmalige actiemachtiging"
|
65
|
+
MAPPING[65]="Direct Debit"
|
66
|
+
MAPPING[66]="Incasso Sociaal Fonds Bouwnijverh."
|
67
|
+
MAPPING[67]="Veilingincasso (geen terugboeking)"
|
68
|
+
MAPPING[68]="Salarisbetaling (Internet Services)"
|
69
|
+
MAPPING[69]="Crediteurenbetaling (Internet Services)"
|
70
|
+
MAPPING[70]="Machtiging Rabobank"
|
71
|
+
MAPPING[71]="Betaalopdracht Internetbankieren"
|
72
|
+
MAPPING[72]="Betaalopdracht Rabofoon"
|
73
|
+
MAPPING[73]="Overboeking naar niet Raborekening (via bank)"
|
74
|
+
MAPPING[76]="Betaalopdracht GSM"
|
75
|
+
MAPPING[81]="Acceptgiro Mobiel Bankieren"
|
76
|
+
MAPPING[82]="Acceptgiro Rabofoon"
|
77
|
+
MAPPING[84]="Acceptgiro Internetbankieren"
|
78
|
+
MAPPING[88]="Betaalopdracht Mobiel Bankieren"
|
79
|
+
MAPPING[90]="Overboeking naar spaarrekening"
|
80
|
+
MAPPING[91]="Overboeking naar lening"
|
81
|
+
MAPPING[92]="Afschrijving effectenhandeling"
|
82
|
+
MAPPING[93]="Afschrijving rente provisie kosten"
|
83
|
+
MAPPING[96]="Kastransactie kasrekening (storten)"
|
84
|
+
MAPPING[97]="Diverse mutaties debet RN"
|
85
|
+
MAPPING[99]="Diverse mutaties debet"
|
86
|
+
MAPPING[100]="Bijschrijving iDEAL (Rabo-Rabo)"
|
87
|
+
MAPPING[101]="Bijschrijving NotaBox (Rabo-Rabo)"
|
88
|
+
MAPPING[102]="Betaalopdracht iDEAL"
|
89
|
+
MAPPING[103]="Bijschrijving iDEAL (interbancair)"
|
90
|
+
MAPPING[104]="Stortingsapparaat"
|
91
|
+
MAPPING[105]="Bijschrijving NotaBox (via Equens)"
|
92
|
+
MAPPING[109]="Uitkering WSF"
|
93
|
+
MAPPING[110]="Terugboeking DD opdracht bank"
|
94
|
+
MAPPING[111]="Terugboeking DD opdracht klant"
|
95
|
+
MAPPING[112]="Terugboeking DD opdracht incassant"
|
96
|
+
MAPPING[114]="Stortingsapparaat (derden storting)"
|
97
|
+
MAPPING[117]="Bijschrijving Maestro betalingen"
|
98
|
+
MAPPING[118]="Bijschrijving Vpay betalingen"
|
99
|
+
MAPPING[119]="Stortingsapparaat (eigen storting)"
|
100
|
+
MAPPING[120]="Bijschrijving PIN betalingen (BEAtel)"
|
101
|
+
MAPPING[121]="Bijschrijving PIN betalingen (Datanet)"
|
102
|
+
MAPPING[122]="Bijschrijving crediteurenbetaling"
|
103
|
+
MAPPING[123]="Bijschrijving acceptgiro"
|
104
|
+
MAPPING[125]="Bijschrijving CHIPknip betalingen"
|
105
|
+
MAPPING[126]="Bijschrijving salarisbetaling"
|
106
|
+
MAPPING[127]="Bijschrijving betaalopdracht"
|
107
|
+
MAPPING[128]="Intra Rabo saldoconcentratie (inkomend)"
|
108
|
+
MAPPING[129]="Bijschrijving saldo Chipknip"
|
109
|
+
MAPPING[130]="Bijschrijving betaalopdracht (periodiek)"
|
110
|
+
MAPPING[131]="Bijschrijving CT betaling"
|
111
|
+
MAPPING[132]="Terugboeking CT betaling"
|
112
|
+
MAPPING[133]="Bijschrijving spoedopdracht"
|
113
|
+
MAPPING[134]="Bankmelding spoedopdracht"
|
114
|
+
MAPPING[135]="RN physical pooling"
|
115
|
+
MAPPING[136]="Overboeking van consumptief krediet (Internetbankieren)"
|
116
|
+
MAPPING[137]="Overboeking van consumptief krediet (Rabofoon)"
|
117
|
+
MAPPING[139]="Overboeking van consumptief krediet (Mobiel Bankieren)"
|
118
|
+
MAPPING[141]="RGS transactie (credit)"
|
119
|
+
MAPPING[142]="Baliestorting EUR <3.000"
|
120
|
+
MAPPING[143]="Baliestorting EUR 3.000-7.500"
|
121
|
+
MAPPING[144]="Baliestorting EUR 7.500-12.000"
|
122
|
+
MAPPING[145]="Baliestorting EUR >12.000"
|
123
|
+
MAPPING[146]="Baliestorting (filiaal) EUR <3.000"
|
124
|
+
MAPPING[147]="Baliestorting (filiaal) EUR 3.000-7.500"
|
125
|
+
MAPPING[148]="Baliestorting (filiaal) EUR 7.500-12.000"
|
126
|
+
MAPPING[149]="Baliestorting (filiaal) EUR >12.000"
|
127
|
+
MAPPING[150]="Spoedopdracht (binnen Rabobank)"
|
128
|
+
MAPPING[151]="Spoedopdracht (buiten Rabobank)"
|
129
|
+
MAPPING[152]="Spoedopdracht Telebankieren Extra (binnen Rabobank)"
|
130
|
+
MAPPING[153]="Spoedopdracht Telebankieren Extra (buiten Rabobank)"
|
131
|
+
MAPPING[154]="Spoedopdracht Internetbankieren (buiten Rabobank)"
|
132
|
+
MAPPING[155]="Spoedopdracht Internetbankieren (binnen Rabobank)"
|
133
|
+
MAPPING[156]="Spoedopdracht balie (buiten Rabobank)"
|
134
|
+
MAPPING[157]="Spoedopdracht via bank (buiten Rabobank)"
|
135
|
+
MAPPING[158]="Spoedopdracht balie (binnen Rabobank)"
|
136
|
+
MAPPING[159]="Spoedopdracht via bank (binnen Rabobank)"
|
137
|
+
MAPPING[160]="Salarisbetaling Internetbankieren (batch)"
|
138
|
+
MAPPING[161]="Crediteurenbetaling Internetbankieren (batch)"
|
139
|
+
MAPPING[162]="Betaalopdracht Internetbankieren (batch)"
|
140
|
+
MAPPING[163]="Salarisbetaling Telebankieren (batch)"
|
141
|
+
MAPPING[164]="Crediteurenbetaling Telebankieren (batch)"
|
142
|
+
MAPPING[172]="Sealbagstorting kwaliteit EUR <3.000"
|
143
|
+
MAPPING[173]="Sealbagstorting kwaliteit EUR 3.000-7.500"
|
144
|
+
MAPPING[174]="Sealbagstorting kwaliteit EUR 7.500-12.000"
|
145
|
+
MAPPING[175]="Sealbagstorting kwaliteit EUR >12.000"
|
146
|
+
MAPPING[176]="Sealbagstorting kwaliteit (filiaal) EUR <3.000"
|
147
|
+
MAPPING[177]="Sealbagstorting kwaliteit (filiaal) EUR 3.000-7.500"
|
148
|
+
MAPPING[178]="Sealbagstorting kwaliteit (filiaal) EUR 7.500-12.000"
|
149
|
+
MAPPING[179]="Sealbagstorting kwaliteit (filiaal) EUR >12.000"
|
150
|
+
MAPPING[182]="Sealbagstorting non-kwaliteit EUR <3.000"
|
151
|
+
MAPPING[183]="Sealbagstorting non-kwaliteit EUR 3.000-7.500"
|
152
|
+
MAPPING[184]="Sealbagstorting non-kwaliteit EUR 7.500-12.000"
|
153
|
+
MAPPING[185]="Sealbagstorting non-kwaliteit EUR >12.000"
|
154
|
+
MAPPING[186]="Sealbagstorting non-kwaliteit (filiaal) EUR <3.000"
|
155
|
+
MAPPING[187]="Sealbagstorting non-kwaliteit (filiaal) EUR 3.000-7.500"
|
156
|
+
MAPPING[188]="Sealbagstorting non-kwaliteit (filiaal) EUR 7.500-12.000"
|
157
|
+
MAPPING[189]="Sealbagstorting non-kwaliteit (filiaal) EUR >12.000"
|
158
|
+
MAPPING[190]="Overboeking van spaarrekening"
|
159
|
+
MAPPING[191]="Overboeking van lening"
|
160
|
+
MAPPING[192]="Bijschrijving effectenhandeling"
|
161
|
+
MAPPING[193]="Bijschrijving rente provisie kosten"
|
162
|
+
MAPPING[196]="Kastransactie kasrekening (opnemen)"
|
163
|
+
MAPPING[197]="Diverse mutaties credit RN"
|
164
|
+
MAPPING[199]="Diverse mutaties credit"
|
165
|
+
MAPPING[201]="Telebankieren vrijgeven opdrachten"
|
166
|
+
MAPPING[204]="Stortingsapparaat biljetten (eigen storting)"
|
167
|
+
MAPPING[205]="MT101-berichten"
|
168
|
+
MAPPING[206]="Batch incasso (Telebankieren)"
|
169
|
+
MAPPING[207]="Telebankieren sessiekosten"
|
170
|
+
MAPPING[208]="Telebankieren Extra informatie kosten boeksaldi"
|
171
|
+
MAPPING[209]="Telebankieren Extra informatie kosten valutaire saldi"
|
172
|
+
MAPPING[214]="Batch betalen (Secure FTP)"
|
173
|
+
MAPPING[215]="Batch betalen (Internet Services)"
|
174
|
+
MAPPING[216]="Batch PIN bijschrijvingen"
|
175
|
+
MAPPING[217]="Batch CHIPknip bijschrijvingen"
|
176
|
+
MAPPING[224]="Batch incasso (Secure FTP)"
|
177
|
+
MAPPING[225]="Batch incasso (Internet Services)"
|
178
|
+
MAPPING[230]="Contante valutatransactie EUR~VV EUR <50.000"
|
179
|
+
MAPPING[231]="Contante valutatransactie EUR~VV EUR 50.000-100.000"
|
180
|
+
MAPPING[232]="Contante valutatransactie EUR~VV EUR 100.000-150.000"
|
181
|
+
MAPPING[233]="Contante valutatransactie EUR~VV EUR >150.000"
|
182
|
+
MAPPING[234]="Valutatermijntransactie EUR~VV EUR <100.000"
|
183
|
+
MAPPING[235]="Valutatermijntransactie EUR~VV EUR 100.000-225.000"
|
184
|
+
MAPPING[236]="Valutatermijntransactie EUR~VV EUR 225.000-450.000"
|
185
|
+
MAPPING[237]="Valutatermijntransactie EUR~VV EUR 450.000-1.000.000"
|
186
|
+
MAPPING[238]="Valutatermijntransactie EUR~VV EUR 1.000.000-4.500.000"
|
187
|
+
MAPPING[239]="Valutatermijntransactie EUR~VV EUR >4.500.000"
|
188
|
+
MAPPING[240]="Valutaswaptransactie EUR~VV EUR <100.000"
|
189
|
+
MAPPING[241]="Valutaswaptransactie EUR~VV EUR 100.000-225.000"
|
190
|
+
MAPPING[242]="Valutaswaptransactie EUR~VV EUR 225.000-450.000"
|
191
|
+
MAPPING[243]="Valutaswaptransactie EUR~VV EUR 450.000-1.000.000"
|
192
|
+
MAPPING[244]="Valutaswaptransactie EUR~VV EUR 1.000.000-4.500.000"
|
193
|
+
MAPPING[245]="Valutaswaptransactie EUR~VV EUR >4.500.000"
|
194
|
+
MAPPING[246]="Valutaswaptransactie EUR~VV laatste transactie"
|
195
|
+
MAPPING[247]="Contante valutatransactie VV~EUR EUR <50.000"
|
196
|
+
MAPPING[248]="Contante valutatransactie VV~EUR EUR 50.000-100.000"
|
197
|
+
MAPPING[249]="Contante valutatransactie VV~EUR EUR 100.000-150.000"
|
198
|
+
MAPPING[250]="Contante valutatransactie VV~EUR EUR >150.000"
|
199
|
+
MAPPING[251]="Valutatermijntransactie VV~EUR EUR <100.000"
|
200
|
+
MAPPING[252]="Valutatermijntransactie VV~EUR EUR 100.000-225.000"
|
201
|
+
MAPPING[253]="Valutatermijntransactie VV~EUR EUR 225.000-450.000"
|
202
|
+
MAPPING[254]="Valutatermijntransactie VV~EUR EUR 450.000-1.000.000"
|
203
|
+
MAPPING[255]="Valutatermijntransactie VV~EUR EUR 1.000.000-4.500.000"
|
204
|
+
MAPPING[256]="Valutatermijntransactie VV~EUR EUR >4.500.000"
|
205
|
+
MAPPING[257]="Valutaswaptransactie VV~EUR EUR <100.000"
|
206
|
+
MAPPING[258]="Valutaswaptransactie VV~EUR EUR 100.000-225.000"
|
207
|
+
MAPPING[259]="Valutaswaptransactie VV~EUR EUR 225.000-450.000"
|
208
|
+
MAPPING[260]="Valutaswaptransactie VV~EUR EUR 450.000-1.000.000"
|
209
|
+
MAPPING[261]="Valutaswaptransactie VV~EUR EUR 1.000.000-4.500.000"
|
210
|
+
MAPPING[262]="Valutaswaptransactie VV~EUR EUR >4.500.000"
|
211
|
+
MAPPING[263]="Valutaswaptransactie VV~EUR laatste transactie"
|
212
|
+
MAPPING[269]="Niet leverbare termijnaffaire"
|
213
|
+
MAPPING[270]="Contante valutatransactie VV~VV EUR <50.000"
|
214
|
+
MAPPING[271]="Contante valutatransactie VV~VV EUR 50.000-100.000"
|
215
|
+
MAPPING[272]="Contante valutatransactie VV~VV EUR 100.000-150.000"
|
216
|
+
MAPPING[273]="Contante valutatransactie VV~VV EUR >150.000"
|
217
|
+
MAPPING[274]="Valutatermijntransactie VV~VV EUR <100.000"
|
218
|
+
MAPPING[275]="Valutatermijntransactie VV~VV EUR 100.000-225.000"
|
219
|
+
MAPPING[276]="Valutatermijntransactie VV~VV EUR 225.000-450.000"
|
220
|
+
MAPPING[277]="Valutatermijntransactie VV~VV EUR 450.000-1.000.000"
|
221
|
+
MAPPING[278]="Valutatermijntransactie VV~VV EUR 1.000.000-4.500.000"
|
222
|
+
MAPPING[279]="Valutatermijntransactie VV~VV EUR >4.500.000"
|
223
|
+
MAPPING[280]="Valutaswaptransactie VV~VV EUR <100.000"
|
224
|
+
MAPPING[281]="Valutaswaptransactie VV~VV EUR 100.000-225.000"
|
225
|
+
MAPPING[282]="Valutaswaptransactie VV~VV EUR 225.000-450.000"
|
226
|
+
MAPPING[283]="Valutaswaptransactie VV~VV EUR 450.000-1.000.000"
|
227
|
+
MAPPING[284]="Valutaswaptransactie VV~VV EUR 1.000.000-4.500.000"
|
228
|
+
MAPPING[285]="Valutaswaptransactie VV~VV EUR >4.500.000"
|
229
|
+
MAPPING[286]="Valutaswaptransactie VV~VV laatste transactie"
|
230
|
+
MAPPING[287]="Rabo iDEAL Professional entree"
|
231
|
+
MAPPING[288]="Rabo iDEAL Professional abonnement"
|
232
|
+
MAPPING[289]="Rabo iDEAL Kassa entree"
|
233
|
+
MAPPING[290]="Rabo iDEAL Kassa abonnement"
|
234
|
+
MAPPING[291]="Rabo iDEAL Kassa transactie"
|
235
|
+
MAPPING[292]="MiniTix-optie abonnement"
|
236
|
+
MAPPING[293]="Logo-optie"
|
237
|
+
MAPPING[294]="Overstap naar Rabo Internetkassa"
|
238
|
+
MAPPING[295]="Rabo Internetkassa entree"
|
239
|
+
MAPPING[296]="Rabo Internetkassa abonnement"
|
240
|
+
MAPPING[297]="Rabo Internetkassa transactie"
|
241
|
+
MAPPING[298]="Callcenter-optie entree"
|
242
|
+
MAPPING[299]="Callcenter-optie abonnement"
|
243
|
+
MAPPING[300]="Overstapservice"
|
244
|
+
MAPPING[301]="Rekeningafschrift papier"
|
245
|
+
MAPPING[302]="Rekeningafschrift braille"
|
246
|
+
MAPPING[303]="Mededeling niet uitgevoerde periodieke opdracht"
|
247
|
+
MAPPING[304]="Rekeningafschrift (extra exemplaar)"
|
248
|
+
MAPPING[305]="Rekeningafschrift VV rekening"
|
249
|
+
MAPPING[306]="Mededeling"
|
250
|
+
MAPPING[307]="Overzicht mutaties"
|
251
|
+
MAPPING[308]="Overzicht mutaties braille"
|
252
|
+
MAPPING[309]="Rekeningafschrift digitaal"
|
253
|
+
MAPPING[310]="Rekeningafschrift niet aangemaakt"
|
254
|
+
MAPPING[311]="Overzicht mutaties via bank"
|
255
|
+
MAPPING[312]="Rekeningafschrift (kopie)"
|
256
|
+
MAPPING[313]="Mededeling digitaal afschrift"
|
257
|
+
MAPPING[314]="Terugboeking actieaanbod digitaal rekeningafschrift"
|
258
|
+
MAPPING[315]="Maandelijks rekeningoverzicht"
|
259
|
+
MAPPING[316]="Nota rente, provisie en kosten "
|
260
|
+
MAPPING[317]="Nota rente, provisie en kosten samenstelling"
|
261
|
+
MAPPING[318]="Staffel"
|
262
|
+
MAPPING[319]="Specificatie bij nota"
|
263
|
+
MAPPING[320]="Boekje overschrijvingsformulieren"
|
264
|
+
MAPPING[321]="Specificatie bij rekeningafschrift"
|
265
|
+
MAPPING[322]="Opdrachtformulieren"
|
266
|
+
MAPPING[323]="Maandelijks portefeuille-overzicht"
|
267
|
+
MAPPING[324]="URLinked 2 Homepage entree"
|
268
|
+
MAPPING[325]="URLinked 2 Homepage klik"
|
269
|
+
MAPPING[326]="Bericht van rentewijziging credit"
|
270
|
+
MAPPING[327]="Bericht van rentewijziging debet"
|
271
|
+
MAPPING[328]="URLinked 2 Personalinfo entree"
|
272
|
+
MAPPING[329]="URLinked 2 Personalinfo klik"
|
273
|
+
MAPPING[330]="ERI informatierecords"
|
274
|
+
MAPPING[332]="BRI abonnement"
|
275
|
+
MAPPING[333]="BRI download"
|
276
|
+
MAPPING[334]="BRI informatierecord"
|
277
|
+
MAPPING[341]="ERI filetransfer"
|
278
|
+
MAPPING[342]="VerwInfo entree"
|
279
|
+
MAPPING[343]="VerwInfo abonnement"
|
280
|
+
MAPPING[344]="VerwInfo geleverde batches"
|
281
|
+
MAPPING[345]="VerwInfo geleverde posten"
|
282
|
+
MAPPING[350]="Abonnement PIN/COMBI automaat koop (vast)"
|
283
|
+
MAPPING[351]="Abonnement PIN/COMBI automaat koop (mobiel)"
|
284
|
+
MAPPING[352]="Abonnement PIN/COMBI automaat huur (vast)"
|
285
|
+
MAPPING[353]="Abonnement PIN/COMBI automaat huur (mobiel)"
|
286
|
+
MAPPING[360]="Aanmaak/heraanmaak Rabopas"
|
287
|
+
MAPPING[361]="Aanmaak/heraanmaak pincode Rabopas"
|
288
|
+
MAPPING[362]="Behandeling reclame"
|
289
|
+
MAPPING[363]="Stickers afstortformulier"
|
290
|
+
MAPPING[370]="Telebankieren informatie kosten <10.000 mutaties"
|
291
|
+
MAPPING[371]="Telebankieren informatie kosten 10.000-50.000 mutaties"
|
292
|
+
MAPPING[372]="Telebankieren informatie kosten >50.000 mutaties"
|
293
|
+
MAPPING[374]="Telebankieren vrijgeven opdrachten SMS-bericht"
|
294
|
+
MAPPING[375]="Telebankieren vrijgeven opdrachten e-mail"
|
295
|
+
MAPPING[376]="NotaBox Alerts sms"
|
296
|
+
MAPPING[377]="NotaBox Alerts e-mail"
|
297
|
+
MAPPING[378]="NotaBox Alerts abonnement"
|
298
|
+
MAPPING[380]="Rabo Mobiel Saldo e-mail"
|
299
|
+
MAPPING[381]="Rabo Roodstand Alerts"
|
300
|
+
MAPPING[382]="Rabo Saldo SMS"
|
301
|
+
MAPPING[383]="Rabo Mobiel Saldo SMS (leden)"
|
302
|
+
MAPPING[384]="Rabo Mobiel Saldochecker"
|
303
|
+
MAPPING[387]="Rabo iDEAL Lite entree"
|
304
|
+
MAPPING[388]="Rabo iDEAL Professional PSP abonnement"
|
305
|
+
MAPPING[389]="Rabo iDEAL Lite abonnement"
|
306
|
+
MAPPING[390]="Rabo Cashflow Forecasting Module entree"
|
307
|
+
MAPPING[391]="Rabo Cashflow Forecasting Module abonnement"
|
308
|
+
MAPPING[392]="Rabo Cash Management entree"
|
309
|
+
MAPPING[393]="Rabo Cash Management abonnement"
|
310
|
+
MAPPING[394]="Rabo Cash Management alerts"
|
311
|
+
MAPPING[395]="RFLP extra toegangspas"
|
312
|
+
MAPPING[396]="RFLP extra paslezer"
|
313
|
+
MAPPING[397]="RFLP informatiekosten (per record)"
|
314
|
+
MAPPING[398]="RFLP downloadkosten (per record)"
|
315
|
+
MAPPING[400]="Acceptgiro RFLP"
|
316
|
+
MAPPING[401]="Crediteurenbetaling RFLP"
|
317
|
+
MAPPING[402]="Crediteurenbetaling RFLP (periodiek)"
|
318
|
+
MAPPING[403]="Crediteurenbetaling RFLP (batch)"
|
319
|
+
MAPPING[404]="Buitenland transactie (credit)"
|
320
|
+
MAPPING[405]="Salarisbetaling RFLP (periodiek)"
|
321
|
+
MAPPING[406]="Salarisbetaling RFLP (batch)"
|
322
|
+
MAPPING[407]="Betaalopdracht RFLP"
|
323
|
+
MAPPING[408]="Betaalopdracht RFLP (periodiek)"
|
324
|
+
MAPPING[409]="Spoedopdracht RFLP (binnen Rabobank)"
|
325
|
+
MAPPING[410]="Spoedopdracht RFLP (buiten Rabobank)"
|
326
|
+
MAPPING[411]="Buitenland transactie (debet)"
|
327
|
+
MAPPING[412]="Salarisbetaling RFLP"
|
328
|
+
MAPPING[421]="Bijboeking buitenland BEN Equens"
|
329
|
+
MAPPING[422]="Bijboeking buitenland OUR Equens"
|
330
|
+
MAPPING[423]="Bijboeking buitenland SHA Equens"
|
331
|
+
MAPPING[424]="Bijschrijving EuroPlus SHA"
|
332
|
+
MAPPING[425]="Bijschrijving EuroPlus OUR"
|
333
|
+
MAPPING[426]="Bijschrijving EuroPlus BEN"
|
334
|
+
MAPPING[427]="Bijschrijving EuroPlus SHA spoed"
|
335
|
+
MAPPING[428]="Bijschrijving EuroPlus OUR spoed"
|
336
|
+
MAPPING[429]="Bijschrijving EuroPlus BEN spoed"
|
337
|
+
MAPPING[430]="Physical pooling sweep funding"
|
338
|
+
MAPPING[431]="Physical pooling sweep skimming"
|
339
|
+
MAPPING[432]="Overnight pooling forward sweep debet"
|
340
|
+
MAPPING[433]="Overnight pooling forward sweep credit"
|
341
|
+
MAPPING[434]="Overnight pooling back sweep debet"
|
342
|
+
MAPPING[435]="Overnight pooling back sweep credit"
|
343
|
+
MAPPING[439]="Bankcheque post"
|
344
|
+
MAPPING[449]="Bankcheque post handmatig"
|
345
|
+
MAPPING[450]="ICM BOA Lockbox Verenigd Koninkrijk"
|
346
|
+
MAPPING[451]="ICM BOA Lockbox Ierland"
|
347
|
+
MAPPING[452]="ICM BOA Lockbox Duitsland"
|
348
|
+
MAPPING[453]="ICM BOA Lockbox Frankrijk"
|
349
|
+
MAPPING[454]="ICM BOA Lockbox Verenigde Staten"
|
350
|
+
MAPPING[458]="Bankcheque aangetekend"
|
351
|
+
MAPPING[459]="Bankcheque aangetekend handmatig"
|
352
|
+
MAPPING[462]="ICM BOA abonnement"
|
353
|
+
MAPPING[463]="ICM BOA rekening"
|
354
|
+
MAPPING[464]="ICM BOA transactie"
|
355
|
+
MAPPING[465]="Buitenland niet grensoverschrijdend"
|
356
|
+
MAPPING[466]="Bijschrijving buitenland niet grensoverschrijdend"
|
357
|
+
MAPPING[467]="Bijschrijving buitenland niet grensoverschrijdend franco"
|
358
|
+
MAPPING[468]="Bankcheque koerier NL"
|
359
|
+
MAPPING[469]="Bankcheque koerier NL handmatig"
|
360
|
+
MAPPING[470]="ICM aanzuiveren uitgaand"
|
361
|
+
MAPPING[471]="ICM afromen inkomend"
|
362
|
+
MAPPING[472]="ICM saldo concentratie services afromen inkomend"
|
363
|
+
MAPPING[473]="ICM saldo concentratie services aanzuiveren uitgaand"
|
364
|
+
MAPPING[474]="ICM aanzuiveren inkomend"
|
365
|
+
MAPPING[475]="ICM saldo concentratie services aanzuiveren inkomend"
|
366
|
+
MAPPING[476]="ICM saldo concentratie services afromen uitgaand"
|
367
|
+
MAPPING[477]="ICM afromen uitgaand"
|
368
|
+
MAPPING[478]="Bankcheque koerier buitenland"
|
369
|
+
MAPPING[479]="Bankcheque koerier buitenland (handmatig)"
|
370
|
+
MAPPING[481]="EuroPlus OUR"
|
371
|
+
MAPPING[482]="EuroPlus BEN"
|
372
|
+
MAPPING[483]="EuroPlus SHA"
|
373
|
+
MAPPING[484]="EuroPlus SHA handmatig"
|
374
|
+
MAPPING[485]="EuroPlus OUR handmatig"
|
375
|
+
MAPPING[486]="EuroPlus BEN handmatig"
|
376
|
+
MAPPING[487]="EuroPlus SHA spoed"
|
377
|
+
MAPPING[488]="EuroPlus OUR spoed"
|
378
|
+
MAPPING[489]="EuroPlus BEN spoed"
|
379
|
+
MAPPING[490]="EuroPlus SHA handmatig spoed"
|
380
|
+
MAPPING[491]="EuroPlus OUR handmatig spoed"
|
381
|
+
MAPPING[492]="EuroPlus BEN handmatig spoed"
|
382
|
+
MAPPING[494]="Eurobetaling SHA"
|
383
|
+
MAPPING[495]="Eurobetaling SHA spoed"
|
384
|
+
MAPPING[498]="Eurobetaling SHA spoed handmatig"
|
385
|
+
MAPPING[501]="Overboeking naar betaalrekening (Internetbankieren)"
|
386
|
+
MAPPING[502]="Overboeking naar betaalrekening (Rabofoon)"
|
387
|
+
MAPPING[503]="Overboeking naar betaalrekening (Telebankieren)"
|
388
|
+
MAPPING[504]="Overboeking naar spaarrekening (Mobiel Bankieren)"
|
389
|
+
MAPPING[505]="Overboeking naar spaarrekening (Internetbankieren)"
|
390
|
+
MAPPING[506]="Overboeking naar spaarrekening (Rabofoon)"
|
391
|
+
MAPPING[507]="Overboeking naar spaarrekening (Telebankieren)"
|
392
|
+
MAPPING[508]="Overboeking naar betaalrekening (Mobiel Bankieren)(periodiek)"
|
393
|
+
MAPPING[509]="Overboeking naar betaalrekening (Internetbankieren)(periodiek)"
|
394
|
+
MAPPING[510]="Overboeking naar betaalrekening (Rabofoon)(periodiek)"
|
395
|
+
MAPPING[511]="Overboeking naar spaarrekening (Mobiel Bankieren)(periodiek)"
|
396
|
+
MAPPING[512]="Overboeking naar spaarrekening (Internetbankieren)(periodiek)"
|
397
|
+
MAPPING[513]="Sealbagstorting kwaliteit EUR basistarief"
|
398
|
+
MAPPING[514]="Sealbagstorting kwaliteit EUR coupures"
|
399
|
+
MAPPING[517]="Sealbagstorting non-kwaliteit EUR basistarief"
|
400
|
+
MAPPING[518]="Sealbagstorting non-kwaliteit EUR coupures"
|
401
|
+
MAPPING[523]="Storting munten container"
|
402
|
+
MAPPING[525]="Storting munten zakken"
|
403
|
+
MAPPING[526]="Storting munten tellen"
|
404
|
+
MAPPING[531]="Storting vreemde valuta basistarief"
|
405
|
+
MAPPING[532]="Storting vreemde valuta coupures"
|
406
|
+
MAPPING[533]="Storting vreemde valuta EUR <3.000"
|
407
|
+
MAPPING[534]="Storting vreemde valuta EUR 3.000-7.500"
|
408
|
+
MAPPING[535]="Storting vreemde valuta EUR 7.500-12.000"
|
409
|
+
MAPPING[536]="Storting vreemde valuta EUR >12.000"
|
410
|
+
MAPPING[538]="Overboeking naar spaarrekening (Telebankieren)(periodiek)"
|
411
|
+
MAPPING[540]="Bijschrijving Eurobetaling SHA"
|
412
|
+
MAPPING[543]="Bijschrijving Eurobetaling SHA spoed"
|
413
|
+
MAPPING[544]="Eurobetaling (Internetbankieren)"
|
414
|
+
MAPPING[552]="Wereldbetaling SHA"
|
415
|
+
MAPPING[553]="Wereldbetaling OUR"
|
416
|
+
MAPPING[554]="Wereldbetaling BEN"
|
417
|
+
MAPPING[555]="Wereldbetaling SHA spoed"
|
418
|
+
MAPPING[556]="Wereldbetaling OUR spoed"
|
419
|
+
MAPPING[557]="Wereldbetaling BEN spoed"
|
420
|
+
MAPPING[558]="Wereldbetaling SHA met instructies"
|
421
|
+
MAPPING[559]="Wereldbetaling OUR met instructies"
|
422
|
+
MAPPING[560]="Wereldbetaling BEN met instructies"
|
423
|
+
MAPPING[561]="Wereldbetaling SHA spoed overige instructies"
|
424
|
+
MAPPING[562]="Wereldbetaling OUR spoed overige instructies"
|
425
|
+
MAPPING[563]="Wereldbetaling BEN spoed overige instructies"
|
426
|
+
MAPPING[565]="Overboeking naar betaalrekening (balie)"
|
427
|
+
MAPPING[566]="Overboeking naar spaarrekening (balie)"
|
428
|
+
MAPPING[567]="Overboeking naar lening (balie)"
|
429
|
+
MAPPING[568]="Overboeking van betaalrekening (balie)"
|
430
|
+
MAPPING[569]="Overboeking van spaarrekening (balie)"
|
431
|
+
MAPPING[574]="Muntrollen"
|
432
|
+
MAPPING[575]="Overboeking van consumptief krediet (balie)"
|
433
|
+
MAPPING[576]="Overboeking naar betaalrekening (via bank)"
|
434
|
+
MAPPING[577]="Overboeking naar spaarrekening (Rabofoon)(periodiek)"
|
435
|
+
MAPPING[578]="Overboeking naar betaalrekening (Mobiel Bankieren)"
|
436
|
+
MAPPING[579]="Bestelling biljetten"
|
437
|
+
MAPPING[580]="Overboeking naar spaarrekening (via bank)"
|
438
|
+
MAPPING[581]="Overboeking naar lening (via bank)"
|
439
|
+
MAPPING[582]="Overboeking van betaalrekening (via bank)"
|
440
|
+
MAPPING[591]="Stortingsverschil EUR"
|
441
|
+
MAPPING[592]="Stortingsverschil VV"
|
442
|
+
MAPPING[600]="Rabo BasisPakket met Wereldpas en maandelijks afschrift"
|
443
|
+
MAPPING[601]="Rabo BasisPakket met Wereldpas en tweewekelijks afschrift"
|
444
|
+
MAPPING[602]="Rabo BasisPakket met Wereldpas en wekelijks afschrift"
|
445
|
+
MAPPING[603]="Rabo BasisPakket met Rabopas en maandelijks afschrift"
|
446
|
+
MAPPING[604]="Rabo BasisPakket met Rabopas en tweewekelijks afschrift"
|
447
|
+
MAPPING[605]="Rabo BasisPakket met Rabopas en wekelijks afschrift"
|
448
|
+
MAPPING[606]="Rabo DirectPakket met Wereldpas en maandelijks afschrift"
|
449
|
+
MAPPING[607]="Rabo TotaalPakket met Wereldpas en Rabocard en maandelijks afschrift"
|
450
|
+
MAPPING[608]="Rabo TotaalPakket met Wereldpas en Rabocard en tweewekelijks afschrift"
|
451
|
+
MAPPING[609]="Rabo TotaalPakket met Wereldpas en Rabocard en wekelijks afschrift"
|
452
|
+
MAPPING[610]="Rabo RiantPakket met Wereldpas en GoldCard en maandelijks afschrift"
|
453
|
+
MAPPING[611]="Rabo RiantPakket met Wereldpas en GoldCard en tweewekelijks afschrift"
|
454
|
+
MAPPING[612]="Rabo RiantPakket met Wereldpas en GoldCard en wekelijks afschrift"
|
455
|
+
MAPPING[613]="Extra betaalrekening met maandelijks afschrift"
|
456
|
+
MAPPING[614]="Extra betaalrekening met tweewekelijks afschrift"
|
457
|
+
MAPPING[615]="Extra betaalrekening met wekelijks afschrift"
|
458
|
+
MAPPING[640]="Doorlopende machtiging algemeen (Telebankieren)"
|
459
|
+
MAPPING[641]="Eenmalige machtiging (Telebankieren)"
|
460
|
+
MAPPING[642]="Doorlopende machtiging bedrijven (Telebankieren)"
|
461
|
+
MAPPING[643]="Doorlopende machtiging kansspelen (Telebankieren)"
|
462
|
+
MAPPING[644]="Eenmalige actiemachtiging (Telebankieren)"
|
463
|
+
MAPPING[646]="Incasso Sociaal Fonds Bouwnijverh. (Telebankieren)"
|
464
|
+
MAPPING[647]="Veilingincasso (geen terugboeking) (Telebankieren)"
|
465
|
+
MAPPING[648]="Telefonische machtiging eenmalig (Telebankieren)"
|
466
|
+
MAPPING[649]="Telefonische machtiging doorlopend (Telebankieren)"
|
467
|
+
MAPPING[654]="Overboeking van betaalrekening (Telebankieren)(periodiek)"
|
468
|
+
MAPPING[655]="Overboeking van betaalrekening (Telebankieren)"
|
469
|
+
MAPPING[656]="Overboeking van spaarrekening (Telebankieren)"
|
470
|
+
MAPPING[660]="Doorlopende machtiging algemeen (Secure FTP)"
|
471
|
+
MAPPING[661]="Eenmalige machtiging (Secure FTP)"
|
472
|
+
MAPPING[662]="Doorlopende machtiging bedrijven (Secure FTP)"
|
473
|
+
MAPPING[663]="Doorlopende machtiging kansspelen (Secure FTP)"
|
474
|
+
MAPPING[664]="Eenmalige actiemachtiging (Secure FTP)"
|
475
|
+
MAPPING[666]="Incasso Sociaal Fonds Bouwnijverh. (Secure FTP)"
|
476
|
+
MAPPING[667]="Veilingincasso (geen terugboeking) (Secure FTP)"
|
477
|
+
MAPPING[668]="Telefonische machtiging eenmalig (Secure FTP)"
|
478
|
+
MAPPING[669]="Telefonische machtiging doorlopend (Secure FTP)"
|
479
|
+
MAPPING[670]="Doorlopende machtiging algemeen (Internet Services)"
|
480
|
+
MAPPING[671]="Eenmalige machtiging (Internet Services)"
|
481
|
+
MAPPING[672]="Doorlopende machtiging bedrijven (Internet Services)"
|
482
|
+
MAPPING[673]="Doorlopende machtiging kansspelen (Internet Services)"
|
483
|
+
MAPPING[674]="Eenmalige actiemachtiging (Internet Services)"
|
484
|
+
MAPPING[676]="Incasso Sociaal Fonds Bouwnijverh. (Internet Services)"
|
485
|
+
MAPPING[677]="Veilingincasso (geen terugboeking) (Internet Services)"
|
486
|
+
MAPPING[678]="Telefonische machtiging eenmalig (Internet Services)"
|
487
|
+
MAPPING[679]="Telefonische machtiging doorlopend (Internet Services)"
|
488
|
+
MAPPING[684]="Telefonische machtiging kansspelen (Telebankieren)"
|
489
|
+
MAPPING[686]="Telefonische machtiging kansspelen (Secure FTP)"
|
490
|
+
MAPPING[687]="Telefonische machtiging kansspelen (Internet Services)"
|
491
|
+
MAPPING[688]="Overboeking van betaalrekening (Mobiel Bankieren)(periodiek)"
|
492
|
+
MAPPING[689]="Overboeking van betaalrekening (Mobiel Bankieren)"
|
493
|
+
MAPPING[690]="Overboeking van spaarrekening (Internetbankieren)"
|
494
|
+
MAPPING[691]="Overboeking van spaarrekening (Mobiel Bankieren)"
|
495
|
+
MAPPING[692]="Overboeking van spaarrekening (via bank)"
|
496
|
+
MAPPING[693]="Overboeking van lening (via bank)"
|
497
|
+
MAPPING[694]="Overboeking van consumptief krediet (via bank)"
|
498
|
+
MAPPING[695]="Overboeking van betaalrekening (Rabofoon)(periodiek)"
|
499
|
+
MAPPING[696]="Overboeking van betaalrekening (Rabofoon)"
|
500
|
+
MAPPING[697]="Overboeking van spaarrekening (Rabofoon)"
|
501
|
+
MAPPING[698]="Overboeking van betaalrekening (Internetbankieren)(periodiek)"
|
502
|
+
MAPPING[699]="Overboeking van betaalrekening (Internetbankieren)"
|
503
|
+
MAPPING[700]="Machtiging (Rabobank)"
|
504
|
+
MAPPING[701]="Storting travellercheques EUR <3.000"
|
505
|
+
MAPPING[702]="Storting travellercheques EUR 3.000-7.500"
|
506
|
+
MAPPING[703]="Storting travellercheques EUR 7.500-12.000"
|
507
|
+
MAPPING[704]="Storting travellercheques EUR >12.000"
|
508
|
+
MAPPING[705]="Stortingsverschil travellercheques"
|
509
|
+
MAPPING[706]="Bestelling eurobiljetten internet EUR <450"
|
510
|
+
MAPPING[707]="Bestelling eurobiljetten internet EUR >450"
|
511
|
+
MAPPING[708]="Bestelling vreemde valuta internet EUR <450"
|
512
|
+
MAPPING[709]="Bestelling vreemde valuta internet EUR >450"
|
513
|
+
MAPPING[710]="WereldBasis SHA"
|
514
|
+
MAPPING[711]="Bestelling eurobiljetten EUR <450"
|
515
|
+
MAPPING[712]="Bestelling eurobiljetten EUR 450-5.000"
|
516
|
+
MAPPING[713]="Bestelling eurobiljetten EUR 5.000-25.000"
|
517
|
+
MAPPING[714]="Bestelling eurobiljetten EUR >25.000"
|
518
|
+
MAPPING[716]="WereldBasis BEN"
|
519
|
+
MAPPING[717]="WereldBasis SHA handmatig"
|
520
|
+
MAPPING[719]="Bestelling vreemde valuta EUR <450"
|
521
|
+
MAPPING[720]="Bestelling vreemde valuta EUR 450-5.000"
|
522
|
+
MAPPING[721]="Bestelling vreemde valuta EUR 5.000-25.000"
|
523
|
+
MAPPING[722]="Bestelling vreemde valuta EUR >25.000"
|
524
|
+
MAPPING[723]="WereldBasis BEN handmatig"
|
525
|
+
MAPPING[724]="WereldBasis SHA spoed"
|
526
|
+
MAPPING[725]="WereldBasis SP SHA"
|
527
|
+
MAPPING[726]="WereldBasis SP BEN"
|
528
|
+
MAPPING[727]="WereldBasis SP SHA handmatig"
|
529
|
+
MAPPING[728]="WereldBasis SP BEN handmatig"
|
530
|
+
MAPPING[729]="WereldBasis SP SHA spoed"
|
531
|
+
MAPPING[730]="WereldBasis BEN spoed"
|
532
|
+
MAPPING[731]="WereldBasis SHA handmatig spoed"
|
533
|
+
MAPPING[732]="WereldBasis SP BEN spoed"
|
534
|
+
MAPPING[733]="WereldBasis SP SHA handmatig spoed"
|
535
|
+
MAPPING[734]="WereldBasis SP BEN handmatig spoed"
|
536
|
+
MAPPING[735]="WereldBasis SP OUR"
|
537
|
+
MAPPING[736]="WereldBasis SP OUR handmatig"
|
538
|
+
MAPPING[737]="WereldBasis BEN handmatig spoed"
|
539
|
+
MAPPING[738]="WereldPlus SHA"
|
540
|
+
MAPPING[739]="WereldBasis SP OUR spoed"
|
541
|
+
MAPPING[740]="WereldBasis SP OUR handmatig spoed"
|
542
|
+
MAPPING[744]="WereldPlus BEN"
|
543
|
+
MAPPING[745]="WereldPlus SHA handmatig"
|
544
|
+
MAPPING[751]="WereldPlus BEN handmatig"
|
545
|
+
MAPPING[752]="WereldPlus SHA spoed"
|
546
|
+
MAPPING[758]="WereldPlus BEN spoed"
|
547
|
+
MAPPING[759]="WereldPlus SHA handmatig spoed"
|
548
|
+
MAPPING[765]="WereldPlus BEN handmatig spoed"
|
549
|
+
MAPPING[766]="WereldPlus SHA overige instructies"
|
550
|
+
MAPPING[772]="WereldPlus BEN overige instructies"
|
551
|
+
MAPPING[773]="WereldPlus SHA handmatig overige instructies"
|
552
|
+
MAPPING[779]="WereldPlus BEN handmatig overige instructies"
|
553
|
+
MAPPING[780]="WereldPlus SHA spoed overige instructies"
|
554
|
+
MAPPING[786]="WereldPlus BEN spoed overige instructies"
|
555
|
+
MAPPING[787]="WereldPlus SHA handmatig spoed overige instructies"
|
556
|
+
MAPPING[793]="WereldPlus BEN handmatig spoed overige instructies"
|
557
|
+
MAPPING[800]="MiniTix entree"
|
558
|
+
MAPPING[801]="MiniTix loyalty uitgegeven punt"
|
559
|
+
MAPPING[802]="MiniTix loyalty betaling"
|
560
|
+
MAPPING[811]="Transactie MiniTix 1"
|
561
|
+
MAPPING[812]="Transactie MiniTix 2"
|
562
|
+
MAPPING[813]="Transactie MiniTix 3"
|
563
|
+
MAPPING[814]="Transactie MiniTix 4"
|
564
|
+
MAPPING[815]="Transactie MiniTix 5"
|
565
|
+
MAPPING[816]="Transactie MiniTix 6"
|
566
|
+
MAPPING[817]="Transactie MiniTix 7"
|
567
|
+
MAPPING[818]="Transactie MiniTix 8"
|
568
|
+
MAPPING[819]="Transactie MiniTix 9"
|
569
|
+
MAPPING[820]="Transactie MiniTix 10"
|
570
|
+
MAPPING[821]="Transactie MiniTix 11"
|
571
|
+
MAPPING[822]="Transactie MiniTix 12"
|
572
|
+
MAPPING[823]="Transactie MiniTix 13"
|
573
|
+
MAPPING[824]="Transactie MiniTix 14"
|
574
|
+
MAPPING[830]="Prepaid -1"
|
575
|
+
MAPPING[831]="Prepaid -2"
|
576
|
+
MAPPING[832]="Prepaid -3"
|
577
|
+
MAPPING[833]="Prepaid -4"
|
578
|
+
MAPPING[834]="Prepaid -5"
|
579
|
+
MAPPING[835]="Prepaid -6"
|
580
|
+
MAPPING[836]="Prepaid -7"
|
581
|
+
MAPPING[837]="Prepaid -8"
|
582
|
+
MAPPING[838]="Prepaid -9"
|
583
|
+
MAPPING[839]="Prepaid -10"
|
584
|
+
MAPPING[840]="Prepaid -11"
|
585
|
+
MAPPING[841]="Prepaid -12"
|
586
|
+
MAPPING[842]="Prepaid -13"
|
587
|
+
MAPPING[843]="Prepaid -14"
|
588
|
+
MAPPING[844]="Prepaid -15"
|
589
|
+
MAPPING[845]="Prepaid -16"
|
590
|
+
MAPPING[846]="Prepaid -17"
|
591
|
+
MAPPING[847]="Prepaid -18"
|
592
|
+
MAPPING[848]="Prepaid -19"
|
593
|
+
MAPPING[849]="Prepaid -20"
|
594
|
+
MAPPING[850]="Prepaid -21"
|
595
|
+
MAPPING[851]="Prepaid -22"
|
596
|
+
MAPPING[852]="Prepaid -23"
|
597
|
+
MAPPING[853]="Prepaid -24"
|
598
|
+
MAPPING[854]="Prepaid -25"
|
599
|
+
MAPPING[860]="Ingeleverde batch met cheques"
|
600
|
+
MAPPING[861]="Debitering buitenlandcheque"
|
601
|
+
MAPPING[862]="Creditering OGV cheque"
|
602
|
+
MAPPING[863]="Creditering incasso cheque"
|
603
|
+
MAPPING[864]="Creditering Quick cheque"
|
604
|
+
MAPPING[865]="Cheque op onze kas"
|
605
|
+
MAPPING[866]="Cheque onbetaald retour"
|
606
|
+
MAPPING[867]="Stoppayment bankcheque"
|
607
|
+
MAPPING[868]="Stoppayment particuliere cheque"
|
608
|
+
MAPPING[869]="Cheque op handelsbanken"
|
609
|
+
MAPPING[870]="WereldBasis OUR"
|
610
|
+
MAPPING[871]="WereldBasis OUR handmatig"
|
611
|
+
MAPPING[872]="WereldBasis OUR spoed"
|
612
|
+
MAPPING[873]="WereldBasis OUR handmatig spoed"
|
613
|
+
MAPPING[874]="WereldPlus OUR"
|
614
|
+
MAPPING[875]="WereldPlus OUR handmatig"
|
615
|
+
MAPPING[876]="WereldPlus OUR spoed"
|
616
|
+
MAPPING[877]="WereldPlus OUR handmatig spoed"
|
617
|
+
MAPPING[878]="WereldPlus OUR overige instructies"
|
618
|
+
MAPPING[879]="WereldPlus OUR handmatig overige instructies"
|
619
|
+
MAPPING[880]="WereldPlus OUR spoed overige instructies"
|
620
|
+
MAPPING[881]="WereldPlus OUR handmatig spoed overige instructies"
|
621
|
+
MAPPING[883]="Eurobetaling SHA handmatig"
|
622
|
+
MAPPING[884]="Eurobetaling BEN handmatig"
|
623
|
+
MAPPING[885]="Internetbankieren pro printopdracht"
|
624
|
+
MAPPING[886]="Internetbankieren pro iDEAL downloaden"
|
625
|
+
MAPPING[887]="Internetbankieren iDEAL downloaden"
|
626
|
+
MAPPING[888]="Internetbankieren pro iDEAL transactie informatie"
|
627
|
+
MAPPING[889]="Internetbankieren iDEAL transactie informatie"
|
628
|
+
MAPPING[890]="Internetbankieren pro downloaden"
|
629
|
+
MAPPING[891]="Internetbankieren pro raadplegen"
|
630
|
+
MAPPING[892]="Internetbankieren pro transactie informatie"
|
631
|
+
MAPPING[893]="Internetbankieren transactie informatie"
|
632
|
+
MAPPING[894]="MT942-berichten abonnement"
|
633
|
+
MAPPING[895]="MT942-berichten"
|
634
|
+
MAPPING[896]="Cashpool abonnement VV"
|
635
|
+
MAPPING[897]="Cashpool abonnement"
|
636
|
+
MAPPING[900]="Rabox"
|
637
|
+
MAPPING[901]="Telebankieren Extra abonnement"
|
638
|
+
MAPPING[902]="Telebankieren Extra entree"
|
639
|
+
MAPPING[903]="Telebankieren Extra pas"
|
640
|
+
MAPPING[904]="Telebankieren Extra abonnement buitenland"
|
641
|
+
MAPPING[905]="Telebankieren Extra entree buitenland"
|
642
|
+
MAPPING[908]="Telebankieren Extra entree incasso"
|
643
|
+
MAPPING[910]="Entree multibank"
|
644
|
+
MAPPING[911]="Telebankieren Extra entree rekeningbeheer"
|
645
|
+
MAPPING[912]="Telebankieren Extra entree autorisatie"
|
646
|
+
MAPPING[913]="Doorleveren rekeninginformatie voor ICM (SWIFT)"
|
647
|
+
MAPPING[914]="Telebankieren vrijgeven opdrachten entree"
|
648
|
+
MAPPING[915]="Abonnement multibank"
|
649
|
+
MAPPING[916]="Telebankieren Extra abonnement rekeningbeheer"
|
650
|
+
MAPPING[917]="Telebankieren Extra abonnement autorisatie"
|
651
|
+
MAPPING[918]="Telebankieren vrijgeven opdrachten abonnement"
|
652
|
+
MAPPING[919]="Rabo Alerts abonnement"
|
653
|
+
MAPPING[920]="Internetbankieren abonnement"
|
654
|
+
MAPPING[922]="Rabo Alerts e-mail"
|
655
|
+
MAPPING[923]="Rabo Alerts SMS"
|
656
|
+
MAPPING[924]="Rabo Mobiel Alerts e-mail"
|
657
|
+
MAPPING[925]="Rabo Bijschrijving Alerts"
|
658
|
+
MAPPING[926]="Rabo MobielBankieren abonnement"
|
659
|
+
MAPPING[927]="Abonnement Internet Services"
|
660
|
+
MAPPING[928]="Abonnement PIN/COMBI automaat (vast)"
|
661
|
+
MAPPING[929]="Abonnement CHIP-only automaat"
|
662
|
+
MAPPING[930]="Ombuiging bankgiro naar acceptgiro"
|
663
|
+
MAPPING[931]="Rekeninginformatie Rabo Swift entree"
|
664
|
+
MAPPING[933]="Rabo Mobiel abonnement"
|
665
|
+
MAPPING[934]="Internetbankieren downloaden"
|
666
|
+
MAPPING[935]="Rabo Mobiel Alerts abonnement"
|
667
|
+
MAPPING[936]="Rabo Mobiel Alerts SMS"
|
668
|
+
MAPPING[937]="Rabofoon bedrijven informatiekosten"
|
669
|
+
MAPPING[938]="Internetbankieren raadplegen"
|
670
|
+
MAPPING[939]="Rabo Mobiel Alerts SMS (leden)"
|
671
|
+
MAPPING[940]="Intra Rabo Cash Concentration (dagelijks)"
|
672
|
+
MAPPING[941]="Automatische Cash Concentration (dagelijks)"
|
673
|
+
MAPPING[942]="Automatische Cash Concentration (wekelijks)"
|
674
|
+
MAPPING[943]="Automatische Cash Concentration (maandelijks)"
|
675
|
+
MAPPING[944]="Abonnement PIN/COMBI automaat (mobiel)"
|
676
|
+
MAPPING[950]="Donatie van uw Rabobank Internetbankieren abonnement"
|
677
|
+
MAPPING[951]="Donatie van uw Rabobank (extra) Rekening-Courant"
|
678
|
+
MAPPING[952]="PIN betalingen Convenantkorting"
|
679
|
+
MAPPING[959]="Saldocompensatie"
|
680
|
+
MAPPING[960]="Beheerskosten"
|
681
|
+
MAPPING[961]="G-rekening"
|
682
|
+
MAPPING[962]="Samenstelling"
|
683
|
+
MAPPING[963]="Vreemde valuta rekening"
|
684
|
+
MAPPING[964]="Afsluitkosten Rabo Flex Krediet"
|
685
|
+
MAPPING[965]="Opening Rabo BetaalPakket"
|
686
|
+
MAPPING[966]="Opening Rabo BasisRekening"
|
687
|
+
MAPPING[967]="Rabo RiantPakket"
|
688
|
+
MAPPING[968]="Rabo RiantPakket met Rabocard"
|
689
|
+
MAPPING[969]="Rabo RiantPakket met Rabo GoldCard"
|
690
|
+
MAPPING[970]="Interhelp Extra"
|
691
|
+
MAPPING[974]="Rabo Ondernemers Pakket met startersvoordeel"
|
692
|
+
MAPPING[975]="Rekening-Courant"
|
693
|
+
MAPPING[976]="Extra Rekening-Courant"
|
694
|
+
MAPPING[977]="Rabo VerenigingsPakket"
|
695
|
+
MAPPING[978]="StudentenPakket"
|
696
|
+
MAPPING[979]="Rabo VerenigingsRekening"
|
697
|
+
MAPPING[980]="Betaalrekening"
|
698
|
+
MAPPING[981]="Betaalrekening met Europas"
|
699
|
+
MAPPING[982]="StudentenPakket met Rabocard"
|
700
|
+
MAPPING[984]="Rabo BasisRekening"
|
701
|
+
MAPPING[985]="Rabo BetaalPakket"
|
702
|
+
MAPPING[986]="Rabo TotaalPakket"
|
703
|
+
MAPPING[987]="Rabo TotaalPakket met Rabocard"
|
704
|
+
MAPPING[989]="Rabo OnlineKey"
|
705
|
+
MAPPING[990]="Rabopas"
|
706
|
+
MAPPING[991]="Jongerenpas"
|
707
|
+
MAPPING[992]="(Extra) Europas"
|
708
|
+
MAPPING[993]="(Extra) Rabocard"
|
709
|
+
MAPPING[994]="TopKidpas"
|
710
|
+
MAPPING[995]="(Extra) Rabo GoldCard"
|
711
|
+
MAPPING[996]="(Extra) Wereldpas"
|
712
|
+
MAPPING[997]="(Extra) Rabo BaseCard"
|
713
|
+
end
|
714
|
+
end
|