I_REValuationStatusCockpitText

DDL: I_REVALUATIONSTATUSCOCKPITTEXT SQL: IREVALCPSTATUST Type: view BASIC

Status Text of a RE Contract Valuation

I_REValuationStatusCockpitText is a Basic CDS View that provides data about "Status Text of a RE Contract Valuation" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, REValuationStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IREVALCPSTATUST view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Status Text of a RE Contract Valuation view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey REValuationStatus view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY REValuationStatus domvalue_l Lower Value
DomainValue domvalue_l Lower Value
REValuationStatusDesc ddtext Short text
_Language _Language
_REValuationStatusCockpit _REValuationStatusCockpit

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_REValuationStatusCockpitText.
-- 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: IREVALCPSTATUST

CREATE VIEW I_REValuationStatusCockpitText AS
SELECT
  ddlanguage AS Language,
  domvalue_l AS REValuationStatus,
  domvalue_l AS DomainValue,
  ddtext AS REValuationStatusDesc
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;