E_MPPurchasingSource

DDL: E_MPPURCHASINGSOURCE SQL: EMPPURSL Type: view EXTENSION Package: VDM_MM_PUR_SOS_SL

Extension View for Source List Header View

E_MPPurchasingSource is a Extension CDS View that provides data about "Extension View for Source List Header View" in SAP S/4HANA. It reads from 1 data source (eord) and exposes 3 fields with key fields Material, Plant, SourceListRecord. Part of development package VDM_MM_PUR_SOS_SL.

Data Sources (1)

SourceAliasJoin Type
eord Persistence from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName EMPPURSL view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Extension View for Source List Header View view
VDM.viewType #EXTENSION view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material eord matnr Vehicle Model
KEY Plant eord werks Receiving Plant
KEY SourceListRecord eord zeord 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_MPPurchasingSource.
-- 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: EMPPURSL

CREATE VIEW E_MPPurchasingSource AS
SELECT
  Persistence.matnr AS Material,
  Persistence.werks AS Plant,
  Persistence.zeord AS SourceListRecord
FROM eord AS Persistence
;