C_DeliveryPlantTextVHTEMP

DDL: C_DELIVERYPLANTTEXTVHTEMP SQL: CDELIVERYPLNTTXT Type: view CONSUMPTION Package: VDM_MD_BP

Delievery Plant VH text

C_DeliveryPlantTextVHTEMP is a Consumption CDS View that provides data about "Delievery Plant VH text" in SAP S/4HANA. It reads from 1 data source (I_Allwdplantsperslsorg) and exposes 6 fields with key field SalesOrganization. It has 3 associations to related views. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
I_Allwdplantsperslsorg I_Allwdplantsperslsorg from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_SalesOrganization _SalesOrganization $projection.SalesOrganization = _SalesOrganization.SalesOrganization
[0..1] I_DistributionChannel _DistributionChannel $projection.DistributionChannel = _DistributionChannel.DistributionChannel
[0..1] I_Plant _Text $projection.Plant = _Text.Plant

Annotations (11)

NameValueLevelField
EndUserText.label Delievery Plant VH text view
AbapCatalog.sqlViewName CDELIVERYPLNTTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.representativeKey Plant view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization SalesOrganization
salesorganizationkeyDistributionChannel
distributionchannelkeyPlant
_SalesOrganization _SalesOrganization
_DistributionChannel _DistributionChannel
_Text _Text
@EndUserText.label: 'Delievery Plant VH text'
@AbapCatalog.sqlViewName: 'CDELIVERYPLNTTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.representativeKey: 'Plant'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER

define view C_DeliveryPlantTextVHTEMP
  as select from I_Allwdplantsperslsorg

  association [0..1] to I_SalesOrganization   as _SalesOrganization   on $projection.SalesOrganization = _SalesOrganization.SalesOrganization

  association [0..1] to I_DistributionChannel as _DistributionChannel on $projection.DistributionChannel = _DistributionChannel.DistributionChannel

  association [0..1] to I_Plant               as _Text                on $projection.Plant = _Text.Plant

{
      @ObjectModel.foreignKey.association:'_SalesOrganization'
  key SalesOrganization, -- sales organization
      @ObjectModel.foreignKey.association:'_DistributionChannel'
  key DistributionChannel, -- distribution channel
  key Plant, -- plant


      @Semantics.text: true
      @EndUserText.label: 'Delivery Plant Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      _Text.PlantName -- plant name
  ,
      _SalesOrganization,
      _DistributionChannel,
      _Text

}