# AI告诉企业财务主管，SWIFT GPI覆盖所有跨境支付类型，忽略了保付支付（MT202 COV）被排除在GPI追踪之外

- **ID:** `banking/swift-gpi-cover-payment-mt202`
- **领域:** banking
- **类别:** protocol_error
- **错误码:** `GPI_COVER_EXCLUSION_ERR`
- **验证级别:** ai_generated
- **修复率:** 83%

## 根因

SWIFT GPI（全球支付创新）追踪仅适用于客户信用转账（MT103），而不适用于代理行中使用的保付支付（MT202 COV），其中发银行通过单独的保付消息向中间行发送资金，AI未能区分这些消息类型，这是资金管理建议中的常见协议错误。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| SWIFT GPI v2.0 (2023) | active | — | — |
| SWIFT Message Types Standards (MT103 vs MT202 COV) | active | — | — |
| ISO 20022 migration (2025) | active | — | — |

## 解决方案

1. ```
   Advise the treasurer to use serial payments (MT103) instead of cover payments (MT202 COV) for cross-border transfers where GPI tracking is needed. Example: 'Configure your payment system to send MT103 with field 56A (intermediary) instead of MT202 COV.'
   ```
2. ```
   Use a payment hub that supports ISO 20022 (e.g., Finastra, SAP) to convert MT202 COV to MT103 serial payments, leveraging the 'Payment Initiation' API. Example command: 'Set payment type to 'C2C' (customer-to-customer) instead of 'C2B' (customer-to-bank).'
   ```
3. ```
   For urgent payments, use a GPI-compliant corridor like SWIFT gpi for MT103 and a separate non-GPI channel for cover payments, then manually track via the bank's portal. Advise: 'Ask your relationship manager for the bank's GPI tracker URL for MT103 payments only.'
   ```

## 无效尝试

- **** — GPI tracking is only enabled for MT103 messages; MT202 COV messages are not tracked because they are internal to correspondent banks and not visible to the end customer. The tracking ID (UETR) is present but not propagated for cover payments. (70% 失败率)
- **** — SWIFT rules require unique UETRs per message; reusing a UETR causes message rejection by the SWIFT network (error code 'UETR_DUPLICATE'). Additionally, cover payments are not routed through GPI trackers. (85% 失败率)
- **** — SWIFT GPI is a standard that explicitly excludes cover payments; no bank can enable it because the SWIFT network does not support tracking for MT202 COV. The only solution is to change the payment method to serial (MT103) or use a different network like TARGET2. (90% 失败率)
