F4906
masterOne row per carrier - the transportation attributes (SCAC code, auto-pay, performance rating) hung off an address book number that acts as a carrier.
Thin table by design: name and address live in F0101, rates live in the rate tables. CARS is the join key everywhere a carrier appears.
What the badges mean
- Superseded
- Superseded — a newer table has replaced it, but older scripts still read this one.
- Also in JDE World
- Also present in JDE World A9.x on the same table name.
- master
- Data class: what the table holds — master data, transaction documents, control/setup values, history, or a workfile.
- Read/write access
- Access mode: how the paired program reads or writes this table — R (read), W (write), or R/W (both).
Fields
11 fields · 1 key
11 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | CMCARS | CARS | Carrier number - the address book number (F0101.ABAN8) this carrier record extends. | Numeric | 8 | |
| CMSCAC | SCAC | Standard Carrier Alpha Code - the industry ID, useful for matching external freight data. | String | 4 | ||
| CMCAMD | CAMD | Auto-pay flag - Y means freight update creates the carrier voucher automatically without a matched invoice. | Character | 1 | ||
| CMSTFT | STFT | Shipment tracking type for this carrier. | String | 3 | ||
| CMRFQ1 | RFQ1 | Reference number qualifier 1 used for tracking. | String | 2 | ||
| CMRFQ2 | RFQ2 | Reference number qualifier 2 used for tracking. | String | 2 | ||
| CMRNDN | RNDN | Rounding rule applied when rating this carrier. | Character | 1 | ||
| CMDWFC | DWFC | Dimensional weight factor for parcel-style rating. | Numeric | 3 | ||
| CMRSLA | RSLA | Y/N - carrier is eligible for automatic route selection. | String | 1 | ||
| CMPFSD | PFSD | Whether payable freight posts at summary or detail level. | String | 1 | ||
| CMPRFM | PRFM | Carrier performance rating. | Numeric | 3 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F4906 on Databricks — Julian dates, implied decimals, and padded strings are already converted. Set your Unity Catalog location and filter values below; they’re substituted into the SQL and the copy button.
2 parameters not filled: <catalog>, <schema_data>
-- ============================================================
-- Table : F4906 One row per carrier - the transportation attributes (SCAC code, auto-pay, performance rating) hung off an address book number that acts as a carrier.
-- Purpose: Column-selected read of F4906 — auto-generated from field metadata
-- Grain : One row per CMCARS
-- Notes : Auto-generated skeleton. Julian dates (CYYDDD) are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210); padded business-unit/UDC keys are TRIMmed. Audit columns (…USER/…PID/…UPMJ) are omitted — see the quirks guide. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
f.CMCARS AS "Carrier number - the address book number (F0101.ABAN8) this carrier record extends.",
f.CMSCAC AS "Standard Carrier Alpha Code - the industry ID, useful for matching external freight data.",
f.CMCAMD AS "Auto-pay flag - Y means freight update creates the carrier voucher automatically without a matched invoice.",
f.CMSTFT AS "Shipment tracking type for this carrier.",
f.CMRFQ1 AS "Reference number qualifier 1 used for tracking.",
f.CMRFQ2 AS "Reference number qualifier 2 used for tracking.",
f.CMRNDN AS "Rounding rule applied when rating this carrier.",
f.CMDWFC AS "Dimensional weight factor for parcel-style rating.",
f.CMRSLA AS "Y/N - carrier is eligible for automatic route selection.",
f.CMPFSD AS "Whether payable freight posts at summary or detail level.",
f.CMPRFM AS "Carrier performance rating."
FROM <catalog>.<schema_data>.f4906 f
ORDER BY f.CMCARS;Verified September 2026
Relationships
Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f4906.CMCARS = f0101.ABAN8
Programs That Use This Table
R read · W write · R/W read + write
More Transportation Management tables
- F4941One row per routing step of a shipment - where the carrier, mode, load assignment, scheduled vs. actual ship/delivery timestamps, and billable vs. payable freight totals live. The workhorse table for carrier performance and freight cost analysis.
- F4942One row per order line per shipment routing step - the bridge between order detail and the shipment, carrying the line's shipped quantity, weight, volume, and value.
- F4945One row per calculated freight charge on a shipment routing step or load - billable (customer) and payable (carrier) charges by rate name and charge code, as they stand before freight update moves them to history.
- F4960One row per load (trip) - a planned vehicle departure that groups shipments, keyed by trip depot plus load number, with carrier, vehicle, load status, and distance.
- F4961One row per leg of a load - a depot-to-stop slice of the trip with scheduled versus confirmed weight, volume, and cube, plus scheduled and actual ship dates.
- F4981One row per freight charge written by freight update (R4981) - the permanent audit trail that ties every billable and payable charge to the G/L document (voucher or invoice) it created. The system-of-record table for freight spend analytics.