I_EntProjResultAnalysisKeyText

DDL: I_ENTPROJRESULTANALYSISKEYTEXT SQL: IEPSLTANLYKT Type: view BASIC

Ent Proj Rslt Anlys Key - Text

I_EntProjResultAnalysisKeyText is a Basic CDS View that provides data about "Ent Proj Rslt Anlys Key - Text" in SAP S/4HANA. It reads from 1 data source (tkkad) and exposes 5 fields with key fields Language, ResultAnalysisInternalID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tkkad tkkad from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_EntProjectResultAnalysisKey _RsltAnlysKey $projection.ResultAnalysisInternalID = _RsltAnlysKey.ResultAnalysisInternalID

Annotations (15)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEPSLTANLYKT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey ResultAnalysisInternalID view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Ent Proj Rslt Anlys Key - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY ResultAnalysisInternalID abgsl Results analysis key
ResultAnalysisDescription texta RA Description
_Language _Language
_RsltAnlysKey _RsltAnlysKey

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_EntProjResultAnalysisKeyText.
-- 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: IEPSLTANLYKT

CREATE VIEW I_EntProjResultAnalysisKeyText AS
SELECT
  spras AS Language,
  abgsl AS ResultAnalysisInternalID,
  texta AS ResultAnalysisDescription
FROM tkkad
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_EntProjectResultAnalysisKey AS _RsltAnlysKey ON ResultAnalysisInternalID = _RsltAnlysKey.ResultAnalysisInternalID  -- association [0..1]
;