P_PurOrdSingleScheduleLineHlp3

DDL: P_PURORDSINGLESCHEDULELINEHLP3 SQL: PMMPURORDSSHLP3 Type: view COMPOSITE

P_PurOrdSingleScheduleLineHlp3 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_PurgDocScheduleLine, P_PurOrdSingleScheduleLineHlp2) and exposes 2 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (2)

SourceAliasJoin Type
I_PurgDocScheduleLine I_PurgDocScheduleLine inner
P_PurOrdSingleScheduleLineHlp2 P_PurOrdSingleScheduleLineHlp2 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 PMMPURORDSSHLP3 view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view

Fields (2)

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

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_PurOrdSingleScheduleLineHlp3.
-- 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: PMMPURORDSSHLP3

CREATE VIEW P_PurOrdSingleScheduleLineHlp3 AS
SELECT
  I_PurgDocScheduleLine.PurchasingDocument AS PurchasingDocument,
  I_PurgDocScheduleLine.PurchasingDocumentItem AS PurchasingDocumentItem
FROM P_PurOrdSingleScheduleLineHlp2
INNER JOIN I_PurgDocScheduleLine ON /* join condition not captured in parsed metadata */
;