P_Plant_Value_Help

DDL: P_PLANT_VALUE_HELP SQL: PLANT_VH Type: view BASIC

P_Plant_Value_Help is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 2 fields with key field Plant.

Data Sources (1)

SourceAliasJoin Type
I_Plant I_Plant from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PLANT_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
PlantName PlantName
@AbapCatalog.sqlViewName: 'PLANT_VH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_Plant_Value_Help
  as select from I_Plant
{
      @ObjectModel.text.element: ['PlantName']
  key Plant,
      @Semantics.text: true
      PlantName
}