I_MPPurchasingSource

DDL: I_MPPURCHASINGSOURCE SQL: IMPPURSL Type: view BASIC

Source List Header Basic View

I_MPPurchasingSource is a Basic CDS View that provides data about "Source List Header Basic View" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_MPPurchasingSourceItem _MPPurchasingSourceItem $projection.Material = _MPPurchasingSourceItem.Material and $projection.Plant = _MPPurchasingSourceItem.Plant

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPPURSL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Source List Header Basic View view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
_MPPurchasingSourceItem _MPPurchasingSourceItem

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 I_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: IMPPURSL

CREATE VIEW I_MPPurchasingSource AS
SELECT
  Material,
  Plant
LEFT OUTER JOIN I_MPPurchasingSourceItem AS _MPPurchasingSourceItem ON Material = _MPPurchasingSourceItem.Material AND Plant = _MPPurchasingSourceItem.Plant  -- association [1..*]
;