P_DeliveryHeader

DDL: P_DELIVERYHEADER Type: view_entity COMPOSITE

SD Document Delivery Header Data

P_DeliveryHeader is a Composite CDS View that provides data about "SD Document Delivery Header Data" in SAP S/4HANA. It reads from 1 data source (likp) and exposes 2 fields with key field DeliveryDocument.

Data Sources (1)

SourceAliasJoin Type
likp likp from

Annotations (7)

NameValueLevelField
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SD Document Delivery Header Data view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument vbeln SD Sched. Agmt
DeliveryCategory vbtyp TSW Det.Doc typ

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_DeliveryHeader.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW P_DeliveryHeader AS
SELECT
  vbeln AS DeliveryDocument,
  vbtyp AS DeliveryCategory
FROM likp
;