E_CntrlPurContrDistribution

DDL: E_CNTRLPURCONTRDISTRIBUTION SQL: EMMPURDOC_DISTR Type: view EXTENSION Package: ODATA_MM_CCTR_MAINTAIN

Extesnion View for Central Contract Distribution

E_CntrlPurContrDistribution is a Extension CDS View that provides data about "Extesnion View for Central Contract Distribution" in SAP S/4HANA. It reads from 1 data source (ekpo_distr) and exposes 3 fields with key fields PurchasingDocument, PurchasingDocumentItem, DistributionKey. Part of development package ODATA_MM_CCTR_MAINTAIN.

Data Sources (1)

SourceAliasJoin Type
ekpo_distr Persistence from

Annotations (7)

NameValueLevelField
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName EMMPURDOC_DISTR view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Extesnion View for Central Contract Distribution view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekpo_distr purchasingdocument Purchasing Document
KEY PurchasingDocumentItem ekpo_distr purchasingdocumentitem Purchasing Doc. Item
KEY DistributionKey ekpo_distr distributionnumber Distr. Number

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 E_CntrlPurContrDistribution.
-- 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: EMMPURDOC_DISTR

CREATE VIEW E_CntrlPurContrDistribution AS
SELECT
  Persistence.purchasingdocument AS PurchasingDocument,
  Persistence.purchasingdocumentitem AS PurchasingDocumentItem,
  Persistence.distributionnumber AS DistributionKey
FROM ekpo_distr AS Persistence
;