Skip to content
JDE Reference

F4942

transaction

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

Notes

Join to F4211 on DOCO+DCTO+KCOO+LNID; join to the shipment on SHPN. Line number carries 3 implied decimals, matching F4211.

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.
Used in the library
KPI definitions
Dashboard patterns

Fields

24 fields · 6 key

24 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 24 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyISSHPNSHPNShipment number - the system-assigned key that groups order lines for transport; the same value lands on F4211.SDSHPN.Numeric8
Primary keyISRSSNRSSNRouting step number within the shipment.Numeric3
Primary keyISDOCODOCOOrder number of the related order line - joins F4211.SDDOCO (or F4311 for inbound).Numeric8
Primary keyISDCTODCTOOrder type of the related order line.String2
Primary keyISKCOOKCOOOrder key company of the related order line.String5
Primary keyISLNIDLNIDOrder line number; 3 implied decimals - matches F4211.SDLNID as stored.Numeric6
ISWGTSWGTSShipment weight in the weight UoM; stored with 4 implied decimals - divide by 10,000.Numeric15
ISWTUMWTUMWeight unit of measure.String2
ISSCVLSCVLScheduled volume in the volume UoM.Numeric15
ISVLUMVLUMVolume unit of measure.String2
ISITMITMShort item number; join to F4101.IMITM.Numeric8
ISSOQSSOQSQuantity shipped on this order line.Numeric15
ISUOMUOMUnit of measure of the transaction quantity.String2
ISPRP1PRP1Commodity class of the item.String3
ISNMFCNMFCNational Motor Freight Classification used for LTL rating.String4
ISDSGPDSGPDispatch group - groups compatible products for transport.String3
ISHZDCHZDCHazardous material class or division.String3
ISFRT1FRT1Freight category code 1 used in rating.String6
ISFRT2FRT2Freight category code 2 used in rating.String6
ISAEXPAEXPExtended sales value of the goods being shipped; 2 implied decimals.Numeric15
ISFEAFEAExtended sales value in the foreign currency; 2 implied decimals.Numeric15
ISCRCDCRCDTransaction (from) currency code.String3
ISECSTECSTExtended cost of the goods being shipped; 2 implied decimals.Numeric15
ISCUMSCUMSCumulative quantity shipped.Numeric15

Field provenance: hand-curated.

Boilerplate SQL

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

6 parameters not filled: <catalog>, <schema_data>, <SHPN>, <DOCO>, <DCTO>, <KCOO>

-- ============================================================
-- Table  : F4942 One 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.
-- Purpose: Column-selected read of F4942 — auto-generated from field metadata
-- Grain  : One row per ISSHPN + ISRSSN + ISDOCO + ISDCTO + ISKCOO + ISLNID
-- 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.ISSHPN AS "Shipment number - the system-assigned key that groups order lines for transport; the same value lands on F4211.SDSHPN.",
  f.ISRSSN / POWER(10, 1) AS "Routing step number within the shipment.",  -- implied decimals: 1 (verify in F9210)
  f.ISDOCO AS "Order number of the related order line - joins F4211.SDDOCO (or F4311 for inbound).",
  f.ISDCTO AS "Order type of the related order line.",
  f.ISKCOO AS "Order key company of the related order line.",
  f.ISLNID / POWER(10, 3) AS "Order line number; 3 implied decimals - matches F4211.SDLNID as stored.",  -- implied decimals: 3 (verify in F9210)
  f.ISWGTS / POWER(10, 4) AS "Shipment weight in the weight UoM; stored with 4 implied decimals - divide by 10,000.",  -- implied decimals: 4 (verify in F9210)
  f.ISWTUM AS "Weight unit of measure.",
  f.ISSCVL AS "Scheduled volume in the volume UoM.",
  f.ISVLUM AS "Volume unit of measure.",
  f.ISITM AS "Short item number; join to F4101.IMITM.",
  f.ISSOQS AS "Quantity shipped on this order line.",
  f.ISUOM AS "Unit of measure of the transaction quantity.",
  f.ISPRP1 AS "Commodity class of the item.",
  f.ISNMFC AS "National Motor Freight Classification used for LTL rating.",
  f.ISDSGP AS "Dispatch group - groups compatible products for transport.",
  f.ISHZDC AS "Hazardous material class or division.",
  f.ISFRT1 AS "Freight category code 1 used in rating.",
  f.ISFRT2 AS "Freight category code 2 used in rating.",
  f.ISAEXP / POWER(10, 2) AS "Extended sales value of the goods being shipped; 2 implied decimals.",  -- implied decimals: 2 (verify in F9210)
  f.ISFEA / POWER(10, 2) AS "Extended sales value in the foreign currency; 2 implied decimals.",  -- implied decimals: 2 (verify in F9210)
  f.ISCRCD AS "Transaction (from) currency code.",
  f.ISECST / POWER(10, 2) AS "Extended cost of the goods being shipped; 2 implied decimals.",  -- implied decimals: 2 (verify in F9210)
  f.ISCUMS AS "Cumulative quantity shipped."
FROM <catalog>.<schema_data>.f4942 f
WHERE
  f.ISSHPN = <SHPN>
  -- AND f.ISDOCO = <DOCO>
  -- AND f.ISDCTO = '<DCTO>'
  -- AND f.ISKCOO = '<KCOO>'
ORDER BY f.ISSHPN;

Verified September 2026

Relationships

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

Join details

  • F4215F4942header detail · 1:N
    ON f4215.XHSHPN = f4942.ISSHPN
  • F4942F4211foreign key · N:1
    ON f4942.ISDOCO = f4211.SDDOCO

Programs That Use This Table

No program mappings populated for this table yet.

Browse more 49 tables

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.