I_PlantAddressVH

DDL: I_PLANTADDRESSVH Type: view_entity BASIC Package: PLANT

Plant by Address

I_PlantAddressVH is a Basic CDS View that provides data about "Plant by Address" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 10 fields with key field Plant. Part of development package PLANT.

Data Sources (1)

SourceAliasJoin Type
I_Plant I_Plant from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Plant by Address view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Plant view
VDM.viewType #BASIC view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
PlantName PlantName
AddresseeFullName _StandardOrganizationAddress AddresseeFullName
AddresseeName1 _StandardOrganizationAddress AddresseeName1
AddresseeName2 _StandardOrganizationAddress AddresseeName2
AddressSearchTerm1 _StandardOrganizationAddress AddressSearchTerm1
AddressSearchTerm2 _StandardOrganizationAddress AddressSearchTerm2
PostalCode _StandardOrganizationAddress PostalCode
CityName _StandardOrganizationAddress CityName
AddressRepresentationCode _StandardOrganizationAddress AddressRepresentationCode
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Plant by Address'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel: {
    usageType: {
        sizeCategory: #S,
        serviceQuality: #A,
        dataClass:#CUSTOMIZING
    },
    dataCategory: #VALUE_HELP,
    representativeKey: 'Plant'
} 
@VDM.viewType: #BASIC

define view entity I_PlantAddressVH as select from I_Plant
{
      @ObjectModel.text.element: [ 'PlantName']
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key Plant,
  
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      PlantName,

      @Semantics.text: true
      _StandardOrganizationAddress.AddresseeFullName,
      
      @UI.hidden: true
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #MEDIUM
      _StandardOrganizationAddress.AddresseeName1,
      
      @UI.hidden: true
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #MEDIUM
      _StandardOrganizationAddress.AddresseeName2,
      
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      _StandardOrganizationAddress.AddressSearchTerm1,
      
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      _StandardOrganizationAddress.AddressSearchTerm2,
            
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      _StandardOrganizationAddress.PostalCode,
            
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      _StandardOrganizationAddress.CityName,         
             
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      _StandardOrganizationAddress.AddressRepresentationCode
}