c_purdoclistflndocbase

DDL: C_PURDOCLISTFLNDOCBASE SQL: CDOCLFLNDOCBASE Type: view CONSUMPTION Package: ODATA_MM_PUR_DOCLIST

Follow on Document Base

c_purdoclistflndocbase is a Consumption CDS View that provides data about "Follow on Document Base" in SAP S/4HANA. It reads from 2 data sources (ekes, ekpo) and exposes 2 fields with key fields PurchasingDocument, PurchasingDocumentItem. Part of development package ODATA_MM_PUR_DOCLIST.

Data Sources (2)

SourceAliasJoin Type
ekes ekes inner
ekpo ekpo from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CDOCLFLNDOCBASE view
VDM.viewType #CONSUMPTION view
EndUserText.label Follow on Document Base view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekpo ebeln Source PurchDoc
KEY PurchasingDocumentItem ekpo ebelp Item pur. doc.

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 c_purdoclistflndocbase.
-- 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: CDOCLFLNDOCBASE

CREATE VIEW c_purdoclistflndocbase AS
SELECT
  ekpo.ebeln AS PurchasingDocument,
  ekpo.ebelp AS PurchasingDocumentItem
FROM ekpo
INNER JOIN ekes ON /* join condition not captured in parsed metadata */
;