C_BPDataProviderTypeTextVH

DDL: C_BPDATAPROVIDERTYPETEXTVH SQL: CBPDATAPROVIDERT Type: view CONSUMPTION

Text view for Data provider field

C_BPDataProviderTypeTextVH is a Consumption CDS View that provides data about "Text view for Data provider field" in SAP S/4HANA. It reads from 1 data source (I_BR_Domain) and exposes 5 fields with key fields DataProvider, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BR_Domain I_BR_Domain from

Associations (1)

CardinalityTargetAliasCondition
[0..1] C_BPDataProviderTypeVH _DataProviderValueHelp $projection.DataProvider = _DataProviderValueHelp.DataProvider

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CBPDATAPROVIDERT view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.representativeKey DataProvider view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Text view for Data provider field view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DataProvider
KEY Language Language
DataProviderText DomainText
DomainValue DomainValue
_DataProviderValueHelp _DataProviderValueHelp
@AbapCatalog.sqlViewName: 'CBPDATAPROVIDERT'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.representativeKey: 'DataProvider'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Text view for Data provider field'
define view C_BPDataProviderTypeTextVH
  as select from I_BR_Domain

  association [0..1] to C_BPDataProviderTypeVH as _DataProviderValueHelp on $projection.DataProvider = _DataProviderValueHelp.DataProvider
{
      @ObjectModel.foreignKey.association: '_DataProviderValueHelp'
  key cast ( cast ( substring( DomainValue, 1, 1 ) as abap.char( 1 ) ) as exbu_type )  as DataProvider,

      @Semantics.language:true
  key Language                                                                         as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.quickInfo: 'Short Description'
      @Consumption.filter.hidden: true
      DomainText                                                                       as DataProviderText,
      
      @Search.defaultSearchElement: true
      @Consumption.hidden: true
      DomainValue as DomainValue,
           
      _DataProviderValueHelp

}
where
  Name = 'EXBU_TYPE'