Rivane

Accounting
made smart

ERP Use CasesTier 2Published June 2, 2026

Recruiting & Applicant Tracking (ATS)

Recruiting & Applicant Tracking (ATS) for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Talent Acquisition / ATS is where ERP discipline either begins or breaks.

Recruiting & Applicant Tracking (ATS) 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: Average time-to-fill reduced; source-of-hire report enables budget reallocation toward top-performing channels; EEO tracking supports OFCCP compliance; zero offers extended outside approved compensation bands.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Job Board Integr...Start conditionATS Track EEO Da...Required checksStructured Score...Owner and SLAOffer Letter Pul...System updateOffer Approval R...Exception handlingAudit packetEvidence trailException loopTalent Acquisition / ATS should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Job Board Integration Push Postings...

Step 2

ATS Track EEO Data Separately From...

Step 3

Structured Scorecard Require Evaluation...

Step 4

Offer Letter Pull Approved Compensation...

Step 5

Offer Approval Routing Follow...

The ERP surface involved.

Module

Talent Acquisition / ATS

Actors

Recruiter, Hiring Manager, Candidate, HR Administrator

Tier

Tier 2

Finance area

Human Resources, Payroll & Workforce Management

Region lens

US and UK finance teams

Publication date

June 2, 2026

Job board integration must push postings within 30 minutes of publication and sync applicant data back hourly; ATS must track EEO data (race, gender, veteran status, disability) separately from application data with voluntary self-identification; structured scorecard must require evaluation on each defined competency before submission; offer letter must pull approved compensation and use e-signature workflow; offer approval routing must follow configured delegation of authority; time-to-fill and source-of-hire metrics must be reportable by department and job family.

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 1Job board integration must push postings within 30 minutes of publication and sync applicant data back hourlyGiven an approved headcount requisition and configured job boards
Control 2ATS must track EEO data (race, gender, veteran status, disability) separately from application data with voluntary self-identificationwhen Recruiter publishes a job posting
Control 3structured scorecard must require evaluation on each defined competency before submissionthen posting syncs to job boards within 30 minutes, EEO self-identification data is stored separately from application data, scorecard requires all competency ratings before submission, and accepted offer generates new-hire HRIS record
Control 4offer letter must pull approved compensation and use e-signature workflownegative) when offer compensation falls outside approved grade band then 422 with error code OFFER_OUTSIDE_COMPENSATION_BAND is returned.
Control 5offer approval routing must follow configured delegation of authorityAverage time-to-fill reduced; source-of-hire report enables budget reallocation toward top-performing channels; EEO tracking supports OFCCP compliance; zero offers extended outside approved compensation bands.
Control 6time-to-fill and source-of-hire metrics must be reportable by department and job family.Average time-to-fill reduced; source-of-hire report enables budget reallocation toward top-performing channels; EEO tracking supports OFCCP compliance; zero offers extended outside approved compensation bands.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventHiring Manager submits a headcount requisition linked to an approved position; Recruiter creates a job posting with description, requirements, compensation band, and target open date, then publishes to configured job boards (LinkedIn, Indeed, company careers page via XML feed); candidates apply via career portal; ATS auto-screens against minimum qualifications and ranks by keyword match; Recruiter manages candidates through configurable stages (phone screen, technical, panel, offer); Hiring Manager provides structured interview scorecards; approved offer is generated from the compensation band and routed for approval; accepted offer converts to a new-hire record in HRIS.
Control rulesJob board integration must push postings within 30 minutes of publication and sync applicant data back hourly; ATS must track EEO data (race, gender, veteran status, disability) separately from application data with voluntary self-identification; structured scorecard must require evaluation on each defined competency before submission; offer letter must pull approved compensation and use e-signature workflow; offer approval routing must follow configured delegation of authority; time-to-fill and source-of-hire metrics must be reportable by department and job family.
Acceptance proofGiven an approved headcount requisition and configured job boards; when Recruiter publishes a job posting; then posting syncs to job boards within 30 minutes, EEO self-identification data is stored separately from application data, scorecard requires all competency ratings before submission, and accepted offer generates new-hire HRIS record; (negative) when offer compensation falls outside approved grade band then 422 with error code OFFER_OUTSIDE_COMPENSATION_BAND is returned.
Data record
job_requisition { id: string, external_id: string, entity_id: string, position_id: string, title: string, grade: string, comp_band_min_minor: int64, comp_band_max_minor: int64, currency_code: char(3), status: enum(DRAFT,APPROVED,OPEN,FILLED,CANCELLED) };
candidate { id: string, requisition_id: string, external_id: string, stage: string, status: enum(ACTIVE,OFFER_EXTENDED,HIRED,REJECTED) };
(reference, product may differ).
System event
POST /v1/job-requisitions { position_id, grade, comp_band_min_minor, comp_band_max_minor, currency_code, external_id } -> 201 { id, status: "DRAFT" };
POST /v1/job-requisitions/{id}/publish -> 200 { status: "OPEN" };
POST /v1/candidates/{id}/extend-offer { offer_amount_minor, currency_code } -> 201;
emits ats.requisition_published, ats.offer_accepted, hr.new_hire_created;
idempotent via external_id.
Lifecycle state
DRAFT -> APPROVED -> OPEN -> FILLED;
terminal CANCELLED;
guard: OPEN requires approved headcount;
offer extension blocked if amount outside grade band;
FILLED on offer acceptance.

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

`job_requisition` { id: string, external_id: string, entity_id: string, position_id: string, title: string, grade: string, comp_band_min_minor: int64, comp_band_max_minor: int64, currency_code: char(3), status: enum(DRAFT,APPROVED,OPEN,FILLED,CANCELLED) }; `candidate` { id: string, requisition_id: string, external_id: string, stage: string, status: enum(ACTIVE,OFFER_EXTENDED,HIRED,REJECTED) }; (reference, product may differ).

API and events

`POST /v1/job-requisitions` { position_id, grade, comp_band_min_minor, comp_band_max_minor, currency_code, external_id } -> 201 { id, status: "DRAFT" }; `POST /v1/job-requisitions/{id}/publish` -> 200 { status: "OPEN" }; `POST /v1/candidates/{id}/extend-offer` { offer_amount_minor, currency_code } -> 201; emits `ats.requisition_published`, `ats.offer_accepted`, `hr.new_hire_created`; idempotent via `external_id`.

State transitions

`DRAFT -> APPROVED -> OPEN -> FILLED`; terminal `CANCELLED`; guard: OPEN requires approved headcount; offer extension blocked if amount outside grade band; FILLED on offer acceptance.

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