P_AnaEketSdmMiration1

DDL: P_ANAEKETSDMMIRATION1 SQL: PSDMMMEKET1 Type: view COMPOSITE

Pur Docs not migrated to MMPUR_ANA_EKET

P_AnaEketSdmMiration1 is a Composite CDS View that provides data about "Pur Docs not migrated to MMPUR_ANA_EKET" in SAP S/4HANA. It reads from 2 data sources (I_PurgDocScheduleLine, I_PurchasingDocumentItem) and exposes 2 fields with key field PurchasingDocument.

Data Sources (2)

SourceAliasJoin Type
I_PurgDocScheduleLine eket inner
I_PurchasingDocumentItem ekpo inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSDMMMEKET1 view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Pur Docs not migrated to MMPUR_ANA_EKET view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekko PurchasingDocument Purchasing Document
PurchasingDocumentCategory ekko PurchasingDocumentCategory Doc. Category

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_AnaEketSdmMiration1.
-- 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: PSDMMMEKET1

CREATE VIEW P_AnaEketSdmMiration1 AS
SELECT
  ekko.PurchasingDocument AS PurchasingDocument,
  ekko.PurchasingDocumentCategory AS PurchasingDocumentCategory
INNER JOIN I_PurchasingDocumentItem AS ekpo ON /* join condition not captured in parsed metadata */
INNER JOIN I_PurgDocScheduleLine AS eket ON /* join condition not captured in parsed metadata */
;