P_InterpretationAlgorithm

DDL: P_INTERPRETATIONALGORITHM SQL: PINTERPRETALG Type: view BASIC

P_InterpretationAlgorithm is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key fields Intag, as4local, valpos, as4vers.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PINTERPRETALG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.private true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Intag
KEY as4local as4local Activation State
KEY valpos valpos Value key
KEY as4vers as4vers Version

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 P_InterpretationAlgorithm.
-- 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: PINTERPRETALG

CREATE VIEW P_InterpretationAlgorithm AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 3 ) as abap.char( 3 ) ) as far_pstrl_interpretationalgo ) AS Intag,
  as4local,
  valpos,
  as4vers
FROM dd07l
;