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 Lang.
InterpretationAlgorithmName ddtext Description of Interpretation Algorithm

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_InterpretationAlgorithmText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IINTERPRETALGTXT

CREATE VIEW I_InterpretationAlgorithmText AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 3 ) as abap.char( 3 ) ) as far_pstrl_interpretationalgo ) AS InterpretationAlgorithm,
  ddlanguage AS Language,
  ddtext AS InterpretationAlgorithmName
FROM dd07t
;