I_MRPQuantityDistrKeyText

DDL: I_MRPQUANTITYDISTRKEYTEXT SQL: IMRPQTYDISTRTXT Type: view BASIC

Quantity Distribution Key in MRP - Text

I_MRPQuantityDistrKeyText is a Basic CDS View that provides data about "Quantity Distribution Key in MRP - Text" in SAP S/4HANA. It reads from 1 data source (t437w) and exposes 7 fields with key fields Plant, QuantityDistributionKey, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t437w txt from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_MRPQuantityDistributionKey _DistributionKey $projection.Plant = _DistributionKey.Plant and $projection.QuantityDistributionKey = _DistributionKey.QuantityDistributionKey

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IMRPQTYDISTRTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 000 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey QuantityDistributionKey view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Quantity Distribution Key in MRP - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant t437w werks
KEY QuantityDistributionKey t437w vertl
KEY Language t437w spras
QuantityDistributionKeyName t437w text1
_DistributionKey _DistributionKey
_Plant _Plant
_Language _Language
@AbapCatalog.sqlViewName: 'IMRPQTYDISTRTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #FULL, numberOfKeyFields: 000}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'QuantityDistributionKey'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Quantity Distribution Key in MRP - Text'

define view I_MRPQuantityDistrKeyText
  as select from t437w as txt
  association [1..1] to I_Plant                      as _Plant           on  $projection.Plant = _Plant.Plant
  association [0..1] to I_Language                   as _Language        on  $projection.Language = _Language.Language
  association [1..1] to I_MRPQuantityDistributionKey as _DistributionKey on  $projection.Plant                   = _DistributionKey.Plant
                                                                         and $projection.QuantityDistributionKey = _DistributionKey.QuantityDistributionKey
{
      @ObjectModel.foreignKey.association: '_Plant'
  key txt.werks as Plant,
      @ObjectModel.foreignKey.association: '_DistributionKey'  
      @ObjectModel.text.element: ['QuantityDistributionKeyName']
  key txt.vertl as QuantityDistributionKey,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key txt.spras as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt.text1 as QuantityDistributionKeyName,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _DistributionKey,
      _Plant,
      _Language
};