Skip to content
SAP Reference

LIKP

transaction S/4HANA status: Active

SD Document: Delivery Header Data

Key fields

MANDT · VBELN

All 38 fields
What the badges mean
S/4HANA status: Active
Active and unchanged in S/4HANA.
S/4HANA status: Deprecated
Still readable today, but no longer SAP's strategic path — plan around it.
S/4HANA status: Replaced
Replaced by a new persistence in S/4HANA; the classic name may still answer reads (see read mechanism).
S/4HANA status: Migrating to IBP
Planning scope is moving from APO toward IBP.
S/4HANA status: Active (StRM) · Replaced (EWM)
Path-dependent: active with SAP Stock Room Management, replaced where EWM is the warehouse path.
S/4HANA status: Replaced · Compat View
Compatibility view: the classic table name is redirected to a view over the new persistence — see how the physical model moved.
S/4HANA status: Active · Proxy View
Proxy view: reads route through NSDM proxy/CDS views — see how the physical model moved.
master
Data class: what the table holds — master data, transaction documents, org structure, config, or texts (one row per language — see the quirks guide).
Linked type codes

CLNT the client key; filter it explicitly and carry it through every join.

NUMC fixed-width numeric text; keep it a string and keep the leading zeros.

DATS, TIMS character date (YYYYMMDD) and time (HHMMSS), zero-filled when initial.

CURR, CUKY, QUAN, UNIT amounts and quantities, meaningful only beside the currency key or unit that qualifies them.

LANG a language key in a text table — one row per language.

In field listings, K marks a primary-key field, and linked type codes in the Type column jump to the matching quirks-guide section.

What LIKP is for

One row per delivery document, created the moment VL01N (or its background equivalents) creates the delivery — before picking, before goods issue. A delivery number in LIKP is a plan to ship, not evidence anything shipped; WADAT_IST staying 00000000 is how you tell the difference.

Joins that work — and the traps

  • LIPS on (MANDT, VBELN)

    1:N, items.

    LIPS

  • KNA1 twice

    KUNNR is the ship-to, KUNAG the sold-to. Reports that join KNA1 once on "the customer field" silently pick one and are wrong for the other.

    KNA1

  • Statuses

    ECC reads VBUK on (MANDT, VBELN); S/4HANA has the status fields (WBSTK, GBSTK, FKSTK, KOSTK…) directly on LIKP. Same VBELN, no join.

    VBUK

  • The sales order is NOT on the header

    Order references live on LIPS (VGBEL/VGPOS) because one delivery can combine multiple orders.

    LIPS

What LIKP does not contain

No materials, no quantities (LIPS); no goods-movement evidence (MSEG/MATDOC via VBELN_IM, or VBFA); no route-execution/shipment data (VTTK/VTTP); in ECC, no statuses (VBUK).

What breaks in practice

  • Zero-dates: every DATS field is 00000000 until filled — cast blindly and open deliveries appear shipped on a garbage date.
  • One-delivery-one-order assumptions: order combination puts lines from several orders under one header.
  • OTD against the wrong date: WADAT vs LFDAT vs the order's requested date measure three different promises.

Shape & growth

Grows with shipment volume — one row per delivery ever created; header:item ratio follows your lines-per-delivery.

ECC vs S/4HANA

Table survives unchanged in role; gains the LIKP_STATUS include (statuses formerly in VBUK). Remains transparent; no compatibility-view indirection.

Fields

38 fields · 2 key

38 fields.

