I_InterpretationAlgorithmText
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA