C_LegalFormTextVHTemp

DDL: C_LEGALFORMTEXTVHTEMP SQL: CLEGALFORMVHT Type: view CONSUMPTION

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

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerLegalFormText I_BusinessPartnerLegalFormText from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CLEGALFORMVHT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey LegalForm 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 LegalForm LegalForm
KEY Language Language
LegalFormDescription LegalFormDescription Legal Form Description
@AbapCatalog.sqlViewName: 'CLEGALFORMVHT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LegalForm'
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER

define view C_LegalFormTextVHTemp
  as select from I_BusinessPartnerLegalFormText
{

  key LegalForm,
      @Semantics.language:true
  key Language,
      @Semantics.text: true
      @EndUserText.label: 'Legal Form Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Consumption.filter.hidden: true
      LegalFormDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSPARTNERLEGALFORMTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/