C_FormOfAddressTextVHTemp

DDL: C_FORMOFADDRESSTEXTVHTEMP SQL: CFORMOFADDRTVH Type: view CONSUMPTION

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

Data Sources (1)

SourceAliasJoin Type
I_FormOfAddressText I_FormOfAddressText from

Annotations (9)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY FormOfAddress FormOfAddress
FormOfAddressName FormOfAddressName Description
@AbapCatalog.sqlViewName: 'CFORMOFADDRTVH'
//@Analytics.dataExtraction.enabled : true

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'FormOfAddress'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@Search.searchable: true
//@EndUserText.label: 'Form of Address Value Help Text'

define view C_FormOfAddressTextVHTemp
  as select from I_FormOfAddressText
{
      @Semantics.language : true
  key Language          as Language,

      @Search.defaultSearchElement: true
  key FormOfAddress     as FormOfAddress,
      @Semantics.text : true
      @EndUserText.label: 'Description'
      @Consumption.filter.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #LOW
      FormOfAddressName as FormOfAddressName
}