Table fields: key flag, field name, description, data type (linked to the data quirks guide where the type carries a known trap), length, and check-table references. 38 fields.
KeyFieldDescriptionTypeLengthReferences
Primary keyMANDTClientCLNT3T000
Primary keyVBELNDeliveryCHAR10
ERNAMName of Person Who Created the ObjectCHAR12
ERZETEntry TimeTIMS6
ERDATDate on Which Record Was CreatedDATS8
BZIRKSales DistrictCHAR6
VSTELShipping Point/Receiving PointCHAR4
VKORGSales OrganizationCHAR4TVKO
LFARTDelivery TypeCHAR4
LFDATDelivery DateDATS8
BLDATDocument Date in DocumentDATS8
WADATPlanned Goods Movement DateDATS8
WADAT_ISTActual Goods Movement DateDATS8
LDDATLoading DateDATS8
TDDATTransportation Planning DateDATS8
LFUHRDelivery TimeTIMS6
KUNAGSold-To PartyCHAR10KNA1
KUNNRShip-To PartyCHAR10KNA1
BTGEWTotal WeightQUAN15,3
NTGEWNet WeightQUAN15,3
GEWEIWeight UnitUNIT3T006
VOLUMVolumeQUAN15,3
VOLEHVolume UnitUNIT3T006
ANZPKTotal Number of Packages in DeliveryNUMC5
FKSTKS/4HANA only — this field is not on this table in ECC; the equivalent status lives on VBUK/VBUP thereBilling StatusCHAR1
ROUTERouteCHAR6
TRAGRTransportation GroupCHAR4
LIFEXExternal Identification of Delivery NoteCHAR35
VBTYPSD Document CategoryCHAR1
WERKSPlantCHAR4T001W
LGNUMWarehouse Number/ComplexCHAR3T300
VERURDistribution DeliveryCHAR35
LVSTKS/4HANA only — this field is not on this table in ECC; the equivalent status lives on VBUK/VBUP thereWarehouse StatusCHAR1
XBLNRReference Document NumberCHAR25
BOLNRBill of LadingCHAR35
LIFNRVendor Number at Header LevelCHAR10LFA1
INCO1Incoterms (Part 1)CHAR3
INCO2Incoterms (Part 2)CHAR28

Fields marked S/4 arrived on this table with S/4HANA’s VBUK/VBUP status-field move. In ECC the equivalent status lives on VBUK/VBUP, not here.

Linked type codes in the Type column jump to the matching section of the SAP data quirks guide.

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading LIKP on Databricks. Set your Unity Catalog location and filter values below — they’re substituted into the SQL and the copy button.

Query parameters

3 parameters not filled: <catalog>, <schema>, <MANDT>

-- ============================================================
-- Table  : LIKP SD Document: Delivery Header Data
-- Purpose: Column-selected read of LIKP — auto-generated from field metadata
-- Grain  : One row per VBELN
-- Notes  : Auto-generated skeleton. For multi-table transaction query patterns, see the linked t-codes on this page. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
  h.MANDT     AS "Client",
  h.VBELN     AS "Delivery",
  h.ERNAM     AS "Name of Person Who Created the Object",
  h.ERZET     AS "Entry Time",
  h.ERDAT     AS "Date on Which Record Was Created",
  h.BZIRK     AS "Sales District",
  h.VSTEL     AS "Shipping Point/Receiving Point",
  h.VKORG     AS "Sales Organization",
  h.LFART     AS "Delivery Type",
  h.LFDAT     AS "Delivery Date",
  h.BLDAT     AS "Document Date in Document",
  h.WADAT     AS "Planned Goods Movement Date",
  h.WADAT_IST AS "Actual Goods Movement Date",
  h.LDDAT     AS "Loading Date",
  h.TDDAT     AS "Transportation Planning Date",
  h.LFUHR     AS "Delivery Time",
  h.KUNAG     AS "Sold-To Party",
  h.KUNNR     AS "Ship-To Party",
  h.BTGEW     AS "Total Weight",
  h.NTGEW     AS "Net Weight",
  h.GEWEI     AS "Weight Unit",
  h.VOLUM     AS "Volume",
  h.VOLEH     AS "Volume Unit",
  h.ANZPK     AS "Total Number of Packages in Delivery",
  h.FKSTK     AS "Billing Status",
  h.ROUTE     AS "Route",
  h.TRAGR     AS "Transportation Group",
  h.LIFEX     AS "External Identification of Delivery Note",
  h.VBTYP     AS "SD Document Category",
  h.WERKS     AS "Plant",
  h.LGNUM     AS "Warehouse Number/Complex",
  h.VERUR     AS "Distribution Delivery",
  h.LVSTK     AS "Warehouse Status",
  h.XBLNR     AS "Reference Document Number",
  h.BOLNR     AS "Bill of Lading",
  h.LIFNR     AS "Vendor Number at Header Level",
  h.INCO1     AS "Incoterms (Part 1)",
  h.INCO2     AS "Incoterms (Part 2)"
FROM <catalog>.<schema>.likp h
WHERE
  h.MANDT = '<MANDT>'
ORDER BY h.VBELN;

Verified August 2026

More query patterns: VL01N VL02N VL03N

Released CDS views over this table

Released SAP standard VDM views that read over LIKP. Prefer these over classic-table reads on S/4HANA where available.

Relationships

Diagram of 1-hop neighbors — join details below.

Join details

  • LIKPLIPSheader item · 1:N
    ON likp.VBELN = lips.VBELN

Transaction Codes That Use This Table

More Sales & Distribution tables