Sourcing / RFQ is where ERP discipline either begins or breaks.
RFQ (Request for Quotation) Sourcing Event 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 number of quotes obtained per sourcing event increases to ≥ 3; competitive bidding achieves ≥ 5% cost savings versus last-purchase price; time from RFQ creation to PO issuance < 5 business days for standard events.
The control flow a finance team actually needs.
Step 1
RFQ Multi-Line, Multi-Supplier Bidding
Step 2
Supplier Portal Submission Not Require...
Step 3
Bid Submission Be Accepted Up To The...
Step 4
Late Submissions Be Rejected With A...
Step 5
Buyer Be Able To Split Award Across...
The ERP surface involved.
Module
Sourcing / RFQ
Actors
Buyer, Supplier (multiple), Procurement Manager
Tier
Tier 1
Finance area
Procurement & Supplier Management
Region lens
US and UK finance teams
Publication date
April 24, 2026
RFQ must support multi-line, multi-supplier bidding; supplier portal submission must not require internal credentials; bid submission must be accepted up to the exact deadline timestamp (server-side enforcement); late submissions must be rejected with a timestamped record; buyer must be able to split award across suppliers by line; PO conversion from award must preserve all RFQ line details; all bids must be immutable after deadline; bid data must be encrypted in transit and at rest.
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 area | Requirement | Acceptance proof |
|---|---|---|
| Control 1 | RFQ must support multi-line, multi-supplier bidding | Given an RFQ event with items, quantities, delivery location, deadline, and evaluation weights summing to 100% |
| Control 2 | supplier portal submission must not require internal credentials | when buyer sends invitations and suppliers submit bids by deadline |
| Control 3 | bid submission must be accepted up to the exact deadline timestamp (server-side enforcement | then system records bids as immutable, closes at deadline (server-enforced), presents side-by-side comparison, and on award converts awarded lines to POs preserving all RFQ line details |
| Control 4 | late submissions must be rejected with a timestamped record | negative) when a supplier attempts bid submission after deadline timestamp then POST returns 409 with problem+json code RFQ_DEADLINE_PASSED and rejection logged with timestamp. |
| Control 5 | buyer must be able to split award across suppliers by line | Average number of quotes obtained per sourcing event increases to ≥ 3; competitive bidding achieves ≥ 5% cost savings versus last-purchase price; time from RFQ creation to PO issuance < 5 business days for standard events. |
| Control 6 | PO conversion from award must preserve all RFQ line details | Average number of quotes obtained per sourcing event increases to ≥ 3; competitive bidding achieves ≥ 5% cost savings versus last-purchase price; time from RFQ creation to PO issuance < 5 business days for standard events. |
Audit evidence is a chain, not a folder.
| Evidence layer | What should be preserved |
|---|---|
| Business event | A buyer creates an RFQ event specifying items, required quantities, delivery location, submission deadline, and evaluation criteria (price, lead time, quality score weighting). The system sends invitations to selected suppliers from the approved vendor list; each invited supplier receives a secure portal link to submit their bid with unit prices, lead times, and optional notes. At deadline the system closes submissions and presents a side-by-side comparison matrix. The buyer awards lines to one or more suppliers and converts awarded lines to purchase orders in a single action. |
| Control rules | RFQ must support multi-line, multi-supplier bidding; supplier portal submission must not require internal credentials; bid submission must be accepted up to the exact deadline timestamp (server-side enforcement); late submissions must be rejected with a timestamped record; buyer must be able to split award across suppliers by line; PO conversion from award must preserve all RFQ line details; all bids must be immutable after deadline; bid data must be encrypted in transit and at rest. |
| Acceptance proof | Given an RFQ event with items, quantities, delivery location, deadline, and evaluation weights summing to 100%; when buyer sends invitations and suppliers submit bids by deadline; then system records bids as immutable, closes at deadline (server-enforced), presents side-by-side comparison, and on award converts awarded lines to POs preserving all RFQ line details; (negative) when a supplier attempts bid submission after deadline timestamp then POST returns 409 with problem+json code RFQ_DEADLINE_PASSED and rejection logged with timestamp. |
| Data record | |
| System event | |
| Lifecycle state | |
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
`rfq_event` { id: string, entity_id: string, deadline: timestamp, status: enum, evaluation_criteria: jsonb, external_id: string }; `rfq_line` { id: string, rfq_id: string, item_id: string, quantity: int, delivery_location: string }; `rfq_bid` { id: string, rfq_id: string, supplier_id: string, submitted_at: timestamp, status: enum }; `rfq_bid_line` { id: string, bid_id: string, rfq_line_id: string, unit_price_minor: int64, currency_code: char(3), lead_time_days: int }; `rfq_award` { id: string, rfq_id: string, supplier_id: string, rfq_line_id: string, po_id: string }; (reference, product may differ).API and events
`POST /v1/rfq-events` { lines[], invited_suppliers[], deadline, evaluation_criteria[] } -> 201 { id, status, portal_links[] }; `POST /v1/rfq-events/{id}/bids` { supplier_id, lines[{rfq_line_id, unit_price_minor, currency_code, lead_time_days}] } -> 201 { bid_id }; `POST /v1/rfq-events/{id}/award` { awards[{rfq_line_id, supplier_id}] } -> 201 { po_ids[] }; emits `procurement.rfq_closed`, `procurement.rfq_awarded` events; idempotent via `external_id`.State transitions
`DRAFT -> OPEN -> CLOSED -> AWARDED`; terminal `CANCELLED`; guard: bid submission blocked after deadline; all bids immutable after CLOSED; award converts directly to PO in one action.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.