Skip to content
JDE Reference

F4906

master

One row per carrier - the transportation attributes (SCAC code, auto-pay, performance rating) hung off an address book number that acts as a carrier.

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

KeyFieldAliasDescriptionTypeLengthFlags
Primary keyCMCARSCARSCarrier number - the address book number (F0101.ABAN8) this carrier record extends.Numeric8
CMSCACSCACStandard Carrier Alpha Code - the industry ID, useful for matching external freight data.String4
CMCAMDCAMDAuto-pay flag - Y means freight update creates the carrier voucher automatically without a matched invoice.Character1
CMSTFTSTFTShipment tracking type for this carrier.String3
CMRFQ1RFQ1Reference number qualifier 1 used for tracking.String2
CMRFQ2RFQ2Reference number qualifier 2 used for tracking.String2
CMRNDNRNDNRounding rule applied when rating this carrier.Character1
CMDWFCDWFCDimensional weight factor for parcel-style rating.Numeric3
CMRSLARSLAY/N - carrier is eligible for automatic route selection.String1
CMPFSDPFSDWhether payable freight posts at summary or detail level.String1
CMPRFMPRFMCarrier performance rating.Numeric3

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

  • F4906F0101foreign key · N:1
    ON f4906.CMCARS = f0101.ABAN8

Programs That Use This Table