Rivane

Accounting
made smart

ERP Use CasesTier 2Published May 25, 2026

Territory and Quota Management

Territory and Quota Management for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Territory & Quota Management is where ERP discipline either begins or breaks.

Territory and Quota Management 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: 100% of new accounts auto-routed to correct territory within 5 minutes of creation; quota attainment visible to all levels in real time; zero manual attainment calculation in spreadsheets

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Territory Defini...Start conditionAutomated Lead/A...Required checksQuota Entry In C...Owner and SLAProrated Quota R...System updateAttainment = Boo...Exception handlingAudit packetEvidence trailException loopTerritory & Quota Management should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Territory Definition By ≥3 Dimensions

Step 2

Automated Lead/Account Routing On...

Step 3

Quota Entry In Currency At...

Step 4

Prorated Quota Recalculation On...

Step 5

Attainment = Bookings ÷ Quota Displayed...

The ERP surface involved.

Module

Territory & Quota Management

Actors

Sales Ops Manager, Sales Manager, Account Executive

Tier

Tier 2

Finance area

Sales, CRM & Customer Management

Region lens

US and UK finance teams

Publication date

May 25, 2026

Territory definition by ≥3 dimensions (geo, industry, named account); automated lead/account routing on record creation and ownership change; quota entry in currency at account-executive and team-level; prorated quota recalculation on mid-year territory change; attainment = bookings ÷ quota displayed as percentage with trend; quota import via CSV; territory overlap conflict detection; historical quota vs attainment retained when territory is reassigned; manager rollup of team quota and attainment

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 1Territory definition by ≥3 dimensions (geo, industry, named accountGiven territory rules defined by geography and industry with quota targets per rep
Control 2automated lead/account routing on record creation and ownership changewhen a new account is created matching a territory rule, then it is auto-assigned to the owning territory within 5 minutes
Control 3quota entry in currency at account-executive and team-levelwhen a rep changes territory mid-year, then historical bookings retain prior-territory attribution and a prorated quota is created for the new territory
Control 4prorated quota recalculation on mid-year territory changenegative) when two territory rules overlap for the same account attributes without a priority tiebreaker, then the system detects the conflict and alerts the admin with 422 and error code TERRITORY_OVERLAP_CONFLICT.
Control 5attainment = bookings ÷ quota displayed as percentage with trend100% of new accounts auto-routed to correct territory within 5 minutes of creation; quota attainment visible to all levels in real time; zero manual attainment calculation in spreadsheets
Control 6quota import via CSV100% of new accounts auto-routed to correct territory within 5 minutes of creation; quota attainment visible to all levels in real time; zero manual attainment calculation in spreadsheets

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventSales Ops defines territory rules by geography (country, state/region, postal code), industry vertical, or named account list. Quota targets are set per rep and per territory for the fiscal year and broken into quarterly sub-quotas. Account and lead assignment rules route new records to the owning territory automatically. When a rep changes territory mid-year, their historical bookings stay attributed to the prior territory and a prorated new quota is created. Attainment is calculated live as opportunities close and displayed on rep and manager dashboards.
Control rulesTerritory definition by ≥3 dimensions (geo, industry, named account); automated lead/account routing on record creation and ownership change; quota entry in currency at account-executive and team-level; prorated quota recalculation on mid-year territory change; attainment = bookings ÷ quota displayed as percentage with trend; quota import via CSV; territory overlap conflict detection; historical quota vs attainment retained when territory is reassigned; manager rollup of team quota and attainment
Acceptance proofGiven territory rules defined by geography and industry with quota targets per rep; when a new account is created matching a territory rule, then it is auto-assigned to the owning territory within 5 minutes; when a rep changes territory mid-year, then historical bookings retain prior-territory attribution and a prorated quota is created for the new territory; (negative) when two territory rules overlap for the same account attributes without a priority tiebreaker, then the system detects the conflict and alerts the admin with 422 and error code TERRITORY_OVERLAP_CONFLICT.
Data record
territory { id: string (terr_*), external_id: string, name: string, rules: array[{ dimension: enum(GEO, INDUSTRY, NAMED_ACCOUNT), values: array }], status: enum(ACTIVE, ARCHIVED) };
quota { id: string (quota_*), external_id: string, territory_id: string, rep_id: string, period: string, quota_amount_minor: int64, currency_code: char(3), prorated: bool };
linked to account, opportunity;
(reference, product may differ).
System event
POST /v1/territories { external_id, name, rules } -> 201 { id, status };
POST /v1/quotas { external_id, territory_id, rep_id, period, quota_amount_minor, currency_code } -> 201 { id };
GET /v1/territories/{id}/attainment?period= -> 200 { attainment_pct, bookings_minor, quota_minor, currency_code };
POST /v1/territories/import (CSV) -> 202;
emits territory.assigned, quota.prorated events;
idempotent via external_id.
Lifecycle state
Territory: DRAFT -> ACTIVE -> ARCHIVED;
quota: ACTIVE -> PRORATED | COMPLETED;
guard: ARCHIVED territory reassigns accounts before deactivation;
PRORATED quota created automatically on mid-year rep transfer;
attainment computed live from closed-won opportunities.

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

`territory` { id: string (terr_*), external_id: string, name: string, rules: array[{ dimension: enum(GEO, INDUSTRY, NAMED_ACCOUNT), values: array }], status: enum(ACTIVE, ARCHIVED) }; `quota` { id: string (quota_*), external_id: string, territory_id: string, rep_id: string, period: string, quota_amount_minor: int64, currency_code: char(3), prorated: bool }; linked to `account`, `opportunity`; (reference, product may differ).

API and events

`POST /v1/territories` { external_id, name, rules } -> 201 { id, status }; `POST /v1/quotas` { external_id, territory_id, rep_id, period, quota_amount_minor, currency_code } -> 201 { id }; `GET /v1/territories/{id}/attainment?period=` -> 200 { attainment_pct, bookings_minor, quota_minor, currency_code }; `POST /v1/territories/import` (CSV) -> 202; emits `territory.assigned`, `quota.prorated` events; idempotent via `external_id`.

State transitions

Territory: `DRAFT -> ACTIVE -> ARCHIVED`; quota: `ACTIVE -> PRORATED | COMPLETED`; guard: ARCHIVED territory reassigns accounts before deactivation; PRORATED quota created automatically on mid-year rep transfer; attainment computed live from closed-won opportunities.

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