Rivane

Accounting
made smart

ERP Use CasesTier 2Published April 14, 2026

Tax Return Preparation and Multi-Jurisdiction Filing

Tax Return Preparation and Multi-Jurisdiction Filing for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Tax Return Management is where ERP discipline either begins or breaks.

Tax Return Preparation and Multi-Jurisdiction Filing 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: All sales/use tax returns filed on time with zero manual reconciliation between ERP and tax engine.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Return Preparati...Start conditionVariance Between...Required checksReturns Generate...Owner and SLAMulti-Jurisdicti...System updateFiling Confirmat...Exception handlingAudit packetEvidence trailException loopTax Return Management should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Return Preparation Available By The 5th...

Step 2

Variance Between ERP GL And Tax Engine...

Step 3

Returns Generated In...

Step 4

Multi-Jurisdiction Batch Filing Supported

Step 5

Filing Confirmation Number Stored And...

The ERP surface involved.

Module

Tax Return Management

Actors

Tax Manager, Tax Analyst, Tax Engine / Filing Service (Avalara Returns, Vertex Returns), State Revenue Agencies

Tier

Tier 2

Finance area

Tax & Regulatory Compliance

Region lens

US and UK finance teams

Publication date

April 14, 2026

Return preparation available by the 5th business day after period close; variance between ERP GL and tax engine ledger surfaced as line-item exceptions; returns generated in jurisdiction-specific format (e.g., Colorado DR-0100, California BOE-401); multi-jurisdiction batch filing supported; filing confirmation number stored and linked to return record; amended return workflow supported; deadline calendar with auto-alert 10 days and 3 days prior to due date.

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 1Return preparation available by the 5th business day after period closeGiven posted invoices and credit memos for a closed period across all active nexus jurisdictions
Control 2variance between ERP GL and tax engine ledger surfaced as line-item exceptionswhen the Tax Manager initiates return preparation by the 5th business day after period close
Control 3
returns generated in jurisdiction-specific format (e.g., Colorado DR-0100, California BOE-401
then variance between ERP GL and tax engine ledger is surfaced as line-item exceptions and returns are generated in jurisdiction-specific format with filing confirmation number stored
Control 4multi-jurisdiction batch filing supportednegative) when unresolved variances exceed the configured threshold then return submission is blocked until variances are cleared or approved.
Control 5filing confirmation number stored and linked to return recordAll sales/use tax returns filed on time with zero manual reconciliation between ERP and tax engine.
Control 6amended return workflow supportedAll sales/use tax returns filed on time with zero manual reconciliation between ERP and tax engine.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventAt period-end, the Tax Manager initiates return preparation for all active nexus jurisdictions. The ERP extracts gross sales, taxable sales, exempt sales, and tax collected by jurisdiction from posted invoices and credit memos. Data is reconciled against the tax engine's transaction ledger; discrepancies surface as variance alerts. The Tax Analyst reviews and approves the return data, attaches supporting schedules, and submits filing to the filing service or agency portal. The system records the filing date, confirmation number, and amount remitted, then closes the return period.
Control rules
Return preparation available by the 5th business day after period close;
variance between ERP GL and tax engine ledger surfaced as line-item exceptions;
returns generated in jurisdiction-specific format (e.g., Colorado DR-0100, California BOE-401);
multi-jurisdiction batch filing supported;
filing confirmation number stored and linked to return record;
amended return workflow supported;
deadline calendar with auto-alert 10 days and 3 days prior to due date.
Acceptance proofGiven posted invoices and credit memos for a closed period across all active nexus jurisdictions; when the Tax Manager initiates return preparation by the 5th business day after period close; then variance between ERP GL and tax engine ledger is surfaced as line-item exceptions and returns are generated in jurisdiction-specific format with filing confirmation number stored; (negative) when unresolved variances exceed the configured threshold then return submission is blocked until variances are cleared or approved.
Data record
tax_return { id: string, entity_id: string, jurisdiction_code: string, period_start: date, period_end: date, gross_sales_minor: int64, taxable_sales_minor: int64, exempt_sales_minor: int64, tax_collected_minor: int64, currency_code: char(3), filing_confirmation: string, filed_at: timestamp, status: enum(DRAFT,VARIANCE_REVIEW,APPROVED,FILED,AMENDED), external_id: string };
tax_return_variance { return_id, variance_type: enum(TIMING,RATE,MISSING), amount_minor: int64, currency_code: char(3) };
(reference, product may differ).
System event
POST /v1/tax-returns/prepare { entity_id, period_start, period_end, jurisdiction_codes[] } -> 202 { job_id };
GET /v1/tax-returns/{id};
POST /v1/tax-returns/{id}/submit -> 200 { confirmation_number };
GET /v1/tax-returns/{id}/variances;
emits tax_return.prepared, tax_return.filed events;
idempotent via external_id.
Lifecycle state
DRAFT -> VARIANCE_REVIEW -> APPROVED -> FILED;
terminal AMENDED;
guard: unresolved variances above threshold block transition to FILED;
amended return requires original filing confirmation.

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

`tax_return` { id: string, entity_id: string, jurisdiction_code: string, period_start: date, period_end: date, gross_sales_minor: int64, taxable_sales_minor: int64, exempt_sales_minor: int64, tax_collected_minor: int64, currency_code: char(3), filing_confirmation: string, filed_at: timestamp, status: enum(DRAFT,VARIANCE_REVIEW,APPROVED,FILED,AMENDED), external_id: string }; `tax_return_variance` { return_id, variance_type: enum(TIMING,RATE,MISSING), amount_minor: int64, currency_code: char(3) }; (reference, product may differ).

API and events

`POST /v1/tax-returns/prepare` { entity_id, period_start, period_end, jurisdiction_codes[] } -> 202 { job_id }; `GET /v1/tax-returns/{id}`; `POST /v1/tax-returns/{id}/submit` -> 200 { confirmation_number }; `GET /v1/tax-returns/{id}/variances`; emits `tax_return.prepared`, `tax_return.filed` events; idempotent via `external_id`.

State transitions

`DRAFT -> VARIANCE_REVIEW -> APPROVED -> FILED`; terminal `AMENDED`; guard: unresolved variances above threshold block transition to FILED; amended return requires original filing confirmation.

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