C_BPAddressVHTextVHTemp

DDL: C_BPADDRESSVHTEXTVHTEMP SQL: CPBPADRTYPEVHT Type: view CONSUMPTION

C_BPAddressVHTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (tb010) and exposes 3 fields with key fields AddressType, Language.

Data Sources (1)

SourceAliasJoin Type
tb010 tb010 from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPBPADRTYPEVHT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AddressType view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AddressType tb010 adr_kind
KEY Language tb010 spras
AddressUsageName tb010 textlong Description
@AbapCatalog.sqlViewName: 'CPBPADRTYPEVHT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AddressType'
@Search.searchable: true

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

define view C_BPAddressVHTextVHTemp
  as select from tb010
{
  key tb010.adr_kind as AddressType,
      @Semantics.language:true
  key tb010.spras    as Language,
      @Semantics.text: true
      @EndUserText.label: 'Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      tb010.textlong as AddressUsageName
} 
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB010"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/