# AI告诉美国小企业，ACH同日退回是免费且无限制的，忽略了NACHA每笔0.05美元的费用和每个ODFI每日100万美元的限额

- **ID:** `banking/ach-same-day-return-fees-nacha`
- **领域:** banking
- **类别:** resource_error
- **错误码:** `NACHA-SAME-DAY-RETURN-FEE`
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

NACHA的同日ACH规则对每笔退回收取0.05美元的费用（向ODFI收取），并且每个ODFI每日总额上限为100万美元；超出将导致退回被拒和额外罚款。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| NACHA Operating Rules (2024) | active | — | — |
| ACH Network (Same-Day ACH, launched 2016) | active | — | — |

## 解决方案

1. ```
   Monitor same-day return volume via the ODFI's ACH reporting dashboard (e.g., via an API from the ODFI bank). Example: 'Set up a webhook to alert when daily same-day return count exceeds 20,000 entries (equivalent to $1,000 in fees at $0.05 each) to avoid hitting the $1 million limit'.
   ```
2. ```
   If the limit is reached, schedule returns for the next business day using standard ACH (non-same-day) which has no per-entry fee, but accept the 1-2 day delay.
   ```

## 无效尝试

- **Batching multiple returns into a single ACH file to reduce fees** — NACHA charges per entry, not per file; each return is a separate entry, so batching doesn't reduce the fee. The ODFI is still charged $0.05 per return. (50% 失败率)
- **Assuming the $1 million limit resets daily and ignoring the cumulative effect over the month** — The limit is per ODFI per day, but if the ODFI processes multiple same-day cycles, the aggregate across cycles must not exceed $1 million; exceeding this in one cycle can block all subsequent returns that day. (40% 失败率)
