Rivane

Accounting
made smart

ERP Use CasesTier 2Published June 24, 2026

Cross-Currency Triangulated Payment (Three-Leg FX)

Cross-Currency Triangulated Payment (Three-Leg FX) for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Accounts Payable / Treasury / Multi-Currency is where ERP discipline either begins or breaks.

Cross-Currency Triangulated Payment (Three-Leg FX) looks operational from far away. In a real finance team, it is a chain of assertions: the right actor started the work, the required records existed, the control policy was applied, the state change was preserved, and the outcome can be explained later without rebuilding the transaction from emails and spreadsheets.

The expected business outcome is specific: The EUR payable clears to zero, the GBP cash outflow matches the bank to the minor unit, realized FX gain/loss is correctly stated, and the functional-currency books balance.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Three Independen...Start conditionCross-Rate Deriv...Required checksRealized FX Gain...Owner and SLAEach Amount Stor...System updateFunctional-Curre...Exception handlingAudit packetEvidence trailException loopAccounts Payable / Treasury / Multi-Currency should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Three Independent Rate Legs Resolved At...

Step 2

Cross-Rate Derived, Never Assumed 1:1

Step 3

Realized FX Gain/Loss Isolated To Its...

Step 4

Each Amount Stored As * Minor + Its Own...

Step 5

Functional-Currency Amount Carried On...

The ERP surface involved.

Module

Accounts Payable / Treasury / Multi-Currency

Actors

AP Clerk, Treasury, FX Rate Service, GL System

Tier

Tier 2

Finance area

Cross-Cutting Edge Cases & Failure Modes

Region lens

US and UK finance teams

Publication date

June 24, 2026

three independent rate legs resolved at the correct rate date (bill date for liability, value date for settlement); cross-rate derived, never assumed 1:1; realized FX gain/loss isolated to its own GL account, not absorbed into expense; each amount stored as `*_minor` + its own `currency_code`; functional-currency amount carried on every line; rounding via banker's rounding per ADR-001; bank confirmation matches the GBP settlement leg exactly; audit trail records all three rates and rate dates used.

US and UK teams have different compliance hooks, but the same control problem.

US teams usually care about clean evidence for audit support, vendor records, payment controls, tax reporting, and management review. UK teams usually care about VAT-ready records, approval evidence, digital-record discipline, and traceable postings. The country-specific details differ, but the operating pattern is the same: the ERP needs controlled records, explicit ownership, defensible state changes, and evidence that survives beyond the person who completed the task.

The control matrix.

