Rivane

Accounting
made smart

ERP Use CasesTier 1Published April 8, 2026

Budget vs. Actual Variance Analysis

Budget vs. Actual Variance Analysis for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Budget vs. Actual Reporting is where ERP discipline either begins or breaks.

Budget vs. Actual Variance Analysis 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: Monthly budget vs. actual variance report with root-cause commentary delivered to leadership within 5 business days of period close.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Variance Calcula...Start conditionFavorable Expens...Required checksDrill-Down From ...Owner and SLACommentary Be On...System updateReport Be Filter...Exception handlingAudit packetEvidence trailException loopBudget vs. Actual Reporting should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Variance Calculations Use The Formula...

Step 2

Favorable Expense Variance Is Positive)

Step 3

Drill-Down From Variance Line To...

Step 4

Commentary Be On Any Variance Exceeding...

Step 5

Report Be Filterable By Entity,...

The ERP surface involved.

Module

Budget vs. Actual Reporting

Actors

FP&A Analyst, Controller, Business Unit Leader

Tier

Tier 1

Finance area

Budgeting, Planning & FP&A

Region lens

US and UK finance teams

Publication date

April 8, 2026

Variance calculations must use the formula (Actual − Budget) with sign convention matching income-statement presentation (favorable revenue variance is positive; favorable expense variance is positive); drill-down from variance line to individual GL journal entries must be available in three clicks; commentary must be required on any variance exceeding configurable absolute or percentage thresholds; report must be filterable by entity, department, cost center, account, and period; export to Excel must preserve formulas; system must clearly label the budget version used for comparison.

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 1Variance calculations must use the formula (Actual − Budget) with sign convention matching income-statement presentation (favorable revenue variance is positiveGiven a closed GL period with imported actuals and an approved budget version
Control 2favorable expense variance is positivewhen FP&A Analyst opens the variance report
Control 3drill-down from variance line to individual GL journal entries must be available in three clicksthen system displays (Actual − Budget) with correct income-statement sign convention, drill-down to individual GL journal entries is available in three clicks, and commentary is required on variances exceeding configurable absolute or percentage thresholds
Control 4commentary must be required on any variance exceeding configurable absolute or percentage thresholds
negative) when report is generated before period close is confirmed then 409 with error_code: period_not_closed.
Control 5report must be filterable by entity, department, cost center, account, and periodMonthly budget vs. actual variance report with root-cause commentary delivered to leadership within 5 business days of period close.
Control 6export to Excel must preserve formulasMonthly budget vs. actual variance report with root-cause commentary delivered to leadership within 5 business days of period close.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventAfter GL period close, the system automatically pulls actuals and compares them against the approved budget for the same period at account, cost-center, and entity level. FP&A Analyst opens the variance report, which shows favorable and unfavorable variances with drill-down to individual GL transactions. Business Unit Leaders receive an automated email with their section of the variance report. FP&A Analyst annotates significant variances (>5% or >$10,000) with root-cause commentary. Controller reviews the consolidated commentary and approves the variance report for distribution to the leadership team.
Control rulesVariance calculations must use the formula (Actual − Budget) with sign convention matching income-statement presentation (favorable revenue variance is positive; favorable expense variance is positive); drill-down from variance line to individual GL journal entries must be available in three clicks; commentary must be required on any variance exceeding configurable absolute or percentage thresholds; report must be filterable by entity, department, cost center, account, and period; export to Excel must preserve formulas; system must clearly label the budget version used for comparison.
Acceptance proof
Given a closed GL period with imported actuals and an approved budget version;
when FP&A Analyst opens the variance report;
then system displays (Actual − Budget) with correct income-statement sign convention, drill-down to individual GL journal entries is available in three clicks, and commentary is required on variances exceeding configurable absolute or percentage thresholds;
(negative) when report is generated before period close is confirmed then 409 with error_code: period_not_closed.
Data record
variance_report { id: vr_*, period: date, budget_version_id: string, entity_id: string, generated_at: timestamp };
variance_line { id: vl_*, report_id: string, account_code: string, cost_center_code: string, actual_minor: int64, budget_minor: int64, variance_minor: int64, variance_pct: numeric, currency_code: char(3), commentary: string };
(reference, product may differ).
System event
GET /v1/variance-reports?period={date}&budget_version_id={id}&entity_id={id} -> 200 { lines: [] };
GET /v1/variance-reports/{id}/lines/{line_id}/journal-entries;
PUT /v1/variance-reports/{id}/lines/{line_id}/commentary { text, category };
emits variance.report_approved event.
Lifecycle state
DRAFT -> COMMENTARY_PENDING -> APPROVED;
guard: APPROVED requires commentary on all lines exceeding threshold;
variance_minor formula: actual_minor − budget_minor with income-statement sign convention enforced.

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

`variance_report` { id: vr_*, period: date, budget_version_id: string, entity_id: string, generated_at: timestamp }; `variance_line` { id: vl_*, report_id: string, account_code: string, cost_center_code: string, actual_minor: int64, budget_minor: int64, variance_minor: int64, variance_pct: numeric, currency_code: char(3), commentary: string }; (reference, product may differ).

API and events

`GET /v1/variance-reports?period={date}&budget_version_id={id}&entity_id={id}` -> 200 { lines: [] }; `GET /v1/variance-reports/{id}/lines/{line_id}/journal-entries`; `PUT /v1/variance-reports/{id}/lines/{line_id}/commentary` { text, category }; emits `variance.report_approved` event.

State transitions

`DRAFT -> COMMENTARY_PENDING -> APPROVED`; guard: APPROVED requires commentary on all lines exceeding threshold; variance_minor formula: actual_minor − budget_minor with income-statement sign convention enforced.

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