Security & Identity - MFA is where ERP discipline either begins or breaks.
Multi-Factor Authentication Policy Enforcement 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: Phishing-resistant authentication for all financial operations; security audits pass MFA coverage requirement (100% of active users enrolled).
The control flow a finance team actually needs.
Step 1
TOTP, WebAuthn Level 2, And SMS OTP
Step 2
MFA Policy Enforced Server-Side -...
Step 3
MFA Re-Challenge For High-Privilege...
Step 4
Failed Attempt Lockout After...
Step 5
MFA Enrollment Status Visible In User...
The ERP surface involved.
Module
Security & Identity - MFA
Actors
Security Officer, End-Users, Authentication Service
Tier
Tier 2
Finance area
Platform, Integration, Security, Administration & Analytics
Region lens
US and UK finance teams
Publication date
June 20, 2026
Support TOTP (RFC 6238), WebAuthn Level 2 (passkeys), and SMS OTP (fallback only); MFA policy enforced server-side - client cannot bypass; MFA re-challenge for high-privilege actions is configurable per action type; failed attempt lockout after configurable threshold (default 5 attempts, 15-min cooldown); MFA enrollment status visible in user admin panel; recovery codes generated at enrollment, single-use, hashed at rest; MFA events written to audit log; policy change takes effect at next login.
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 area | Requirement | Acceptance proof |
|---|---|---|
| Control 1 | Support TOTP (RFC 6238), WebAuthn Level 2 (passkeys), and SMS OTP (fallback only | Given MFA policy requiring TOTP for all users |
| Control 2 | MFA policy enforced server-side - client cannot bypass | when a user completes password login and submits a valid TOTP code, then a JWT with MFA-verified claim is issued and the user is granted access |
| Control 3 | MFA re-challenge for high-privilege actions is configurable per action type | when a user submits an incorrect TOTP code 5 consecutive times, then the account is locked for 15 min and an alert is generated |
| Control 4 | failed attempt lockout after configurable threshold (default 5 attempts, 15-min cooldown | negative) when a user attempts a high-privilege action (approve payment) without MFA-verified JWT claim, then 403 MFA_REQUIRED is returned regardless of other valid JWT claims. |
| Control 5 | MFA enrollment status visible in user admin panel | Phishing-resistant authentication for all financial operations; security audits pass MFA coverage requirement (100% of active users enrolled). |
| Control 6 | recovery codes generated at enrollment, single-use, hashed at rest | Phishing-resistant authentication for all financial operations; security audits pass MFA coverage requirement (100% of active users enrolled). |
Audit evidence is a chain, not a folder.
| Evidence layer | What should be preserved |
|---|---|
| Business event | |
| Control rules | Support TOTP (RFC 6238), WebAuthn Level 2 (passkeys), and SMS OTP (fallback only); MFA policy enforced server-side - client cannot bypass; MFA re-challenge for high-privilege actions is configurable per action type; failed attempt lockout after configurable threshold (default 5 attempts, 15-min cooldown); MFA enrollment status visible in user admin panel; recovery codes generated at enrollment, single-use, hashed at rest; MFA events written to audit log; policy change takes effect at next login. |
| Acceptance proof | Given MFA policy requiring TOTP for all users; when a user completes password login and submits a valid TOTP code, then a JWT with MFA-verified claim is issued and the user is granted access; when a user submits an incorrect TOTP code 5 consecutive times, then the account is locked for 15 min and an alert is generated; (negative) when a user attempts a high-privilege action (approve payment) without MFA-verified JWT claim, then 403 MFA_REQUIRED is returned regardless of other valid JWT claims. |
| Data record | |
| System event | |
| Lifecycle state | |
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
`mfa_enrollment` { enrollment_id: string, user_id: string, method: enum(TOTP,WEBAUTHN,SMS_OTP), status: enum(ACTIVE,REVOKED), enrolled_at: timestamp, external_id: string }; `mfa_recovery_code` { code_hash: string, user_id: string, used: bool, used_at: timestamp }; `mfa_audit` { event_id: string, user_id: string, method: string, outcome: enum(SUCCESS,FAILURE), ip: string, timestamp: timestamp }; (reference, product may differ).API and events
`POST /v1/auth/mfa/enroll` { method } -> 200 { secret_or_challenge, recovery_codes[] }; `POST /v1/auth/mfa/verify` { method, code } -> 200 { access_token }; `POST /v1/auth/mfa/challenge` { action_type } -> 200 { challenge_id }; `GET /v1/users/{user_id}/mfa-status`; emits `auth.mfa_verified` and `auth.mfa_failed` events; idempotent via `external_id`.State transitions
`NOT_ENROLLED -> ENROLLED -> ACTIVE`; terminal `REVOKED`; guard: 5 failed attempts triggers 15-min lockout; recovery codes are single-use and hashed at rest; re-challenge required for high-privilege actions even within active session.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.