C_ModProdSpecItemPlantVH

DDL: C_MODPRODSPECITEMPLANTVH Type: view_entity CONSUMPTION Package: VDM_MM_PUR_MPS

Model Product Specification Item Plants

C_ModProdSpecItemPlantVH is a Consumption CDS View that provides data about "Model Product Specification Item Plants" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 5 fields with key field Plant. It has 1 association to related views. Part of development package VDM_MM_PUR_MPS.

Data Sources (1)

SourceAliasJoin Type
I_Plant _Plant from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ValuationArea _ValuationArea $projection.ValuationArea = _ValuationArea.ValuationArea

Annotations (11)

NameValueLevelField
EndUserText.label Model Product Specification Item Plants view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.representativeKey Plant view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
PlantName PlantName Plant Name
CompanyCode _ValuationArea CompanyCode Company Code
ValuationArea I_Plant ValuationArea
_ValuationArea _ValuationArea
@EndUserText.label: 'Model Product Specification Item Plants'
@AccessControl: {
    authorizationCheck: #MANDATORY,
    personalData: {
        blocking: #NOT_REQUIRED
    }
}
@ObjectModel.representativeKey: 'Plant'
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass:#MASTER
@Search.searchable: true
@Consumption.ranked: true
@VDM.viewType: #CONSUMPTION
define view entity C_ModProdSpecItemPlantVH
  as select from I_Plant as _Plant
  association [0..1] to I_ValuationArea as _ValuationArea on $projection.ValuationArea = _ValuationArea.ValuationArea
{      
      @ObjectModel.text.element: [ 'PlantName' ]
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key Plant,
      
      @Semantics.text: true
      @EndUserText.label:'Plant Name'
      @EndUserText.quickInfo: 'Plant Name'
      PlantName,

      @Semantics.text: true
      @EndUserText.label:'Company Code'
      @EndUserText.quickInfo: 'Company Code'
      _ValuationArea.CompanyCode as CompanyCode,
      
      @Consumption.hidden: true
      @UI.hidden: true
      _Plant.ValuationArea,

      /* Associations */
      _ValuationArea
}