sepa_reason_codes 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/config.yml +39 -0
- data/.gitignore +9 -0
- data/.rspec +3 -0
- data/.rubocop.yml +4 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +53 -0
- data/LICENSE.txt +21 -0
- data/README.md +70 -0
- data/Rakefile +8 -0
- data/bin/console +8 -0
- data/bin/setup +8 -0
- data/lib/reason_codes.yml +1153 -0
- data/lib/sepa_reason_codes.rb +61 -0
- data/lib/sepa_reason_codes/version.rb +5 -0
- data/sepa_reason_codes.gemspec +32 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 25bec6cda6527936ce1e2818c6b0526bd979ac721a4c7d516686c24fbffd685f
|
4
|
+
data.tar.gz: c39f9d2634c38f54f816e8f0fca87b19606c6588c7fc47184a6ac9d4bdf5f4e0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 62cfaab2e911fa00bbde20e4166cccb5d3d89f59e3f5b4c1ec0955162495f8b4e01bf9dc9ba2acc78b42287f3656f57ff41bfa09c7840cd92c336aa3fc19485a
|
7
|
+
data.tar.gz: f767aa21959fed00112da2cd0eb3bb969b3c8614ef77d3332126254fae8bc841599f13ca2cf5e08c7693cc7b479fd94b87f6e8fbe55f33fa6327da56fa3943b6
|
@@ -0,0 +1,39 @@
|
|
1
|
+
version: 2.1
|
2
|
+
orbs:
|
3
|
+
ruby: circleci/ruby@0.1.2
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
docker:
|
8
|
+
- image: circleci/ruby:2.6.3-stretch-node
|
9
|
+
executor: ruby/default
|
10
|
+
steps:
|
11
|
+
- checkout
|
12
|
+
|
13
|
+
- restore_cache:
|
14
|
+
name: Restore bundle cache
|
15
|
+
keys:
|
16
|
+
- sepa-dependencies
|
17
|
+
|
18
|
+
- run:
|
19
|
+
name: Install Bundler
|
20
|
+
command: gem install bundler
|
21
|
+
|
22
|
+
- run:
|
23
|
+
name: Bundle Install
|
24
|
+
command: |
|
25
|
+
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
26
|
+
|
27
|
+
- save_cache:
|
28
|
+
name: Store bundle cache
|
29
|
+
paths:
|
30
|
+
- ./vendor/bundle
|
31
|
+
key: hermes-dependencies
|
32
|
+
|
33
|
+
- run:
|
34
|
+
name: Rubocop check
|
35
|
+
command: bundle exec rubocop
|
36
|
+
|
37
|
+
- run:
|
38
|
+
name: Test Suite
|
39
|
+
command: bundle exec rspec
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at sahil.gadimbay@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
sepa_reason_codes (1.0.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
ast (2.4.0)
|
10
|
+
diff-lcs (1.3)
|
11
|
+
parallel (1.19.1)
|
12
|
+
parser (2.7.1.3)
|
13
|
+
ast (~> 2.4.0)
|
14
|
+
rainbow (3.0.0)
|
15
|
+
rake (12.3.3)
|
16
|
+
rexml (3.2.4)
|
17
|
+
rspec (3.9.0)
|
18
|
+
rspec-core (~> 3.9.0)
|
19
|
+
rspec-expectations (~> 3.9.0)
|
20
|
+
rspec-mocks (~> 3.9.0)
|
21
|
+
rspec-core (3.9.2)
|
22
|
+
rspec-support (~> 3.9.3)
|
23
|
+
rspec-expectations (3.9.2)
|
24
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
25
|
+
rspec-support (~> 3.9.0)
|
26
|
+
rspec-mocks (3.9.1)
|
27
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
+
rspec-support (~> 3.9.0)
|
29
|
+
rspec-support (3.9.3)
|
30
|
+
rubocop (0.84.0)
|
31
|
+
parallel (~> 1.10)
|
32
|
+
parser (>= 2.7.0.1)
|
33
|
+
rainbow (>= 2.2.2, < 4.0)
|
34
|
+
rexml
|
35
|
+
rubocop-ast (>= 0.0.3)
|
36
|
+
ruby-progressbar (~> 1.7)
|
37
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
38
|
+
rubocop-ast (0.0.3)
|
39
|
+
parser (>= 2.7.0.1)
|
40
|
+
ruby-progressbar (1.10.1)
|
41
|
+
unicode-display_width (1.7.0)
|
42
|
+
|
43
|
+
PLATFORMS
|
44
|
+
ruby
|
45
|
+
|
46
|
+
DEPENDENCIES
|
47
|
+
rake
|
48
|
+
rspec
|
49
|
+
rubocop
|
50
|
+
sepa_reason_codes!
|
51
|
+
|
52
|
+
BUNDLED WITH
|
53
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Sahil Gadimbayli
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
# SepaReasonCodes
|
2
|
+
|
3
|
+
Welcome to SepaReasonCodes!
|
4
|
+
|
5
|
+
This is a absolutely minimal gem to work with SEPA Reason Codes.
|
6
|
+
|
7
|
+
`Reason Codes` are used in exception handling in SEPA Direct Debit (SDD). These codes
|
8
|
+
indicates reasons for why a transaction failure has happened. You may use this codes if you are parsing bank statements or handling SEPA transactions.
|
9
|
+
|
10
|
+
We have created a Ruby package where you may easily access and work with them.
|
11
|
+
|
12
|
+
If you want to know more about them, read more [here](https://www.europeanpaymentscouncil.eu/sites/default/files/kb/file/2018-09/EPC173-14%20v4.1%20Guidance%20on%20Reason%20Codes%20for%20SDD%20R-transactions.pdf)
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem 'sepa_reason_codes'
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle install
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install sepa_reason_codes
|
29
|
+
|
30
|
+
## Usage
|
31
|
+
|
32
|
+
No magic here! Just pass in the reason code and get back the struct with all required information.
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
reason_code = SepaReasonCodes.find("AC01")
|
36
|
+
|
37
|
+
puts reason_code.code # AC01
|
38
|
+
puts reason_code.iso_name # Incorrect Account Number
|
39
|
+
puts reason_code.description # Account number is invalid or missing.
|
40
|
+
puts reason_code.probable_status # declined
|
41
|
+
```
|
42
|
+
|
43
|
+
SepaReasonCodes does not have any dependency or magic. Just check `lib/reason_codes.yml` to see the list of all reason codes.
|
44
|
+
|
45
|
+
You can also retrieve all Reason Codes by doing:
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
SepaReasonCodes.all
|
49
|
+
```
|
50
|
+
|
51
|
+
which will return a collection of `ReasonCode` structs.
|
52
|
+
|
53
|
+
## Development
|
54
|
+
|
55
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
56
|
+
|
57
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
58
|
+
|
59
|
+
## Contributing
|
60
|
+
|
61
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ramblingcode/sepa_reason_codes. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ramblingcode/sepa_reason_codes/blob/master/CODE_OF_CONDUCT.md).
|
62
|
+
|
63
|
+
|
64
|
+
## License
|
65
|
+
|
66
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
67
|
+
|
68
|
+
## Code of Conduct
|
69
|
+
|
70
|
+
Everyone interacting in the SepaReasonCodes project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sepa_reason_codes/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,1153 @@
|
|
1
|
+
AC01:
|
2
|
+
code: AC01
|
3
|
+
iso_name: Incorrect Account Number
|
4
|
+
description: Account number is invalid or missing. Format of the account number
|
5
|
+
specified is not correct
|
6
|
+
probable_status: declined
|
7
|
+
AC02:
|
8
|
+
code: AC02
|
9
|
+
iso_name: Invalid Debtor Account Number
|
10
|
+
description: Debtor account number invalid or missing
|
11
|
+
probable_status: declined
|
12
|
+
AC03:
|
13
|
+
code: AC03
|
14
|
+
iso_name: Invalid Creditor Account Number
|
15
|
+
description: Creditor account number invalid or missing
|
16
|
+
probable_status: declined
|
17
|
+
AC04:
|
18
|
+
code: AC04
|
19
|
+
iso_name: Closed Account Number
|
20
|
+
description: Account number specified has been closed on the bank of account's books
|
21
|
+
probable_status: declined
|
22
|
+
AC05:
|
23
|
+
code: AC05
|
24
|
+
iso_name: Closed Debtor Account Number
|
25
|
+
description: Debtor account number closed
|
26
|
+
probable_status: declined
|
27
|
+
AC06:
|
28
|
+
code: AC06
|
29
|
+
iso_name: Blocked Account
|
30
|
+
description: Account specified is blocked, prohibiting posting of transactions against
|
31
|
+
it.
|
32
|
+
probable_status: declined
|
33
|
+
AC07:
|
34
|
+
code: AC07
|
35
|
+
iso_name: Closed Creditor Account Number
|
36
|
+
description: Creditor account number closed
|
37
|
+
probable_status: declined
|
38
|
+
AC08:
|
39
|
+
code: AC08
|
40
|
+
iso_name: Invalid Branch Code
|
41
|
+
description: Branch code is invalid or missing
|
42
|
+
probable_status: declined
|
43
|
+
AC09:
|
44
|
+
code: AC09
|
45
|
+
iso_name: Invalid Account Currency
|
46
|
+
description: Account currency is invalid or missing
|
47
|
+
probable_status: declined
|
48
|
+
AC10:
|
49
|
+
code: AC10
|
50
|
+
iso_name: Invalid Debtor Account Currency
|
51
|
+
description: Debtor account currency is invalid or missing
|
52
|
+
probable_status: declined
|
53
|
+
AC11:
|
54
|
+
code: AC11
|
55
|
+
iso_name: Invalid Creditor Account Currency
|
56
|
+
description: Creditor account currency is invalid or missing
|
57
|
+
probable_status: declined
|
58
|
+
AC12:
|
59
|
+
code: AC12
|
60
|
+
iso_name: Invalid Account Type
|
61
|
+
description: Account type missing or invalid. Generic usage if cannot specify between
|
62
|
+
group and payment information levels
|
63
|
+
probable_status: declined
|
64
|
+
AC13:
|
65
|
+
code: AC13
|
66
|
+
iso_name: Invalid Debtor Account Type
|
67
|
+
description: Debtor account type missing or invalid
|
68
|
+
probable_status: declined
|
69
|
+
AC14:
|
70
|
+
code: AC14
|
71
|
+
iso_name: Invalid Creditor Account Type
|
72
|
+
description: Creditor account type missing or invalid
|
73
|
+
probable_status: declined
|
74
|
+
AGNT:
|
75
|
+
code: AGNT
|
76
|
+
iso_name: Incorrect Agent
|
77
|
+
description: Agent in the payment workflow is incorrect
|
78
|
+
probable_status: error
|
79
|
+
AG01:
|
80
|
+
code: AG01
|
81
|
+
iso_name: Transaction Forbidden
|
82
|
+
description: Transaction forbidden on this type of account (formerly No Agreement)
|
83
|
+
probable_status: declined
|
84
|
+
AG02:
|
85
|
+
code: AG02
|
86
|
+
iso_name: Invalid Bank Operation Code
|
87
|
+
description: Bank Operation code specified in the message is not valid for receiver
|
88
|
+
probable_status: declined
|
89
|
+
AG03:
|
90
|
+
code: AG03
|
91
|
+
iso_name: Transaction Not Supported
|
92
|
+
description: Transaction type not supported/authorized on this account
|
93
|
+
probable_status: declined
|
94
|
+
AG04:
|
95
|
+
code: AG04
|
96
|
+
iso_name: Invalid Agent Country
|
97
|
+
description: Agent country code is missing or invalid. Generic usage if cannot specify
|
98
|
+
between group and payment information levels.
|
99
|
+
probable_status: declined
|
100
|
+
AG05:
|
101
|
+
code: AG05
|
102
|
+
iso_name: Invalid Debtor Agent Country
|
103
|
+
description: Debtor agent country code is missing or invalid
|
104
|
+
probable_status: declined
|
105
|
+
AG06:
|
106
|
+
code: AG06
|
107
|
+
iso_name: Invalid Creditor Agent Country
|
108
|
+
description: Creditor agent country code is missing or invalid
|
109
|
+
probable_status: declined
|
110
|
+
AG07:
|
111
|
+
code: AG07
|
112
|
+
iso_name: Unsuccessful Direct Debit
|
113
|
+
description: Debtor account cannot be debited for a generic reason. Code value may
|
114
|
+
be used in general purposes and as a replacement for AM04 if debtor bank does
|
115
|
+
not reveal its customer's insufficient funds for privacy reasons
|
116
|
+
probable_status: declined
|
117
|
+
AG08:
|
118
|
+
code: AG08
|
119
|
+
iso_name: Invalid Access Rights
|
120
|
+
description: Transaction failed due to invalid or missing user or access right
|
121
|
+
probable_status: declined
|
122
|
+
AM01:
|
123
|
+
code: AM01
|
124
|
+
iso_name: Zero Amount
|
125
|
+
description: Specified message amount is equal to zero
|
126
|
+
probable_status: declined
|
127
|
+
AM02:
|
128
|
+
code: AM02
|
129
|
+
iso_name: Not Allowed Amount
|
130
|
+
description: Specific transaction/message amount is greater than allowed maximum
|
131
|
+
probable_status: declined
|
132
|
+
AM03:
|
133
|
+
code: AM03
|
134
|
+
iso_name: Not Allowed Currency
|
135
|
+
description: Specified message amount is a non processable currency outside of existing
|
136
|
+
agreement
|
137
|
+
probable_status: declined
|
138
|
+
AM04:
|
139
|
+
code: AM04
|
140
|
+
iso_name: Insufficient Funds
|
141
|
+
description: Amount of funds available to cover specified message amount is insufficient.
|
142
|
+
probable_status: declined
|
143
|
+
AM05:
|
144
|
+
code: AM05
|
145
|
+
iso_name: Duplication
|
146
|
+
description: Duplication
|
147
|
+
probable_status: declined
|
148
|
+
AM06:
|
149
|
+
code: AM06
|
150
|
+
iso_name: Too Low Amount
|
151
|
+
description: Specified transaction amount is less than agreed minimum.
|
152
|
+
probable_status: declined
|
153
|
+
AM07:
|
154
|
+
code: AM07
|
155
|
+
iso_name: Blocked Amount
|
156
|
+
description: Amount of funds available to cover specified message amount is insufficient.
|
157
|
+
probable_status: declined
|
158
|
+
AM09:
|
159
|
+
code: AM09
|
160
|
+
iso_name: Wrong Amount
|
161
|
+
description: Amount received is not the amount agreed or expected
|
162
|
+
probable_status: declined
|
163
|
+
AM10:
|
164
|
+
code: AM10
|
165
|
+
iso_name: Invalid Control Sum
|
166
|
+
description: Sum of instructed amounts does not equal the control sum.
|
167
|
+
probable_status: declined
|
168
|
+
AM11:
|
169
|
+
code: AM11
|
170
|
+
iso_name: Invalid Transaction Currency
|
171
|
+
description: Transaction currency is invalid or missing
|
172
|
+
probable_status: declined
|
173
|
+
AM12:
|
174
|
+
code: AM12
|
175
|
+
iso_name: Invalid Amount
|
176
|
+
description: Amount is invalid or missing
|
177
|
+
probable_status: declined
|
178
|
+
AM13:
|
179
|
+
code: AM13
|
180
|
+
iso_name: Amount Exceeds Clearing System Limit
|
181
|
+
description: Transaction amount exceeds limits set by clearing system
|
182
|
+
probable_status: declined
|
183
|
+
AM14:
|
184
|
+
code: AM14
|
185
|
+
iso_name: Amount Exceeds Agreed Limit
|
186
|
+
description: Transaction amount exceeds limits agreed between bank and client
|
187
|
+
probable_status: declined
|
188
|
+
AM15:
|
189
|
+
code: AM15
|
190
|
+
iso_name: Amount Below Clearing System Minimum
|
191
|
+
description: Transaction amount below minimum set by clearing system
|
192
|
+
probable_status: declined
|
193
|
+
AM16:
|
194
|
+
code: AM16
|
195
|
+
iso_name: Invalid Group Control Sum
|
196
|
+
description: Control Sum at the Group level is invalid
|
197
|
+
probable_status: declined
|
198
|
+
AM17:
|
199
|
+
code: AM17
|
200
|
+
iso_name: Invalid Payment Info Control Sum
|
201
|
+
description: Control Sum at the Payment Information level is invalid
|
202
|
+
probable_status: declined
|
203
|
+
AM18:
|
204
|
+
code: AM18
|
205
|
+
iso_name: Invalid Number Of Transactions
|
206
|
+
description: Number of transactions is invalid or missing. Generic usage if cannot
|
207
|
+
specify between group and payment information levels.
|
208
|
+
probable_status: declined
|
209
|
+
AM19:
|
210
|
+
code: AM19
|
211
|
+
iso_name: Invalid Group Number of Transactions
|
212
|
+
description: Number of transactions at the Group level is invalid or missing
|
213
|
+
probable_status: declined
|
214
|
+
AM20:
|
215
|
+
code: AM20
|
216
|
+
iso_name: Invalid Payment Info Number Of Transactions
|
217
|
+
description: Number of transactions at the Payment Information level is invalid
|
218
|
+
probable_status: declined
|
219
|
+
AM21:
|
220
|
+
code: AM21
|
221
|
+
iso_name: Limit Exceeded
|
222
|
+
description: Transaction amount exceeds limits agreed between bank and client.
|
223
|
+
probable_status: declined
|
224
|
+
ARDT:
|
225
|
+
code: ARDT
|
226
|
+
iso_name: "-"
|
227
|
+
description: Transaction has already been returned
|
228
|
+
probable_status: declined
|
229
|
+
BE01:
|
230
|
+
code: BE01
|
231
|
+
iso_name: Inconsistent With End Customer
|
232
|
+
description: Identification of end customer is not consistent with associated account
|
233
|
+
number (formerly Creditor Consistency).
|
234
|
+
probable_status: declined
|
235
|
+
BE04:
|
236
|
+
code: BE04
|
237
|
+
iso_name: Missing Creditor Address
|
238
|
+
description: Specification of creditor's address, which is required for payment,
|
239
|
+
is missing/not correct (formerly Incorrect Creditor Address)
|
240
|
+
probable_status: declined
|
241
|
+
BE05:
|
242
|
+
code: BE05
|
243
|
+
iso_name: Unrecognized Initiating Party
|
244
|
+
description: Party who initiated the message is not recognized by the end customer
|
245
|
+
Identifier of the Creditor incorrect
|
246
|
+
probable_status: declined
|
247
|
+
BE06:
|
248
|
+
code: BE06
|
249
|
+
iso_name: Unknown End Customer
|
250
|
+
description: End customer specified is not known at associated Sort/National Bank
|
251
|
+
Code or does no longer exist in the books
|
252
|
+
probable_status: declined
|
253
|
+
BE07:
|
254
|
+
code: BE07
|
255
|
+
iso_name: Missing Debtor Address
|
256
|
+
description: Specification of debtor's address, which is required for payment, is
|
257
|
+
missing/not correct.
|
258
|
+
probable_status: declined
|
259
|
+
BE08:
|
260
|
+
code: BE08
|
261
|
+
iso_name: Missing Debtor Name
|
262
|
+
description: Debtor name is missing
|
263
|
+
probable_status: declined
|
264
|
+
BE09:
|
265
|
+
code: BE09
|
266
|
+
iso_name: Invalid Country
|
267
|
+
description: Country code is missing or Invalid. Generic usage if cannot specifically
|
268
|
+
identify debtor or creditor
|
269
|
+
probable_status: declined
|
270
|
+
BE10:
|
271
|
+
code: BE10
|
272
|
+
iso_name: Invalid Debtor Country
|
273
|
+
description: Debtor country code is missing or invalid
|
274
|
+
probable_status: declined
|
275
|
+
BE11:
|
276
|
+
code: BE11
|
277
|
+
iso_name: Invalid Creditor Country
|
278
|
+
description: Creditor country code is missing or invalid
|
279
|
+
probable_status: declined
|
280
|
+
BE12:
|
281
|
+
code: BE12
|
282
|
+
iso_name: Invalid Country Of Residence
|
283
|
+
description: Country code of residence is missing or Invalid. Generic usage if cannot
|
284
|
+
specifically identify debtor or creditor
|
285
|
+
probable_status: declined
|
286
|
+
BE13:
|
287
|
+
code: BE13
|
288
|
+
iso_name: Invalid Debtor Country Of Residence
|
289
|
+
description: Country code of debtor's residence is missing or Invalid
|
290
|
+
probable_status: declined
|
291
|
+
BE14:
|
292
|
+
code: BE14
|
293
|
+
iso_name: Invalid Creditor Country Of Residence
|
294
|
+
description: Country code of creditor's residence is missing or Invalid
|
295
|
+
probable_status: declined
|
296
|
+
BE15:
|
297
|
+
code: BE15
|
298
|
+
iso_name: Invalid Identification Code
|
299
|
+
description: Identification code missing or invalid. Generic usage if cannot specifically
|
300
|
+
identify debtor or creditor.
|
301
|
+
probable_status: declined
|
302
|
+
BE16:
|
303
|
+
code: BE16
|
304
|
+
iso_name: Invalid Debtor Identification Code
|
305
|
+
description: Debtor or Ultimate Debtor identification code missing or invalid
|
306
|
+
probable_status: declined
|
307
|
+
BE17:
|
308
|
+
code: BE17
|
309
|
+
iso_name: Invalid Creditor Identification Code
|
310
|
+
description: Creditor or Ultimate Creditor identification code missing or invalid
|
311
|
+
probable_status: declined
|
312
|
+
BE18:
|
313
|
+
code: BE18
|
314
|
+
iso_name: Invalid Contact Details
|
315
|
+
description: Contact details missing or invalid
|
316
|
+
probable_status: declined
|
317
|
+
BE19:
|
318
|
+
code: BE19
|
319
|
+
iso_name: Invalid Charge Bearer Code
|
320
|
+
description: Charge bearer code for transaction type is invalid
|
321
|
+
probable_status: declined
|
322
|
+
BE20:
|
323
|
+
code: BE20
|
324
|
+
iso_name: Invalid Name Length
|
325
|
+
description: Name length exceeds local rules for payment type.
|
326
|
+
probable_status: declined
|
327
|
+
BE21:
|
328
|
+
code: BE21
|
329
|
+
iso_name: Missing Name
|
330
|
+
description: Name missing or invalid. Generic usage if cannot specifically identify
|
331
|
+
debtor or creditor.
|
332
|
+
probable_status: declined
|
333
|
+
BE22:
|
334
|
+
code: BE22
|
335
|
+
iso_name: Missing Creditor Name
|
336
|
+
description: Creditor name is missing
|
337
|
+
probable_status: declined
|
338
|
+
CNOR:
|
339
|
+
code: CNOR
|
340
|
+
iso_name: Creditor bank is not registered
|
341
|
+
description: Creditor bank is not registered under this BIC in the CSM
|
342
|
+
probable_status: declined
|
343
|
+
CURR:
|
344
|
+
code: CURR
|
345
|
+
iso_name: Incorrect Currency
|
346
|
+
description: Currency of the payment is incorrect
|
347
|
+
probable_status: declined
|
348
|
+
CUST:
|
349
|
+
code: CUST
|
350
|
+
iso_name: Requested By Customer
|
351
|
+
description: Cancellation requested by the Debtor
|
352
|
+
probable_status: chargeback
|
353
|
+
CUTA:
|
354
|
+
code: CUTA
|
355
|
+
iso_name: Cancel Upon Unable To Apply
|
356
|
+
description: Recall on request for an investigation
|
357
|
+
probable_status: chargeback
|
358
|
+
DS01:
|
359
|
+
code: DS01
|
360
|
+
iso_name: Electronic Signatures Correct
|
361
|
+
description: The electronic signature(s) is/are correct
|
362
|
+
probable_status: declined
|
363
|
+
DS02:
|
364
|
+
code: DS02
|
365
|
+
iso_name: Order Cancelled
|
366
|
+
description: An authorized user has cancelled the order
|
367
|
+
probable_status: declined
|
368
|
+
DS03:
|
369
|
+
code: DS03
|
370
|
+
iso_name: Order Not Cancelled
|
371
|
+
description: The user’s attempt to cancel the order was not successful
|
372
|
+
probable_status: declined
|
373
|
+
DS04:
|
374
|
+
code: DS04
|
375
|
+
iso_name: Order Rejected
|
376
|
+
description: The order was rejected by the bank side (for reasons concerning content)
|
377
|
+
probable_status: declined
|
378
|
+
DS05:
|
379
|
+
code: DS05
|
380
|
+
iso_name: Order Forwarded For Post processing
|
381
|
+
description: The order was correct and could be forwarded for post processing
|
382
|
+
probable_status: declined
|
383
|
+
DS06:
|
384
|
+
code: DS06
|
385
|
+
iso_name: Transfer Order
|
386
|
+
description: The order was transferred to VEU
|
387
|
+
probable_status: declined
|
388
|
+
DS07:
|
389
|
+
code: DS07
|
390
|
+
iso_name: Processing OK
|
391
|
+
description: All actions concerning the order could be done by the EBICS bank server
|
392
|
+
probable_status: declined
|
393
|
+
DS08:
|
394
|
+
code: DS08
|
395
|
+
iso_name: Decompression ERROR
|
396
|
+
description: The decompression of the file was not successful
|
397
|
+
probable_status: declined
|
398
|
+
DS09:
|
399
|
+
code: DS09
|
400
|
+
iso_name: Decryption ERROR
|
401
|
+
description: The decryption of the file was not successful
|
402
|
+
probable_status: declined
|
403
|
+
DS10:
|
404
|
+
code: DS10
|
405
|
+
iso_name: Signer 1 Certificate Revoked
|
406
|
+
description: The certificate is revoked for the first signer.
|
407
|
+
probable_status: declined
|
408
|
+
DS11:
|
409
|
+
code: DS11
|
410
|
+
iso_name: Signer 1 Certificate Not Valid
|
411
|
+
description: The certificate is not valid (revoked or not active) for the first
|
412
|
+
signer.
|
413
|
+
probable_status: declined
|
414
|
+
DS12:
|
415
|
+
code: DS12
|
416
|
+
iso_name: Incorrect Signer 1 Certificate
|
417
|
+
description: The certificate is not present for the first signer.
|
418
|
+
probable_status: declined
|
419
|
+
DS13:
|
420
|
+
code: DS13
|
421
|
+
iso_name: Signer Certification Authority Signer 1 Not Valid
|
422
|
+
description: The authority of signer certification sending the certificate is unknown
|
423
|
+
for the first signer.
|
424
|
+
probable_status: declined
|
425
|
+
DS14:
|
426
|
+
code: DS14
|
427
|
+
iso_name: User Does Not Exist
|
428
|
+
description: The user is unknown on the server
|
429
|
+
probable_status: declined
|
430
|
+
DS15:
|
431
|
+
code: DS15
|
432
|
+
iso_name: Identical Signature Found
|
433
|
+
description: The same signature has already been sent to the bank
|
434
|
+
probable_status: declined
|
435
|
+
DS16:
|
436
|
+
code: DS16
|
437
|
+
iso_name: Public Key Version Incorrect
|
438
|
+
description: The public key version is not correct. This code is returned when a
|
439
|
+
customer sends signature files to the financial institution after conversion from
|
440
|
+
an older program version (old ES format) to a new program version (new ES format)
|
441
|
+
without having carried out initialization with regard to a public key change.
|
442
|
+
probable_status: declined
|
443
|
+
DS17:
|
444
|
+
code: DS17
|
445
|
+
iso_name: Different Order Data In Signatures
|
446
|
+
description: Order data and signatures don’t match
|
447
|
+
probable_status: declined
|
448
|
+
DS18:
|
449
|
+
code: DS18
|
450
|
+
iso_name: Repeat Order
|
451
|
+
description: File cannot be tested; the complete order has to be repeated. This
|
452
|
+
code is returned in the event of a malfunction during the signature check, e.g.
|
453
|
+
not enough storage space.
|
454
|
+
probable_status: declined
|
455
|
+
DS19:
|
456
|
+
code: DS19
|
457
|
+
iso_name: Electronic Signature Rights Insufficient
|
458
|
+
description: The user’s rights (concerning his signature) are insufficient to execute
|
459
|
+
the order
|
460
|
+
probable_status: declined
|
461
|
+
DS20:
|
462
|
+
code: DS20
|
463
|
+
iso_name: Signer 2 Certificate Revoked
|
464
|
+
description: The certificate is revoked for the second signer
|
465
|
+
probable_status: declined
|
466
|
+
DS21:
|
467
|
+
code: DS21
|
468
|
+
iso_name: Signer 2 Certificate Not Valid
|
469
|
+
description: The certificate is not valid (revoked or not active) for the second
|
470
|
+
signer
|
471
|
+
probable_status: declined
|
472
|
+
DS22:
|
473
|
+
code: DS22
|
474
|
+
iso_name: Incorrect Signer 2 Certificate
|
475
|
+
description: The certificate is not present for the second signer
|
476
|
+
probable_status: declined
|
477
|
+
DS23:
|
478
|
+
code: DS23
|
479
|
+
iso_name: Signer Certification Authority Signer 2 Not Valid
|
480
|
+
description: The authority of signer certification sending the certificate is unknown
|
481
|
+
for the second signer
|
482
|
+
probable_status: declined
|
483
|
+
DS24:
|
484
|
+
code: DS24
|
485
|
+
iso_name: Waiting Time Expired
|
486
|
+
description: Waiting time expired due to incomplete order
|
487
|
+
probable_status: declined
|
488
|
+
DS25:
|
489
|
+
code: DS25
|
490
|
+
iso_name: Order File Deleted
|
491
|
+
description: The order file was deleted by the bank server (for multiple reasons)
|
492
|
+
probable_status: declined
|
493
|
+
DS26:
|
494
|
+
code: DS26
|
495
|
+
iso_name: User Signed Multiple Times
|
496
|
+
description: The same user has signed multiple times
|
497
|
+
probable_status: declined
|
498
|
+
DS27:
|
499
|
+
code: DS27
|
500
|
+
iso_name: User Not Yet Activated
|
501
|
+
description: The user is not yet activated (technically)
|
502
|
+
probable_status: declined
|
503
|
+
DS0A:
|
504
|
+
code: DS0A
|
505
|
+
iso_name: Data Sign Requested
|
506
|
+
description: Data Signature is required.
|
507
|
+
probable_status: declined
|
508
|
+
DS0B:
|
509
|
+
code: DS0B
|
510
|
+
iso_name: Unknown Data Sign Format
|
511
|
+
description: Data signature for the format is not available or invalid.
|
512
|
+
probable_status: declined
|
513
|
+
DS0C:
|
514
|
+
code: DS0C
|
515
|
+
iso_name: Signer Certificate Revoked
|
516
|
+
description: The signer certificate is revoked.
|
517
|
+
probable_status: declined
|
518
|
+
DS0D:
|
519
|
+
code: DS0D
|
520
|
+
iso_name: Signer Certificate Not Valid
|
521
|
+
description: The signer certificate is not valid (revoked or not active).
|
522
|
+
probable_status: declined
|
523
|
+
DS0E:
|
524
|
+
code: DS0E
|
525
|
+
iso_name: Incorrect Signer Certificate
|
526
|
+
description: The signer certificate is not present.
|
527
|
+
probable_status: declined
|
528
|
+
DS0F:
|
529
|
+
code: DS0F
|
530
|
+
iso_name: Signer Certification Authority Signer Not Valid
|
531
|
+
description: The authority of the signer certification sending the certificate is
|
532
|
+
unknown.
|
533
|
+
probable_status: declined
|
534
|
+
DS0G:
|
535
|
+
code: DS0G
|
536
|
+
iso_name: Not Allowed Payment
|
537
|
+
description: Signer is not allowed to sign this operation type.
|
538
|
+
probable_status: declined
|
539
|
+
DS0H:
|
540
|
+
code: DS0H
|
541
|
+
iso_name: Not Allowed Account
|
542
|
+
description: Signer is not allowed to sign for this account.
|
543
|
+
probable_status: declined
|
544
|
+
DS0K:
|
545
|
+
code: DS0K
|
546
|
+
iso_name: Not Allowed Number Of Transaction
|
547
|
+
description: The number of transaction is over the number allowed for this signer.
|
548
|
+
probable_status: declined
|
549
|
+
DNOR:
|
550
|
+
code: DNOR
|
551
|
+
iso_name: Debtor bank is not registered
|
552
|
+
description: Debtor bank is not registered under this BIC in the CSM
|
553
|
+
probable_status: declined
|
554
|
+
DT01:
|
555
|
+
code: DT01
|
556
|
+
iso_name: Invalid Date Range
|
557
|
+
description: The date is not within the time frame foreseen by other CSMs
|
558
|
+
or not in the time corridor of the SEPA clearer.
|
559
|
+
probable_status: error
|
560
|
+
DT02:
|
561
|
+
code: DT02
|
562
|
+
iso_name: Invalid Creation Date
|
563
|
+
description: Invalid creation date and time in Group Header (eg, historic date)
|
564
|
+
probable_status: error
|
565
|
+
DT03:
|
566
|
+
code: DT03
|
567
|
+
iso_name: Invalid Non Processing Date
|
568
|
+
description: Invalid non-bank processing date (eg, weekend or local public holiday)
|
569
|
+
probable_status: error
|
570
|
+
DT04:
|
571
|
+
code: DT04
|
572
|
+
iso_name: Future Date Not Supported
|
573
|
+
description: Future date not supported
|
574
|
+
probable_status: error
|
575
|
+
DT05:
|
576
|
+
code: DT05
|
577
|
+
iso_name: Invalid Cut Off Date
|
578
|
+
description: Associated message, payment information block or transaction was received
|
579
|
+
after agreed processing cutoff date, i.e., date in the past.
|
580
|
+
probable_status: error
|
581
|
+
DT06:
|
582
|
+
code: DT06
|
583
|
+
iso_name: Execution Date Changed
|
584
|
+
description: Execution Date has been modified in order for transaction to be processed
|
585
|
+
probable_status: declined
|
586
|
+
DU01:
|
587
|
+
code: DU01
|
588
|
+
iso_name: Duplicate Message ID
|
589
|
+
description: Message Identification is not unique.
|
590
|
+
probable_status: declined
|
591
|
+
DU02:
|
592
|
+
code: DU02
|
593
|
+
iso_name: Duplicate Payment Information ID
|
594
|
+
description: Payment Information Block is not unique.
|
595
|
+
probable_status: declined
|
596
|
+
DU03:
|
597
|
+
code: DU03
|
598
|
+
iso_name: Duplicate Transaction
|
599
|
+
description: Transaction is not unique.
|
600
|
+
probable_status: declined
|
601
|
+
DU04:
|
602
|
+
code: DU04
|
603
|
+
iso_name: Duplicate End To End ID
|
604
|
+
description: End To End ID is not unique.
|
605
|
+
probable_status: declined
|
606
|
+
DU05:
|
607
|
+
code: DU05
|
608
|
+
iso_name: Duplicate Instruction ID
|
609
|
+
description: Instruction ID is not unique
|
610
|
+
probable_status: declined
|
611
|
+
DUPL:
|
612
|
+
code: DUPL
|
613
|
+
iso_name: Duplicate Payment
|
614
|
+
description: Payment is a duplicate of another payment
|
615
|
+
probable_status: chargeback
|
616
|
+
ED01:
|
617
|
+
code: ED01
|
618
|
+
iso_name: Correspondent Bank Not Possible
|
619
|
+
description: Correspondent bank not possible.
|
620
|
+
probable_status: declined
|
621
|
+
ED03:
|
622
|
+
code: ED03
|
623
|
+
iso_name: Balance Info Request
|
624
|
+
description: Balance of payments complementary info is requested
|
625
|
+
probable_status: declined
|
626
|
+
ED05:
|
627
|
+
code: ED05
|
628
|
+
iso_name: Settlement Failed
|
629
|
+
description: Settlement of the transaction has failed.
|
630
|
+
probable_status: declined
|
631
|
+
EMVL:
|
632
|
+
code: EMVL
|
633
|
+
iso_name: EMV Liability Shift
|
634
|
+
description: The card payment is fraudulent and was not processed with EMV technology
|
635
|
+
for an EMV card.
|
636
|
+
probable_status: declined
|
637
|
+
FOCR:
|
638
|
+
code: FOCR
|
639
|
+
iso_name: Following Cancellation Request
|
640
|
+
description: Return following a cancellation request
|
641
|
+
probable_status: declined
|
642
|
+
FF01:
|
643
|
+
code: FF01
|
644
|
+
iso_name: Syntax ERROR
|
645
|
+
description: File Format incomplete or invalid Transaction Code incorrect (SDD)
|
646
|
+
probable_status: error
|
647
|
+
FF02:
|
648
|
+
code: FF02
|
649
|
+
iso_name: Syntax ERROR
|
650
|
+
description: Syntax ERROR reason is provided as narrative information in the additional
|
651
|
+
reason information.
|
652
|
+
probable_status: error
|
653
|
+
FF03:
|
654
|
+
code: FF03
|
655
|
+
iso_name: Invalid Payment Type Information
|
656
|
+
description: Payment Type Information is missing or invalid. Generic usage if cannot
|
657
|
+
specify Service Level or Local Instrument code
|
658
|
+
probable_status: declined
|
659
|
+
FF04:
|
660
|
+
code: FF04
|
661
|
+
iso_name: Invalid Service Level Code
|
662
|
+
description: Service Level code is missing or invalid
|
663
|
+
probable_status: error
|
664
|
+
FF05:
|
665
|
+
code: FF05
|
666
|
+
iso_name: Invalid Local Instrument Code
|
667
|
+
description: Local Instrument code is missing or invalid Direct Debit Type incorrect
|
668
|
+
probable_status: error
|
669
|
+
FF06:
|
670
|
+
code: FF06
|
671
|
+
iso_name: Invalid CATEGORY Purpose Code
|
672
|
+
description: CATEGORY Purpose code is missing or invalid
|
673
|
+
probable_status: error
|
674
|
+
FF07:
|
675
|
+
code: FF07
|
676
|
+
iso_name: Invalid Purpose
|
677
|
+
description: Purpose is missing or invalid
|
678
|
+
probable_status: error
|
679
|
+
FF08:
|
680
|
+
code: FF08
|
681
|
+
iso_name: Invalid End To End Id
|
682
|
+
description: End to End Id missing or invalid
|
683
|
+
probable_status: error
|
684
|
+
FF09:
|
685
|
+
code: FF09
|
686
|
+
iso_name: Invalid Cheque Number
|
687
|
+
description: Cheque number missing or invalid
|
688
|
+
probable_status: error
|
689
|
+
FF10:
|
690
|
+
code: FF10
|
691
|
+
iso_name: Bank System Processing ERROR
|
692
|
+
description: File or transaction cannot be processed due to technical issues at
|
693
|
+
the bank side
|
694
|
+
probable_status: error
|
695
|
+
FRAD:
|
696
|
+
code: FRAD
|
697
|
+
iso_name: "-"
|
698
|
+
description: Payment is made with fraudulent intent.
|
699
|
+
probable_status: declined
|
700
|
+
ID01:
|
701
|
+
code: ID01
|
702
|
+
iso_name: Correspond-ing Original File Still Not Sent
|
703
|
+
description: Signature file was sent to the bank but the corresponding original
|
704
|
+
file has not been sent yet.
|
705
|
+
probable_status: declined
|
706
|
+
LEGL:
|
707
|
+
code: LEGL
|
708
|
+
iso_name: Legal Decision
|
709
|
+
description: Legal reason
|
710
|
+
probable_status: declined
|
711
|
+
MD01:
|
712
|
+
code: MD01
|
713
|
+
iso_name: No Mandate
|
714
|
+
description: No Mandate
|
715
|
+
probable_status: declined
|
716
|
+
MD02:
|
717
|
+
code: MD02
|
718
|
+
iso_name: Missing Mandatory Information In Mandate
|
719
|
+
description: Mandate related information data required by the scheme is missing.
|
720
|
+
probable_status: declined
|
721
|
+
MD03:
|
722
|
+
code: MD03
|
723
|
+
iso_name: Invalid File Format For Other Reason Than Grouping Indicator
|
724
|
+
description: File format invalid (submitter must adapt the structure of the format and resubmit)
|
725
|
+
probable_status: declined
|
726
|
+
MD05:
|
727
|
+
code: MD05
|
728
|
+
iso_name: Collection Not Due
|
729
|
+
description: Creditor or creditor's agent should not have collected the direct debit
|
730
|
+
probable_status: declined
|
731
|
+
MD06:
|
732
|
+
code: MD06
|
733
|
+
iso_name: Refund Requested By End Customer
|
734
|
+
description: Return of funds requested by end customer
|
735
|
+
probable_status: chargeback
|
736
|
+
MD07:
|
737
|
+
code: MD07
|
738
|
+
iso_name: End Customer Deceased
|
739
|
+
description: End customer is deceased.
|
740
|
+
probable_status: declined
|
741
|
+
MD08:
|
742
|
+
code: MD08
|
743
|
+
iso_name: No Mandate Service By Agent
|
744
|
+
description: Receiving agent does not offer specified Mandate services
|
745
|
+
probable_status: declined
|
746
|
+
MD09:
|
747
|
+
code: MD09
|
748
|
+
iso_name: No Mandate Service On Customer
|
749
|
+
description: Account is not open to specified Mandates services
|
750
|
+
probable_status: declined
|
751
|
+
MD10:
|
752
|
+
code: MD10
|
753
|
+
iso_name: No Mandate Service For Specified
|
754
|
+
description: Account is not open to specified Mandates services for this particular
|
755
|
+
creditor
|
756
|
+
probable_status: declined
|
757
|
+
MD11:
|
758
|
+
code: MD11
|
759
|
+
iso_name: Unrecognised Agent
|
760
|
+
description: Agent to whom the message needs to be forwarded cannot be located
|
761
|
+
probable_status: declined
|
762
|
+
MD12:
|
763
|
+
code: MD12
|
764
|
+
iso_name: Not Unique Mandate Reference
|
765
|
+
description: Mandate identification is not unique to the creditor
|
766
|
+
probable_status: declined
|
767
|
+
MD13:
|
768
|
+
code: MD13
|
769
|
+
iso_name: Incorrect Customer Authentication
|
770
|
+
description: There is a problem with the customer authentication
|
771
|
+
probable_status: declined
|
772
|
+
MD14:
|
773
|
+
code: MD14
|
774
|
+
iso_name: Incorrect Agent
|
775
|
+
description: Agent in the payment workflow is incorrect
|
776
|
+
probable_status: declined
|
777
|
+
MD15:
|
778
|
+
code: MD15
|
779
|
+
iso_name: Incorrect Currency
|
780
|
+
description: Currency of the transaction is incorrect
|
781
|
+
probable_status: declined
|
782
|
+
MD16:
|
783
|
+
code: MD16
|
784
|
+
iso_name: Requested By Customer
|
785
|
+
description: Cancellation/amendment requested by the debtor
|
786
|
+
probable_status: declined
|
787
|
+
MD17:
|
788
|
+
code: MD17
|
789
|
+
iso_name: Requested By Initiating Party
|
790
|
+
description: Cancellation/amendment requested by the creditor
|
791
|
+
probable_status: declined
|
792
|
+
MS02:
|
793
|
+
code: MS02
|
794
|
+
iso_name: Not Specified Reason, Customer Generated
|
795
|
+
description: Reason has not been specified by end customer
|
796
|
+
probable_status: declined
|
797
|
+
MS03:
|
798
|
+
code: MS03
|
799
|
+
iso_name: Not Specified Reason, Agent Generated
|
800
|
+
description: Reason has not been specified by agent.
|
801
|
+
probable_status: declined
|
802
|
+
NARR:
|
803
|
+
code: NARR
|
804
|
+
iso_name: Narrative
|
805
|
+
description: Reason is provided as narrative information in the additional reason
|
806
|
+
information.
|
807
|
+
probable_status: declined
|
808
|
+
NOAS:
|
809
|
+
code: NOAS
|
810
|
+
iso_name: No Answer From Customer
|
811
|
+
description: No response from beneficiary
|
812
|
+
probable_status: declined
|
813
|
+
NOOR:
|
814
|
+
code: NOOR
|
815
|
+
iso_name: No Original Transaction Received
|
816
|
+
description: Original credit transfer was never received
|
817
|
+
probable_status: declined
|
818
|
+
PART:
|
819
|
+
code: PART
|
820
|
+
iso_name: "-"
|
821
|
+
description: Partial rejection of a bulk
|
822
|
+
probable_status: declined
|
823
|
+
PINL:
|
824
|
+
code: PINL
|
825
|
+
iso_name: PIN Liability Shift
|
826
|
+
description: The card payment is fraudulent (lost and stolen fraud) and was processed
|
827
|
+
as EMV transaction without PIN verification
|
828
|
+
probable_status: declined
|
829
|
+
PY01:
|
830
|
+
code: PY01
|
831
|
+
iso_name: "-"
|
832
|
+
description: The transaction cannot be processed because the beneficiary and/or the instructing bank
|
833
|
+
is not registered with the EBA as a direct or indirect participant. (Initiator SEPA Clearer).
|
834
|
+
probable_status: declined
|
835
|
+
RC01:
|
836
|
+
code: RC01
|
837
|
+
iso_name: Bank Identifier Incorrect
|
838
|
+
description: Bank Identifier code specified in the message has an incorrect format
|
839
|
+
(formerly Incorrect Format For Routing Code)
|
840
|
+
probable_status: declined
|
841
|
+
RC02:
|
842
|
+
code: RC02
|
843
|
+
iso_name: Invalid Bank Identifier
|
844
|
+
description: Bank identifier is invalid or missing. Generic usage if cannot specify
|
845
|
+
between debit or credit account
|
846
|
+
probable_status: declined
|
847
|
+
RC03:
|
848
|
+
code: RC03
|
849
|
+
iso_name: Invalid Debtor Bank Identifier
|
850
|
+
description: Debtor bank identifier is invalid or missing
|
851
|
+
probable_status: declined
|
852
|
+
RC04:
|
853
|
+
code: RC04
|
854
|
+
iso_name: Invalid Creditor Bank Identifier
|
855
|
+
description: Creditor bank identifier is invalid or missing
|
856
|
+
probable_status: declined
|
857
|
+
RC05:
|
858
|
+
code: RC05
|
859
|
+
iso_name: Invalid BIC Identifier
|
860
|
+
description: BIC identifier is invalid or missing. Generic usage if cannot specify
|
861
|
+
between debit and credit account.
|
862
|
+
probable_status: declined
|
863
|
+
RC06:
|
864
|
+
code: RC06
|
865
|
+
iso_name: Invalid Debtor BIC Identifier
|
866
|
+
description: Debtor BIC identifier is invalid or missing
|
867
|
+
probable_status: declined
|
868
|
+
RC07:
|
869
|
+
code: RC07
|
870
|
+
iso_name: Invalid Creditor BIC Identifier
|
871
|
+
description: Creditor BIC identifier is invalid or missing
|
872
|
+
probable_status: declined
|
873
|
+
RC08:
|
874
|
+
code: RC08
|
875
|
+
iso_name: Invalid Clearing System Member Identifier
|
876
|
+
description: Clearing System Memberidentifier is invalid or missing. Generic usage
|
877
|
+
if cannot specify between debit or credit account
|
878
|
+
probable_status: declined
|
879
|
+
RC09:
|
880
|
+
code: RC09
|
881
|
+
iso_name: Invalid Debtor Clearing System Member Identifier
|
882
|
+
description: Debtor Clearing System Member identifier is invalid or missing
|
883
|
+
probable_status: declined
|
884
|
+
RC10:
|
885
|
+
code: RC10
|
886
|
+
iso_name: Invalid Creditor Clearing System Member Identifier
|
887
|
+
description: Creditor Clearing System Member identifier is invalid or missing
|
888
|
+
probable_status: declined
|
889
|
+
RC11:
|
890
|
+
code: RC11
|
891
|
+
iso_name: Invalid Intermediary Agent
|
892
|
+
description: Intermediary Agent is invalid or missing
|
893
|
+
probable_status: declined
|
894
|
+
RC12:
|
895
|
+
code: RC12
|
896
|
+
iso_name: Missing Creditor Scheme Id
|
897
|
+
description: Creditor Scheme Id is invalid or missing
|
898
|
+
probable_status: declined
|
899
|
+
RF01:
|
900
|
+
code: RF01
|
901
|
+
iso_name: Not Unique Transaction Reference
|
902
|
+
description: Transaction reference is not unique within the message.
|
903
|
+
probable_status: declined
|
904
|
+
RJCT:
|
905
|
+
code: RJCT
|
906
|
+
iso_name: "-"
|
907
|
+
description: Complete rejection of a bulk
|
908
|
+
probable_status: declined
|
909
|
+
RR01:
|
910
|
+
code: RR01
|
911
|
+
iso_name: Missing Debtor Account Or Identification
|
912
|
+
description: Specification of the debtor’s account or unique identification needed
|
913
|
+
for reasons of regulatory requirements is insufficient or missing
|
914
|
+
probable_status: declined
|
915
|
+
RR02:
|
916
|
+
code: RR02
|
917
|
+
iso_name: Missing Debtor Name Or Address
|
918
|
+
description: Specification of the debtor’s name and/or address needed for regulatory
|
919
|
+
requirements is insufficient or missing.
|
920
|
+
probable_status: declined
|
921
|
+
RR03:
|
922
|
+
code: RR03
|
923
|
+
iso_name: Missing Creditor Name Or Address
|
924
|
+
description: Specification of the creditor’s name and/or address needed for regulatory
|
925
|
+
requirements is insufficient or missing.
|
926
|
+
probable_status: declined
|
927
|
+
RR04:
|
928
|
+
code: RR04
|
929
|
+
iso_name: RegulatoryReason
|
930
|
+
description: Regulatory Reason
|
931
|
+
probable_status: declined
|
932
|
+
RR05:
|
933
|
+
code: RR05
|
934
|
+
iso_name: Regulatory Information Invalid
|
935
|
+
description: Regulatory or Central Bank Reporting information missing, incomplete
|
936
|
+
or invalid.
|
937
|
+
probable_status: declined
|
938
|
+
RR06:
|
939
|
+
code: RR06
|
940
|
+
iso_name: Tax Information Invalid
|
941
|
+
description: Tax information missing, incomplete or invalid.
|
942
|
+
probable_status: declined
|
943
|
+
RR07:
|
944
|
+
code: RR07
|
945
|
+
iso_name: Remittance Information Invalid
|
946
|
+
description: Remittance information structure does not comply with rules for payment
|
947
|
+
type.
|
948
|
+
probable_status: declined
|
949
|
+
RR08:
|
950
|
+
code: RR08
|
951
|
+
iso_name: Remittance Information Truncated
|
952
|
+
description: Remittance information truncated to comply with rules for payment type.
|
953
|
+
probable_status: declined
|
954
|
+
RR09:
|
955
|
+
code: RR09
|
956
|
+
iso_name: Invalid Structured Creditor Reference
|
957
|
+
description: Structured creditor reference invalid or missing.
|
958
|
+
probable_status: declined
|
959
|
+
RR10:
|
960
|
+
code: RR10
|
961
|
+
iso_name: Invalid Character Set
|
962
|
+
description: Character set supplied not valid for the country and payment type.
|
963
|
+
probable_status: declined
|
964
|
+
RR11:
|
965
|
+
code: RR11
|
966
|
+
iso_name: Invalid Debtor Agent Service ID
|
967
|
+
description: Invalid or missing identification of a bank proprietary service.
|
968
|
+
probable_status: declined
|
969
|
+
RR12:
|
970
|
+
code: RR12
|
971
|
+
iso_name: Invalid Party ID
|
972
|
+
description: Invalid or missing identification required within a particular country
|
973
|
+
or payment type.
|
974
|
+
probable_status: declined
|
975
|
+
SL01:
|
976
|
+
code: SL01
|
977
|
+
iso_name: Due To Specific Services Offered By Debtor Agent
|
978
|
+
description: Due to specific service offered by the Debtor Agent
|
979
|
+
probable_status: declined
|
980
|
+
SL02:
|
981
|
+
code: SL02
|
982
|
+
iso_name: Specific Service offered by Creditor Agent
|
983
|
+
description: Due to specific service offered by the Creditor Agent
|
984
|
+
probable_status: declined
|
985
|
+
SVNR:
|
986
|
+
code: SVNR
|
987
|
+
iso_name: Service Not Rendered
|
988
|
+
description: The card payment is returned since a cash amount rendered was not correct
|
989
|
+
or goods or a service was not rendered to the customer, e.g. in an ecommerce situation.
|
990
|
+
probable_status: declined
|
991
|
+
TA01:
|
992
|
+
code: TA01
|
993
|
+
iso_name: Transmission Aborted
|
994
|
+
description: The transmission of the file was not successful – it had to be aborted
|
995
|
+
(for technical reasons)
|
996
|
+
probable_status: declined
|
997
|
+
TD01:
|
998
|
+
code: TD01
|
999
|
+
iso_name: No Data Available
|
1000
|
+
description: There is no data available (for download)
|
1001
|
+
probable_status: declined
|
1002
|
+
TD02:
|
1003
|
+
code: TD02
|
1004
|
+
iso_name: File Non Readable
|
1005
|
+
description: The file cannot be read (e.g. unknown format)
|
1006
|
+
probable_status: declined
|
1007
|
+
TD03:
|
1008
|
+
code: TD03
|
1009
|
+
iso_name: Incorrect File Structure
|
1010
|
+
description: The file format is incomplete or invalid
|
1011
|
+
probable_status: declined
|
1012
|
+
TECH:
|
1013
|
+
code: TECH
|
1014
|
+
iso_name: "-"
|
1015
|
+
description: Technical problems resulting in erroneous credit transfer
|
1016
|
+
probable_status: declined
|
1017
|
+
TM01:
|
1018
|
+
code: TM01
|
1019
|
+
iso_name: 'Invalid Cut Off Time Formerly: Cut Off Time'
|
1020
|
+
description: Associated message was received after agreed processing cutoff time.
|
1021
|
+
probable_status: declined
|
1022
|
+
TS01:
|
1023
|
+
code: TS01
|
1024
|
+
iso_name: Transmission Successful
|
1025
|
+
description: The (technical) transmission of the file was successful.
|
1026
|
+
probable_status: declined
|
1027
|
+
TS04:
|
1028
|
+
code: TS04
|
1029
|
+
iso_name: Transfer To Sign By Hand
|
1030
|
+
description: The order was transferred to pass by accompanying note signed by hand.
|
1031
|
+
probable_status: declined
|
1032
|
+
UPAY:
|
1033
|
+
code: UPAY
|
1034
|
+
iso_name: Undue Payment
|
1035
|
+
description: Payment is not authorized
|
1036
|
+
probable_status: chargeback
|
1037
|
+
XD19:
|
1038
|
+
code: XD19
|
1039
|
+
iso_name: "-"
|
1040
|
+
description: IBAN check according to ISO 13616 failed (e.g. (DebtorAccount or CreditorAccount are not correct.)
|
1041
|
+
probable_status: declined
|
1042
|
+
XD75:
|
1043
|
+
code: XD75
|
1044
|
+
iso_name: 'Invalid Cut Off Time Formerly: Cut Off Time'
|
1045
|
+
description: 6
|
1046
|
+
probable_status: error
|
1047
|
+
XT13:
|
1048
|
+
code: XT13
|
1049
|
+
iso_name: "-"
|
1050
|
+
description: Transaction contains at least one unsupported field.
|
1051
|
+
At least one mandatory field is not included in the transaction.
|
1052
|
+
probable_status: declined
|
1053
|
+
XT27:
|
1054
|
+
code: XT27
|
1055
|
+
iso_name: "-"
|
1056
|
+
description: Transaction contains at least one element with a BIC that is not
|
1057
|
+
is available in the SCL directory.
|
1058
|
+
probable_status: declined
|
1059
|
+
XT33:
|
1060
|
+
code: XT33
|
1061
|
+
iso_name: "-"
|
1062
|
+
description: Content of at least one XML element does not have the required format.
|
1063
|
+
The faulty XML field is marked with the error code (Initiator SEPA Clearer).
|
1064
|
+
probable_status: declined
|
1065
|
+
XT43:
|
1066
|
+
code: XT43
|
1067
|
+
iso_name: "-"
|
1068
|
+
description: Type of direct debit (CORE7B2B) differs from the assignment of the <Srvcld>
|
1069
|
+
in the file header (Initiator SEPA Clearer).
|
1070
|
+
probable_status: declined
|
1071
|
+
XT53:
|
1072
|
+
code: XT53
|
1073
|
+
iso_name: "-"
|
1074
|
+
description: Check of the Creditor Indentifier <CdtrSchmeld><Id> with regard to structure/check digit
|
1075
|
+
failed (initiator SEPA Clearer).
|
1076
|
+
probable_status: declined
|
1077
|
+
XT73:
|
1078
|
+
code: XT73
|
1079
|
+
iso_name: "-"
|
1080
|
+
description: Both characters for the country code are not valid ISO or SEPA
|
1081
|
+
Country code (Initiator SEPA Clearer)
|
1082
|
+
probable_status: declined
|
1083
|
+
XT74:
|
1084
|
+
code: XT74
|
1085
|
+
iso_name: "-"
|
1086
|
+
description: Faulty underlying original transaction (initiator other
|
1087
|
+
CSM). Further examination required
|
1088
|
+
probable_status: declined
|
1089
|
+
XT75:
|
1090
|
+
code: XT75
|
1091
|
+
iso_name: "-"
|
1092
|
+
description: Incorrect status of the underlying original transaction from
|
1093
|
+
the R message (initiator other CSM). No further actions necessary.
|
1094
|
+
probable_status: declined
|
1095
|
+
XT76:
|
1096
|
+
code: XT76
|
1097
|
+
iso_name: "-"
|
1098
|
+
description: Invalid error code in Return/Refund (Initiator SEPA Clearer)
|
1099
|
+
probable_status: declined
|
1100
|
+
XT77:
|
1101
|
+
code: XT77
|
1102
|
+
iso_name: "-"
|
1103
|
+
description: The originally commissioned amount <OrgnIIntrBkSttlmAmt> was paid by
|
1104
|
+
other CSM not found or does not match the amount of the original transaction about
|
1105
|
+
probable_status: declined
|
1106
|
+
XT78:
|
1107
|
+
code: XT78
|
1108
|
+
iso_name: "-"
|
1109
|
+
description: 'pasc.004.001.01: The amount in <OrgnlIntrBkSttlmAmt> + <CompstnAmt>
|
1110
|
+
+ <ChrgsInf><Amt> must result in the amount in <RtrdIntrBkSttlmAmt> if <CompstnAmt>
|
1111
|
+
and/or <ChrgsInf><Amt> available (initiator SEPA Clearer).'
|
1112
|
+
probable_status: declined
|
1113
|
+
XT79:
|
1114
|
+
code: XT79
|
1115
|
+
iso_name: "-"
|
1116
|
+
description: The <DbtrAgt> is not allowed to receive direct debits. An
|
1117
|
+
indirect participants must be allowed to accept direct debits from the clearing system
|
1118
|
+
(initiator other CSM).
|
1119
|
+
probable_status: declined
|
1120
|
+
XT80:
|
1121
|
+
code: XT80
|
1122
|
+
iso_name: "-"
|
1123
|
+
description: The <CdtrAgt> is not allowed to send direct debits. An indirect
|
1124
|
+
Participant must be allowed to send direct debits to the clearing system
|
1125
|
+
(initiator other CSM).
|
1126
|
+
probable_status: declined
|
1127
|
+
XT81:
|
1128
|
+
code: XT81
|
1129
|
+
iso_name: "-"
|
1130
|
+
description: SCT XML field not permitted in CT service
|
1131
|
+
probable_status: declined
|
1132
|
+
XT85:
|
1133
|
+
code: XT85
|
1134
|
+
iso_name: No Settlement Cycle available
|
1135
|
+
description: SCT
|
1136
|
+
probable_status: declined
|
1137
|
+
XT87:
|
1138
|
+
code: XT87
|
1139
|
+
iso_name: "-"
|
1140
|
+
description: SDD R-Msg not following same DP route/ sending DP not identical to
|
1141
|
+
Instructing / Instructed Agent of the original Transaction
|
1142
|
+
probable_status: declined
|
1143
|
+
XT90:
|
1144
|
+
code: XT90
|
1145
|
+
iso_name: Invalid use of a Technical BIC
|
1146
|
+
description: SCT
|
1147
|
+
probable_status: declined
|
1148
|
+
XT99:
|
1149
|
+
code: XT99
|
1150
|
+
iso_name: "-"
|
1151
|
+
description: Rejection of the bank transfer or direct debit or card collection from
|
1152
|
+
SEPA Clearer for other reasons.
|
1153
|
+
probable_status: declined
|