I_InsurClmProdNameVH

DDL: I_INSURCLMPRODNAMEVH SQL: IICLPRODNAMEVH Type: view COMPOSITE

Textdarstellung für Produktbezeichnung

I_InsurClmProdNameVH is a Composite CDS View that provides data about "Textdarstellung für Produktbezeichnung" in SAP S/4HANA. It reads from 1 data source (I_InsurClmProdNameText) and exposes 4 fields with key fields Language, InsurClmPolicyProdGeneration, InsurClmPolicyProduct.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmProdNameText I_InsurClmProdNameText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IICLPRODNAMEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
EndUserText.label Textdarstellung für Produktbezeichnung view
AbapCatalog.buffering.type #FULL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.dataCategory #TEXT view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY InsurClmPolicyProdGeneration Generierungsnummer
KEY InsurClmPolicyProduct InsurClmPolicyProduct Policenprodukt-ID
InsurClmPlcyProdName InsurClmPlcyProdName Policenproduktname
@AbapCatalog.sqlViewName: 'IICLPRODNAMEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@Search.searchable: true
@EndUserText.label: 'Textdarstellung für Produktbezeichnung'

@AbapCatalog: {
  buffering.type: #FULL

}

@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE

@ObjectModel.usageType: {
    dataClass: #CUSTOMIZING,
    sizeCategory: #L,
    serviceQuality: #C
}
@ObjectModel.dataCategory: #TEXT

@Consumption.ranked: true
@ObjectModel.semanticKey: ['InsurClmPolicyProduct']

define view I_InsurClmProdNameVH
  as select from I_InsurClmProdNameText
{
      @Consumption.filter.hidden: true
      @UI.hidden: true
  key Language,
      @Consumption.filter.hidden: true
      @EndUserText.label: 'Generierungsnummer'
      //      @Search.defaultSearchElement: true

      //      @Search.fuzzinessThreshold: 0.8

      //      @Search.ranking: #LOW

      @UI.lineItem: [{position: 30 }]
  key max(InsurClmPolicyProdGeneration) as InsurClmPolicyProdGeneration,
      @EndUserText.label: 'Policenprodukt-ID'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @UI.lineItem: [{position: 10 }]
      @Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT
      @ObjectModel.text.element: ['InsurClmPlcyProdName']
  key InsurClmPolicyProduct,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @EndUserText.label: 'Policenproduktname'
      @Search.ranking: #LOW
      @Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT
      @UI.lineItem: [{position: 20 }]
      @Semantics.text      : true
      InsurClmPlcyProdName
}
where
  Language = $session.system_language
group by
  Language,
  InsurClmPolicyProduct,
  InsurClmPlcyProdName
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSURCLMPRODNAMETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/