P_PurOrdSglSchedLineHelperVw3

DDL: P_PURORDSGLSCHEDLINEHELPERVW3 SQL: PPOSCHHLP3 Type: view CONSUMPTION

Purchase Order minimum schedule line

P_PurOrdSglSchedLineHelperVw3 is a Consumption CDS View that provides data about "Purchase Order minimum schedule line" in SAP S/4HANA. It reads from 2 data sources (P_PurOrdSglSchedLineHelperVw2, I_PurgDocScheduleLine) and exposes 2 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (2)

SourceAliasJoin Type
P_PurOrdSglSchedLineHelperVw2 _PurOrdSglSchedLineHelperVw2 from
I_PurgDocScheduleLine I_PurgDocScheduleLine inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PPOSCHHLP3 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #CONSUMPTION view
EndUserText.label Purchase Order minimum schedule line 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_PurOrdSglSchedLineHelperVw3.
-- 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: PPOSCHHLP3

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