# AI 告诉企业财务主管 SWIFT GPI 涵盖所有跨境支付类型，忽略 cover 支付（MT202 COV）需要特定路由且可能在使用 GPI 时失败

- **ID:** `banking/mt202-cover-payment-misuse`
- **领域:** banking
- **类别:** protocol_error
- **错误码:** `SWIFT-GPI-MT202-COV-FAIL`
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

SWIFT GPI（全球支付创新）专为 MT103 客户支付设计，可端到端追踪，但 MT202 COV（cover 支付）是金融机构转账，通过代理行以不同方式路由，通常缺少 GPI 所需的 UETR（唯一端到端交易参考），因此无法享受 GPI 追踪。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| SWIFT GPI v2.0 | active | — | — |
| SWIFT MT202 COV Standard 2024 | active | — | — |
| SWIFT UETR Guidelines v1.3 | active | — | — |

## 解决方案

1. ```
   Use MT103 with 'cover' method (MT103+MT202) instead of MT202 COV for customer payments that require GPI tracking. Example: 'Send the customer payment as MT103 with field 72: '/COVT/COV' and the cover as MT202 with field 21: referencing the MT103's UETR. This ensures GPI tracks the customer payment leg.'
   ```
2. ```
   For interbank cover payments, use ISO 20022 pacs.009 message (Financial Institution Credit Transfer) which supports GPI-like tracking via the <UETR> element. Example: 'Generate a pacs.009 message with <UETR>UUID</UETR> and send via SWIFT; most major banks support GPI for pacs.009 as of 2024.'
   ```
3. ```
   Negotiate a bilateral agreement with your correspondent bank to support GPI for MT202 COV. Example: 'Contact your bank's SWIFT relationship manager and request 'GPI for Cover Payments' addendum; they may enable UETR propagation for your specific BIC code. This typically takes 2-4 weeks and may incur additional fees of $50-100 per message.'
   ```

## 无效尝试

- **Assume that adding a UETR to an MT202 COV message will enable GPI tracking** — GPI tracking requires the UETR to be propagated through all correspondent banks in the chain; for MT202 COV, the cover payment is sent separately from the customer payment (MT103), and many correspondent banks strip the UETR from the MT202 COV, breaking GPI tracking. (85% 失败率)
- **Use MT103 instead of MT202 COV for all cross-border payments, including interbank transfers** — MT103 is for customer payments; using it for interbank transfers (e.g., settlement of trades) violates SWIFT usage rules and may be rejected by the receiving bank with error 'SWIFT-ERR-103-USE'. (90% 失败率)
- **Rely on the receiving bank to convert MT202 COV to GPI-compatible format** — Receiving banks have no obligation to convert MT202 COV; they process it as a standard FI transfer, and GPI tracking stops at the first correspondent bank that doesn't support GPI for cover payments. (95% 失败率)
