Fixed Assets - Physical Tracking is where ERP discipline either begins or breaks.
Physical Asset Inventory Audit with Barcode/RFID Scanning 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: Physical asset count completed for 5,000+ assets in under 2 days; discrepancy rate tracked year-over-year; all found/missing adjustments posted to GL in the same period as audit closure.
The control flow a finance team actually needs.
Step 1
Mobile Scanning App Work Offline With...
Step 2
Each Scan Records Timestamp, GPS...
Step 3
Asset Tag Barcode And Passive RFID
Step 4
Discrepancy Report Categorizes:...
Step 5
Photo Attachment Per Scanned Asset...
The ERP surface involved.
Module
Fixed Assets - Physical Tracking
Actors
Fixed Asset Auditor, Warehouse Manager, Mobile Scanning App, ERP System
Tier
Tier 3
Finance area
Fixed Assets & Lease Management
Region lens
US and UK finance teams
Publication date
June 15, 2026
Mobile scanning app must work offline with sync on reconnect; each scan records timestamp, GPS coordinates, and user ID; asset tag supports barcode (1D/2D) and passive RFID; discrepancy report categorizes: confirmed present, not found, found not in register, location mismatch; photo attachment per scanned asset stored and linked to audit cycle; audit cycle has open/in-progress/closed states; system prevents posting prior-period depreciation for assets retired via audit adjustment; audit completion rate shown as percentage.
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 | Mobile scanning app must work offline with sync on reconnect | Given an audit cycle initiated with a count sheet of active assets by location and mobile scanning app connected |
| Control 2 | each scan records timestamp, GPS coordinates, and user ID | when auditors scan asset tags (barcode/RFID) and the app syncs records |
| Control 3 | asset tag supports barcode (1D/2D) and passive RFID | then the system matches scans to the asset master, records timestamp/GPS/user_id per scan, flags discrepancies (not found, found-not-in-register, location mismatch), and the fixed asset accountant posts adjustments (retire missing, capitalize found-not-in-register, update location) that are reflected immediately in the asset register |
| Control 4 | discrepancy report categorizes: confirmed present, not found, found not in register, location mismatch | negative) when an audit cycle is closed with unresolved discrepancies then the system rejects with 422 UNRESOLVED_DISCREPANCIES_BLOCK_CLOSURE. |
| Control 5 | photo attachment per scanned asset stored and linked to audit cycle | Physical asset count completed for 5,000+ assets in under 2 days; discrepancy rate tracked year-over-year; all found/missing adjustments posted to GL in the same period as audit closure. |
| Control 6 | audit cycle has open/in-progress/closed states | Physical asset count completed for 5,000+ assets in under 2 days; discrepancy rate tracked year-over-year; all found/missing adjustments posted to GL in the same period as audit closure. |
Audit evidence is a chain, not a folder.
| Evidence layer | What should be preserved |
|---|---|
| Business event | The fixed asset manager initiates an annual physical inventory audit cycle, exporting a count sheet of all active assets by location. Auditors use a mobile barcode/RFID scanning app connected to the ERP to scan asset tags at each physical location. The app matches scanned tags to the asset master and records location, condition, and photo evidence. Discrepancies (found but not on register, on register but not found, wrong location) are flagged automatically. The fixed asset accountant reviews the discrepancy report and posts adjustments: missing assets are retired, found-but-unregistered assets are capitalized, location transfers are updated in the master. |
| Control rules | Mobile scanning app must work offline with sync on reconnect; each scan records timestamp, GPS coordinates, and user ID; asset tag supports barcode (1D/2D) and passive RFID; discrepancy report categorizes: confirmed present, not found, found not in register, location mismatch; photo attachment per scanned asset stored and linked to audit cycle; audit cycle has open/in-progress/closed states; system prevents posting prior-period depreciation for assets retired via audit adjustment; audit completion rate shown as percentage. |
| Acceptance proof | Given an audit cycle initiated with a count sheet of active assets by location and mobile scanning app connected; when auditors scan asset tags (barcode/RFID) and the app syncs records; then the system matches scans to the asset master, records timestamp/GPS/user_id per scan, flags discrepancies (not found, found-not-in-register, location mismatch), and the fixed asset accountant posts adjustments (retire missing, capitalize found-not-in-register, update location) that are reflected immediately in the asset register; (negative) when an audit cycle is closed with unresolved discrepancies then the system rejects with 422 UNRESOLVED_DISCREPANCIES_BLOCK_CLOSURE. |
| 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
`asset_audit_cycles` { id: string, external_id: string, entity_id: string, cycle_start_date: date, cycle_end_date: date, status: enum(OPEN,IN_PROGRESS,CLOSED), total_assets: int, scanned_count: int, completion_pct: decimal }; `asset_audit_scans` { id: string, cycle_id: string, asset_id: string, scanned_at: timestamp, gps_lat: decimal, gps_lon: decimal, scanned_by_user_id: string, condition: string, photo_url: string, discrepancy_type: enum(CONFIRMED,NOT_FOUND,FOUND_NOT_IN_REGISTER,LOCATION_MISMATCH) }; (reference, product may differ).API and events
`POST /v1/asset-audit-cycles` { entity_id, cycle_start_date, external_id } -> 201 { id, status: OPEN }; `POST /v1/asset-audit-cycles/{id}/scans` { asset_tag_id, gps_lat, gps_lon, condition, photo_url } -> 201 { id, discrepancy_type }; `GET /v1/asset-audit-cycles/{id}/discrepancy-report`; `POST /v1/asset-audit-cycles/{id}/close` -> 200 { status: CLOSED }; emits `asset_audit.closed` event; offline sync supported via batch upload endpoint; idempotent via `external_id`.State transitions
`OPEN -> IN_PROGRESS -> CLOSED`; guard: CLOSED requires zero unresolved discrepancies or explicit override with controller approval; prior-period depreciation blocked for assets retired via audit adjustment.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.