Midwest Premier Logistics - Sample Data Package

Overview

This package contains realistic sample data representing a mid-sized 3PL (third-party logistics) company operating in the Midwest United States. The data is designed for:


Company Profile

Midwest Premier Logistics, LLC


Data Files

Core Operational Data (/data/)

FileRecordsDescription
tms_shipments.csv20Transportation Management System shipment records
wms_inventory.csv30Warehouse Management System inventory positions
lane_rates.csv25Contract and spot rates by lane
cycle_counts.csv25Inventory audit/cycle count records
carriers.csv12Carrier master data with performance metrics
dispatch_queue.csv14Active dispatch/load board
customers.csv10Customer master data
rate_shopping.csv18Rate comparison/shopping records

Documentation (/docs/)

FileDescription
rfp_tracker.mdActive and closed RFP tracking
SOP-WH-003_Inbound_Receiving.mdStandard Operating Procedure example
value_stream_map.mdOrder-to-delivery process map with Mermaid diagrams

Data Relationships

┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ Customers │────▶│ Shipments │────▶│ Dispatch │ └─────────────┘ └─────────────┘ └─────────────┘ │ │ ▼ ▼ ┌─────────────┐ ┌─────────────┐ │ Lane Rates │ │ Carriers │ └─────────────┘ └─────────────┘ │ ▼ ┌─────────────┐ │Rate Shopping│ └─────────────┘ ┌─────────────┐ ┌─────────────┐ │ Inventory │────▶│Cycle Counts │ └─────────────┘ └─────────────┘

Key Fields Reference

Shipment Statuses

StatusDescription
PendingOrder received, not yet planned
OpenReady for carrier assignment
TenderedSent to carrier, awaiting acceptance
ConfirmedCarrier accepted
Picked UpFreight collected from origin
In TransitEn route to destination
DeliveredCompleted

Carrier Preferred Status

StatusDescription
GoldStrategic partner, prioritize
SilverPreferred, standard rates
StandardApproved, backup capacity

Inventory ABC Classification

ClassVelocityTypical Location
AHigh (top 20%)Prime pick locations
BMedium (next 30%)Secondary locations
CLow (bottom 50%)Bulk/overflow storage

System Mapping

Data FileSource SystemIntegration
tms_shipments.csvOracle OTMEDI 204/214
wms_inventory.csvManhattan SCALEReal-time API
lane_rates.csvOracle OTM + DB2Manual + Query
cycle_counts.csvManhattan SCALEBatch export
carriers.csvOracle OTMMaster data sync
dispatch_queue.csvOracle OTMReal-time
customers.csvSAP S/4HANADaily sync
rate_shopping.csvOracle OTMTransaction log

AI/ML Use Cases

Demonstrated in This Data

  1. Rate Prediction
    • Input: lane_rates.csv, rate_shopping.csv
    • Goal: Predict optimal carrier/rate for new shipments
  2. Inventory Accuracy
    • Input: wms_inventory.csv, cycle_counts.csv
    • Goal: Predict variance, prioritize counts
  3. Carrier Performance
    • Input: carriers.csv, tms_shipments.csv
    • Goal: Score/rank carriers, predict acceptance
  4. Exception Detection
    • Input: dispatch_queue.csv, tms_shipments.csv
    • Goal: Flag at-risk shipments before delay
  5. Process Optimization
    • Input: value_stream_map.md, SOPs
    • Goal: Identify bottlenecks, suggest improvements

Sample Queries

Find shipments at risk of delay

SELECT shipment_id, customer_name, dest_city, delivery_date, status
FROM tms_shipments
WHERE status IN ('Tendered', 'Pending')
  AND pickup_date <= CURRENT_DATE;

Carrier performance ranking

SELECT carrier_name, on_time_delivery_pct, tender_acceptance_pct,
       claims_rate_pct, preferred_status
FROM carriers
ORDER BY on_time_delivery_pct DESC;

Inventory with high variance

SELECT sku, description, system_qty, actual_qty, variance_pct, variance_value
FROM cycle_counts
WHERE ABS(variance_pct) > 0.5
ORDER BY ABS(variance_value) DESC;

Glossary

TermDefinition
ASNAdvanced Ship Notice - electronic notification of incoming shipment
BOLBill of Lading - shipping document/contract
Cross-dockFacility where freight is transferred between trucks without storage
EDIElectronic Data Interchange - standard B2B messaging
FTLFull Truckload - shipment using entire trailer
LaneDefined freight route (origin - destination)
LTLLess Than Truckload - consolidated shipments
PROProgressive/Tracking number assigned by carrier
ReeferRefrigerated trailer
TMSTransportation Management System
WMSWarehouse Management System

Notes

Created: January 2026 | Version: 1.0