I_ProjectClaimPhaseText

DDL: I_PROJECTCLAIMPHASETEXT SQL: ICLAIMPHASETXT Type: view BASIC

Project Claim Phase - Text

I_ProjectClaimPhaseText is a Basic CDS View that provides data about "Project Claim Phase - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ProjectClaimProcessingPhase, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProjectClaimPhase _PMNotificationPhase $projection.ProjectClaimProcessingPhase = _PMNotificationPhase.ProjectClaimProcessingPhase
[0..1] I_Language _Language _Language.Language = dd07t.ddlanguage

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICLAIMPHASETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.representativeKey ProjectClaimProcessingPhase view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Claim Phase - Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProjectClaimProcessingPhase
KEY Language dd07t ddlanguage Lang.
PrjClaimProcessingPhaseDesc dd07t ddtext Short text
_Language _Language
_PMNotificationPhase _PMNotificationPhase

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_ProjectClaimPhaseText.
-- 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: ICLAIMPHASETXT

CREATE VIEW I_ProjectClaimPhaseText AS
SELECT
  cast( dd07t.domvalue_l as ps_s4_qm_phase ) AS ProjectClaimProcessingPhase,
  dd07t.ddlanguage AS Language,
  dd07t.ddtext AS PrjClaimProcessingPhaseDesc
FROM dd07t
LEFT OUTER JOIN I_ProjectClaimPhase AS _PMNotificationPhase ON ProjectClaimProcessingPhase = _PMNotificationPhase.ProjectClaimProcessingPhase  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = dd07t.ddlanguage  -- association [0..1]
;