Rivane

Accounting
made smart

ERP Use CasesTier 2Published May 5, 2026

Multi-Level Bill of Materials Creation & Versioning

Multi-Level Bill of Materials Creation & Versioning for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Product Engineering / BOM Management is where ERP discipline either begins or breaks.

Multi-Level Bill of Materials Creation & Versioning 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: Engineers maintain a single authoritative product structure; version drift between design and production is eliminated; MRP explosion uses the correct component revision, reducing material shortages and excess inventory.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Unlimited BOM Le...Start conditionEach BOM Line Ca...Required checksVersion Control ...Owner and SLAConcurrent Edit ...System updateBOM Comparison D...Exception handlingAudit packetEvidence trailException loopProduct Engineering / BOM Management should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Unlimited BOM Levels With...

Step 2

Each BOM Line Carries Item Number,...

Step 3

Version Control With Mandatory Change...

Step 4

Concurrent Edit Locking

Step 5

BOM Comparison Diff Report Across Versions

The ERP surface involved.

Module

Product Engineering / BOM Management

Actors

Product Engineer, Manufacturing Engineer, ERP System

Tier

Tier 2

Finance area

Manufacturing & Production

Region lens

US and UK finance teams

Publication date

May 5, 2026

Support unlimited BOM levels with circular-reference detection; each BOM line carries item number, revision, quantity, UOM, scrap factor %, operation reference, and effective date range; version control with mandatory change reason; concurrent edit locking; BOM comparison diff report across versions; BOM copy/clone with version increment; bulk component substitution; BOM explosion to flat component list with rolled-up quantities; BOM import via CSV/Excel; audit trail on every field change with user and timestamp.

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 1Support unlimited BOM levels with circular-reference detectionGiven an active finished-good item with no BOM
Control 2each BOM line carries item number, revision, quantity, UOM, scrap factor %, operation reference, and effective date rangewhen a product engineer POSTs a multi-level BOM with parent-child lines each carrying item_number, revision, quantity, uom, scrap_factor, and effective_date_start
Control 3version control with mandatory change reasonthen 201 returns bom_id with status DRAFT, version 1, all lines stored with external_id
Control 4concurrent edit lockingnegative) when a child line references its own ancestor item_number then 422 CIRCULAR_REFERENCE_DETECTED.
Control 5BOM comparison diff report across versionsEngineers maintain a single authoritative product structure; version drift between design and production is eliminated; MRP explosion uses the correct component revision, reducing material shortages and excess inventory.
Control 6BOM copy/clone with version incrementEngineers maintain a single authoritative product structure; version drift between design and production is eliminated; MRP explosion uses the correct component revision, reducing material shortages and excess inventory.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventA product engineer creates a multi-level BOM for a new finished good, defining parent-child component relationships, quantities, units of measure, and reference designators at each level. The system assigns a BOM version number and status (Draft). After peer review, the engineer promotes the BOM to Active status, making it available for MRP and production order creation. Prior versions are archived but remain queryable for historical production lots. The active BOM version is stamped on every work order created against it, ensuring traceability from finished good back to component revision.
Control rulesSupport unlimited BOM levels with circular-reference detection; each BOM line carries item number, revision, quantity, UOM, scrap factor %, operation reference, and effective date range; version control with mandatory change reason; concurrent edit locking; BOM comparison diff report across versions; BOM copy/clone with version increment; bulk component substitution; BOM explosion to flat component list with rolled-up quantities; BOM import via CSV/Excel; audit trail on every field change with user and timestamp.
Acceptance proofGiven an active finished-good item with no BOM; when a product engineer POSTs a multi-level BOM with parent-child lines each carrying item_number, revision, quantity, uom, scrap_factor, and effective_date_start; then 201 returns bom_id with status DRAFT, version 1, all lines stored with external_id; (negative) when a child line references its own ancestor item_number then 422 CIRCULAR_REFERENCE_DETECTED.
Data record
boms { bom_id: string, item_id: string, version: int, status: enum, change_reason: string, effective_date: date, external_id: string };
bom_lines { line_id: string, bom_id: string, component_item_id: string, revision: string, quantity: numeric, uom: string, scrap_factor_pct: numeric, level: int, external_id: string };
bom has_many bom_lines;
(reference, product may differ).
System event
POST /v1/boms { item_id, version, lines[] } -> 201 { bom_id, status: DRAFT };
PATCH /v1/boms/{bom_id}/activate -> 200 { status: ACTIVE };
GET /v1/boms/{bom_id}/explosion returns flat component list with rolled quantities;
emits bom.activated event;
idempotent via external_id.
Lifecycle state
DRAFT -> ACTIVE;
terminal ARCHIVED;
guard: circular reference blocks any save;
only DRAFT may be edited;
ACTIVE blocks delete while referenced by open work orders.

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

`boms` { bom_id: string, item_id: string, version: int, status: enum, change_reason: string, effective_date: date, external_id: string }; `bom_lines` { line_id: string, bom_id: string, component_item_id: string, revision: string, quantity: numeric, uom: string, scrap_factor_pct: numeric, level: int, external_id: string }; bom has_many bom_lines; (reference, product may differ).

API and events

`POST /v1/boms` { item_id, version, lines[] } -> 201 { bom_id, status: DRAFT }; `PATCH /v1/boms/{bom_id}/activate` -> 200 { status: ACTIVE }; `GET /v1/boms/{bom_id}/explosion` returns flat component list with rolled quantities; emits `bom.activated` event; idempotent via `external_id`.

State transitions

`DRAFT -> ACTIVE`; terminal `ARCHIVED`; guard: circular reference blocks any save; only DRAFT may be edited; ACTIVE blocks delete while referenced by open work orders.

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