Skip to content
JDE Reference

F4961

transaction

One 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.

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).
No lifecycle badge means the table is current and not documented in JDE World. In field listings, K marks a primary-key field.

Fields

20 fields · 3 key

20 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 20 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyLLVMCUVMCUTrip depot business unit - first half of the load key.String12
Primary keyLLLDNMLDNMLoad number - second half of the load key; join to F4960/F4961.Numeric8
Primary keyLLTRPLTRPLLoad leg number within the load.Numeric3
LLORGNORGNOrigin address book number the goods ship from.Numeric8
LLNMCUNMCUShipment depot - the origin depot business unit.String12
LLSTSQSTSQStop sequence position on the load.Numeric3
LLSCWTSCWTScheduled load weight for the leg.Numeric15
LLWTUMWTUMWeight unit of measure.String2
LLSCVLSCVLScheduled volume in the volume UoM.Numeric15
LLVLUMVLUMVolume unit of measure.String2
LLSCCUSCCUScheduled cubes for the leg.Numeric15
LLCVUMCVUMCubes unit of measure.String2
LLLDDTLDDTLoad confirm date - when the load was confirmed at the depot.Numeric (DD type: Date)6
LLLDTMLDTMLoad confirm time (HHMMSS).Numeric6
LLLOADLOADScheduled load date.Numeric (DD type: Date)6
LLTMLSTMLSScheduled loading time (HHMMSS).Numeric6
LLPPDJPPDJPromised ship date.Numeric (DD type: Date)6
LLPMDTPMDTScheduled ship time (HHMMSS).Numeric6
LLADDJADDJActual ship date - the anchor for on-time-shipment analysis.Numeric (DD type: Date)6
LLADTMADTMActual ship time (HHMMSS).Numeric6

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F4961 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.

Query parameters

2 parameters not filled: <catalog>, <schema_data>

-- ============================================================
-- Table  : F4961 One 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.
-- Purpose: Column-selected read of F4961 — auto-generated from field metadata
-- Grain  : One row per LLVMCU + LLLDNM + LLTRPL
-- 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
  TRIM(f.LLVMCU) AS "Trip depot business unit - first half of the load key.",
  f.LLLDNM AS "Load number - second half of the load key; join to F4960/F4961.",
  f.LLTRPL AS "Load leg number within the load.",
  f.LLORGN AS "Origin address book number the goods ship from.",
  TRIM(f.LLNMCU) AS "Shipment depot - the origin depot business unit.",
  f.LLSTSQ AS "Stop sequence position on the load.",
  f.LLSCWT AS "Scheduled load weight for the leg.",
  f.LLWTUM AS "Weight unit of measure.",
  f.LLSCVL AS "Scheduled volume in the volume UoM.",
  f.LLVLUM AS "Volume unit of measure.",
  f.LLSCCU AS "Scheduled cubes for the leg.",
  f.LLCVUM AS "Cubes unit of measure.",
  CASE WHEN f.LLLDDT IS NULL OR f.LLLDDT = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.LLLDDT AS INT) DIV 1000, 1, 1), CAST(f.LLLDDT AS INT) % 1000 - 1) END AS "Load confirm date - when the load was confirmed at the depot.",  -- CYYDDD Julian → DATE
  f.LLLDTM AS "Load confirm time (HHMMSS).",
  CASE WHEN f.LLLOAD IS NULL OR f.LLLOAD = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.LLLOAD AS INT) DIV 1000, 1, 1), CAST(f.LLLOAD AS INT) % 1000 - 1) END AS "Scheduled load date.",  -- CYYDDD Julian → DATE
  f.LLTMLS AS "Scheduled loading time (HHMMSS).",
  CASE WHEN f.LLPPDJ IS NULL OR f.LLPPDJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.LLPPDJ AS INT) DIV 1000, 1, 1), CAST(f.LLPPDJ AS INT) % 1000 - 1) END AS "Promised ship date.",  -- CYYDDD Julian → DATE
  f.LLPMDT AS "Scheduled ship time (HHMMSS).",
  CASE WHEN f.LLADDJ IS NULL OR f.LLADDJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.LLADDJ AS INT) DIV 1000, 1, 1), CAST(f.LLADDJ AS INT) % 1000 - 1) END AS "Actual ship date - the anchor for on-time-shipment analysis.",  -- CYYDDD Julian → DATE
  f.LLADTM AS "Actual ship time (HHMMSS)."
FROM <catalog>.<schema_data>.f4961 f
ORDER BY f.LLVMCU;

Verified September 2026

Relationships

Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.

Join details

  • F4960F4961header detail · 1:N
    ON f4960.TMLDNM = f4961.LLLDNM

Programs That Use This Table

More Transportation Management tables

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice

Not affiliated with or endorsed by Oracle. Oracle, JD Edwards, and EnterpriseOne are registered trademarks of Oracle and/or its affiliates.