Deprecated
This CDS view is deprecated in S/4HANA. Use I_MRPQuantityDistrKeyText instead. View all deprecated CDS views →

I_ProdnVersMRPDistrKeyText

DDL: I_PRODNVERSMRPDISTRKEYTEXT SQL: IPVDISTRKEYTXT Type: view BASIC

MRP Distribution Key Text

I_ProdnVersMRPDistrKeyText is a Basic CDS View that provides data about "MRP Distribution Key Text" in SAP S/4HANA. It reads from 1 data source (t437w) and exposes 5 fields with key fields DistributionKey, Plant, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t437w t437w from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPVDISTRKEYTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MRP Distribution Key Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DistributionKey view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MRPQuantityDistrKeyText view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DistributionKey t437w vertl Int. dist. key
KEY Plant t437w werks Receiving Plant
KEY Language t437w spras Off. Language
DistributionKeyText t437w text1 Vertikalization Text
_Plant _Plant

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_ProdnVersMRPDistrKeyText.
-- 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: IPVDISTRKEYTXT

CREATE VIEW I_ProdnVersMRPDistrKeyText AS
SELECT
  t437w.vertl AS DistributionKey,
  t437w.werks AS Plant,
  t437w.spras AS Language,
  t437w.text1 AS DistributionKeyText
FROM t437w
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;