Control areaRequirementAcceptance proof
Control 1three independent rate legs resolved at the correct rate date (bill date for liability, value date for settlementGiven a USD-functional entity with an open EUR vendor bill and a GBP bank account seeded with fx rates EUR→USD, GBP→USD
Control 2cross-rate derived, never assumed 1:1when a payment is posted settling the EUR bill from the GBP account
Control 3realized FX gain/loss isolated to its own GL account, not absorbed into expense
then EUR payable clears to zero, GBP cash outflow matches the bank to the minor unit, realized FX gain/loss is isolated to a dedicated GL account, all three amounts stored as *_minor + currency_code, and the audit trail records all three rates and rate dates
Control 4
each amount stored as *_minor + its own currency_code
negative) when any required rate leg is missing then 422 with error code fx_rate_missing.
Control 5functional-currency amount carried on every lineThe EUR payable clears to zero, the GBP cash outflow matches the bank to the minor unit, realized FX gain/loss is correctly stated, and the functional-currency books balance.
Control 6rounding via banker's rounding per ADR-001The EUR payable clears to zero, the GBP cash outflow matches the bank to the minor unit, realized FX gain/loss is correctly stated, and the functional-currency books balance.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventA USD-functional entity receives a vendor bill denominated in EUR but settles it from a GBP-denominated bank account. At payment the system must resolve three currency legs: the bill currency (EUR, the obligation), the settlement currency (GBP, the cash outflow), and the functional currency (USD, the books). It applies distinct rates - EUR→USD to value the liability, GBP→USD to value the cash, and the implied EUR→GBP cross to size the GBP debit that clears the EUR payable - then posts realized FX gain/loss for the difference between the liability's booked functional value and the functional value of cash paid. The bank confirmation in GBP reconciles against the settlement leg.
Control rules
three independent rate legs resolved at the correct rate date (bill date for liability, value date for settlement);
cross-rate derived, never assumed 1:1;
realized FX gain/loss isolated to its own GL account, not absorbed into expense;
each amount stored as *_minor + its own currency_code;
functional-currency amount carried on every line;
rounding via banker's rounding per ADR-001;
bank confirmation matches the GBP settlement leg exactly;
audit trail records all three rates and rate dates used.
Acceptance proof
Given a USD-functional entity with an open EUR vendor bill and a GBP bank account seeded with fx rates EUR→USD, GBP→USD;
when a payment is posted settling the EUR bill from the GBP account;
then EUR payable clears to zero, GBP cash outflow matches the bank to the minor unit, realized FX gain/loss is isolated to a dedicated GL account, all three amounts stored as *_minor + currency_code, and the audit trail records all three rates and rate dates;
(negative) when any required rate leg is missing then 422 with error code fx_rate_missing.
Data record
payment { id: string, bill_id: string, bill_currency_code: char(3), bill_amount_minor: int64, settlement_currency_code: char(3), settlement_amount_minor: int64, functional_currency_code: char(3), functional_amount_minor: int64, eur_usd_rate: string, gbp_usd_rate: string, eur_gbp_rate: string, rate_date: date, realized_fx_gain_loss_minor: int64, external_id: string, status: enum };
references bill, bank_account, journal_entry;
(reference, product may differ).
System event
POST /v1/payments { bill_id, bank_account_id, settlement_amount_minor, settlement_currency_code, rate_date, external_id } -> 201 { id, settlement_amount_minor, settlement_currency_code, functional_amount_minor, functional_currency_code, realized_fx_gain_loss_minor, journal_entry_id };
GET /v1/payments/{id};
emits payment.posted event with all three rate legs;
idempotent via external_id.
Lifecycle state
DRAFT -> PENDING_APPROVAL -> POSTED;
terminal VOID;
guard: transition to POSTED blocked if any of the three rate legs is missing or if bill balance_due is zero;
VOID blocked if bank confirmation already reconciled.

The useful version of this workflow is not only fast. It is inspectable. A controller, auditor, or operator should be able to move from source event to system record to state transition to final business outcome without guessing.

Implementation contracts.

Reference data model

`payment` { id: string, bill_id: string, bill_currency_code: char(3), bill_amount_minor: int64, settlement_currency_code: char(3), settlement_amount_minor: int64, functional_currency_code: char(3), functional_amount_minor: int64, eur_usd_rate: string, gbp_usd_rate: string, eur_gbp_rate: string, rate_date: date, realized_fx_gain_loss_minor: int64, external_id: string, status: enum }; references `bill`, `bank_account`, `journal_entry`; (reference, product may differ).

API and events

`POST /v1/payments` { bill_id, bank_account_id, settlement_amount_minor, settlement_currency_code, rate_date, external_id } -> 201 { id, settlement_amount_minor, settlement_currency_code, functional_amount_minor, functional_currency_code, realized_fx_gain_loss_minor, journal_entry_id }; `GET /v1/payments/{id}`; emits `payment.posted` event with all three rate legs; idempotent via `external_id`.

State transitions

`DRAFT -> PENDING_APPROVAL -> POSTED`; terminal `VOID`; guard: transition to `POSTED` blocked if any of the three rate legs is missing or if bill balance_due is zero; `VOID` blocked if bank confirmation already reconciled.

Common implementation traps.

Treating the workflow as data entry

If the ERP only stores the final record, the team loses the decision trail that explains how the record became valid.

Hiding exception logic

Exceptions need owners, reason codes, and time stamps. A vague pending state is not a control.

Posting without recovery design

Retries, duplicate submissions, and partial failures must be explicit so the system does not create inconsistent records.

Skipping evidence design

A workflow that cannot produce evidence on demand will eventually push finance teams back into manual screenshots and spreadsheets.

Where Rivane fits.

Rivane is built for finance workflows where automation must stay tied to source documents, approvals, state transitions, ledger impact, reporting, and audit evidence. Use this guide as a checklist for evaluating whether an ERP workflow is merely digitized or actually controlled.

References and source basis.

These sources provide the standards, regulatory, or government context around the flow. They are included so the guide is useful to finance operators, auditors, and implementation teams, not only buyers reading software copy.

Back to ERP use cases