JDE Reference
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.
Module: 49 · Transportation ManagementColumn prefix: CM
Notes
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.
Fields
11 fields · 1 key
| 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 F4906on 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.
Query parameters
-- ============================================================
-- 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;2 parameters not filled: <catalog>, <schema_data>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f4906.CMCARS = f0101.ABAN8