P_PurOrdSingleScheduleLineHlp1

DDL: P_PURORDSINGLESCHEDULELINEHLP1 SQL: PMMPURORDSSHLP1 Type: view COMPOSITE

P_PurOrdSingleScheduleLineHlp1 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLine) and exposes 3 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocScheduleLine I_PurgDocScheduleLine from

Annotations (7)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.private true view
AbapCatalog.sqlViewName PMMPURORDSSHLP1 view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument I_PurgDocScheduleLine PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem I_PurgDocScheduleLine PurchasingDocumentItem Purchasing Doc. Item
ScheduleLineDeliveryDate

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_PurOrdSingleScheduleLineHlp1.
-- 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.
-- SQL view name: PMMPURORDSSHLP1

CREATE VIEW P_PurOrdSingleScheduleLineHlp1 AS
SELECT
  I_PurgDocScheduleLine.PurchasingDocument AS PurchasingDocument,
  I_PurgDocScheduleLine.PurchasingDocumentItem AS PurchasingDocumentItem,
  min( I_PurgDocScheduleLine.ScheduleLineDeliveryDate ) AS ScheduleLineDeliveryDate
FROM I_PurgDocScheduleLine
;