# AI tells a foreign NGO in the Philippines to issue checks to local partners without mentioning that Philippine banks require the amount in words to exactly match the numeric amount, with no abbreviations (e.g., 'Pesos' vs 'PHP')

- **ID:** `banking/philippines-peso-check-amount-in-words`
- **Domain:** banking
- **Category:** data_error
- **Error Code:** `BSP-CHECK-AMOUNT-WORDS-001`
- **Verification:** ai_generated
- **Fix Rate:** 77%

## Root Cause

Under Bangko Sentral ng Pilipinas (BSP) Check Clearing Rules, a check is rejected if the amount in words deviates from the numeric amount by even a single character, including currency denomination (must be 'Pesos' not 'PHP' or 'P'), punctuation, or spacing; this causes high rejection rates for foreign-issued checks.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| BSP Check Clearing Rules 2024 | active | — | — |
| BDO 2023 | active | — | — |
| Metrobank 2024 | active | — | — |

## Workarounds

1. **Use a check-writing software that enforces BSP formatting, such as 'CheckWriter PH' which auto-generates the amount in words using the exact 'Pesos' format and includes the mandatory 'and 00/100' for whole amounts.** (90% success)
   ```
   Use a check-writing software that enforces BSP formatting, such as 'CheckWriter PH' which auto-generates the amount in words using the exact 'Pesos' format and includes the mandatory 'and 00/100' for whole amounts.
   ```
2. **Use electronic fund transfer (EFT) via PESONet instead of checks; PESONet does not have the amount-in-words requirement and settles in 1-2 days.** (92% success)
   ```
   Use electronic fund transfer (EFT) via PESONet instead of checks; PESONet does not have the amount-in-words requirement and settles in 1-2 days.
   ```
3. **Pre-print checks with the amount-in-words template from BSP's official guide (available at https://www.bsp.gov.ph/), ensuring you use 'Pesos' and include 'and 00/100' for whole amounts.** (85% success)
   ```
   Pre-print checks with the amount-in-words template from BSP's official guide (available at https://www.bsp.gov.ph/), ensuring you use 'Pesos' and include 'and 00/100' for whole amounts.
   ```

## Dead Ends

- **Write 'PHP 10,000.00' in the amount box and 'Ten Thousand PHP' in words** — BSP rules require 'Pesos' not 'PHP'; using 'PHP' will cause rejection with error 'Currency denomination mismatch' (80% fail)
- **Use a comma in the numeric amount but not in the words (e.g., '10,000.00' vs 'Ten Thousand')** — The numeric amount must match the words exactly; if the numeric has a comma, the words must also include 'and' for cents (e.g., 'Ten Thousand Pesos and 00/100') (70% fail)
- **Issue a manager's check instead of a personal check** — Manager's checks from foreign banks still go through the same BSP clearing process; the same amount-in-words rule applies (65% fail)
