C_ResvnDocPlantByCoCodeVH

DDL: C_RESVNDOCPLANTBYCOCODEVH SQL: CRESVNPLCCVH Type: view CONSUMPTION

Plant by Company Code Value Help

C_ResvnDocPlantByCoCodeVH is a Consumption CDS View that provides data about "Plant by Company Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 3 fields with key fields Plant, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_Plant I_Plant from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CRESVNPLCCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Plant by Company Code Value Help view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Plant view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
KEY CompanyCode I_CompanyCode CompanyCode
PlantName PlantName
@AbapCatalog.sqlViewName: 'CRESVNPLCCVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Plant by Company Code Value Help'
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'Plant'
@ObjectModel.semanticKey: ['Plant']
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable:true

define view C_ResvnDocPlantByCoCodeVH
  as select from           I_Plant
    left outer to one join I_ValuationArea on I_ValuationArea.ValuationArea = I_Plant.ValuationArea
    left outer to one join I_CompanyCode   on I_ValuationArea.CompanyCode = I_CompanyCode.CompanyCode
{

      @ObjectModel.text.element: 'PlantName'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key Plant,
  key I_CompanyCode.CompanyCode,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #MEDIUM
      PlantName

}