# AI告诉美国小企业，ACH同日退单是免费且无限的，忽略了NACHA的每笔费用结构和每日交易量上限

- **ID:** `banking/us-ach-return-fee-limits`
- **领域:** banking
- **类别:** regulatory_compliance
- **错误码:** `NACHA-ACH-003`
- **验证级别:** ai_generated
- **修复率:** 83%

## 根因

NACHA规则对同日ACH退单收取每笔0.05美元的费用（外加0.05美元的发起费），并将同日ACH交易量限制在每个ODFI每天10,000笔；超出这些限制的企业将面临额外费用和可能的暂停。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| NACHA Operating Rules 2024 | active | — | — |
| ACH Network v3.0 | active | — | — |
| Same-Day ACH Phase 3 (effective March 2023) | active | — | — |

## 解决方案

1. ```
   使用ODFI的报告工具监控每日同日ACH交易量是否接近10,000笔上限；如果接近，优先处理高价值交易的退单，将低价值交易推迟到第二天。
   ```
2. ```
   为NACHA费用做预算：计算每笔成本（0.05美元退单费 + 0.05美元发起费 = 每笔退单0.10美元），并将其纳入运营成本或作为费用转嫁给客户。
   ```
3. ```
   正确使用ACH网络的'退单原因代码'（例如R01表示资金不足），以避免不必要的退单，从而增加交易量和费用。
   ```

## 无效尝试

- **Telling the business to submit returns via a third-party processor to avoid fees** — NACHA fees apply to all ODFIs regardless of processor; the processor passes the cost to the business or charges its own markup. (80% 失败率)
- **Advising the business to batch returns into a single file to reduce fees** — NACHA charges per entry, not per file; batching doesn't reduce the number of entries subject to fees. (75% 失败率)
- **Suggesting the business use standard (non-same-day) returns to bypass fees** — Standard returns also have fees (though lower) and may not meet the business's need for timely reversals; plus, the volume cap still applies to standard returns for settlement timing. (70% 失败率)
