C_MasterRecipePlantVH

DDL: C_MASTERRECIPEPLANTVH Type: view_entity CONSUMPTION Package: ODATA_PP_MASTER_RECIPE_API

Master Recipe Plant

C_MasterRecipePlantVH is a Consumption CDS View that provides data about "Master Recipe Plant" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 4 fields with key field Plant. Part of development package ODATA_PP_MASTER_RECIPE_API.

Data Sources (1)

SourceAliasJoin Type
I_Plant Plant from

Annotations (10)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
ObjectModel.representativeKey Plant view
EndUserText.label Master Recipe Plant view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
PlantName PlantName
SalesOrganization SalesOrganization
DistributionChannel
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #MANDATORY
@Search.searchable: true
@ObjectModel.representativeKey: 'Plant'
@EndUserText.label: 'Master Recipe Plant'
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
@ObjectModel.dataCategory: #VALUE_HELP
@Consumption.ranked: true
define view entity C_MasterRecipePlantVH
  as select from I_Plant as Plant
{
  @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @ObjectModel.text.element:  [ 'PlantName' ]
  key Plant                                                as Plant,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      PlantName                                            as PlantName,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      SalesOrganization,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      cast( DistributionChannel as vtweg preserving type ) as DistributionChannel
}