I_InterpretationAlgorithmText

DDL: I_INTERPRETATIONALGORITHMTEXT SQL: IINTERPRETALGTXT Type: view BASIC

Interpretation Algorithm - Txt

I_InterpretationAlgorithmText is a Basic CDS View that provides data about "Interpretation Algorithm - Txt" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields InterpretationAlgorithm, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINTERPRETALGTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interpretation Algorithm - Txt view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InterpretationAlgorithm
KEY Language ddlanguage
InterpretationAlgorithmName ddtext Description of Interpretation Algorithm
@AbapCatalog.sqlViewName: 'IINTERPRETALGTXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Interpretation Algorithm - Txt'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#TEXT
@ObjectModel.semanticKey:  [ 'InterpretationAlgorithm' ]
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@Search.searchable:       true
@Metadata.ignorePropagatedAnnotations: true

define view I_InterpretationAlgorithmText as select from dd07t

{
  key    cast ( cast ( substring( domvalue_l, 1, 3 ) as abap.char( 3 ) ) as far_pstrl_interpretationalgo ) as InterpretationAlgorithm,
         @Semantics.language: true
  key    ddlanguage                                       as Language,
         @Semantics.text: true
         @EndUserText.label: 'Description of Interpretation Algorithm'
         @Search.defaultSearchElement:true
         @Search.fuzzinessThreshold:0.8
         @Search.ranking:#HIGH
         ddtext                                           as InterpretationAlgorithmName
}
where
      domname        = 'INTAG_EB'
  and dd07t.as4local = 'A'
  and ddlanguage     = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/