I_RETermTypeText

DDL: I_RETERMTYPETEXT SQL: IRETERMTYPETEXT Type: view_entity BASIC

Real Estate Term Type - Text

I_RETermTypeText is a Basic CDS View that provides data about "Real Estate Term Type - Text" in SAP S/4HANA. It reads from 1 data source (tivtmtermtypet) and exposes 7 fields with key fields Language, RealEstateObjectType, RETermType. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tivtmtermtypet tivtmtermtypet from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_RETermType _RETermType $projection.RETermType = _RETermType.RETermType and $projection.RealEstateObjectType = _RETermType.RealEstateObjectType
[1..1] I_REObjectType _REObjectType $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Term Type - Text view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RETermType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name RealEstateTermTypeText view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY RealEstateObjectType objtype Translation OType
KEY RETermType termtype Term Type
RETermTypeName xtermtype Term Categ.Name
_Language _Language
_RETermType _RETermType
_REObjectType _REObjectType

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_RETermTypeText.
-- 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: IRETERMTYPETEXT

CREATE VIEW I_RETermTypeText AS
SELECT
  spras AS Language,
  objtype AS RealEstateObjectType,
  termtype AS RETermType,
  xtermtype AS RETermTypeName
FROM tivtmtermtypet
LEFT OUTER JOIN I_RETermType AS _RETermType ON RETermType = _RETermType.RETermType AND RealEstateObjectType = _RETermType.RealEstateObjectType  -- association [0..1]
LEFT OUTER JOIN I_REObjectType AS _REObjectType ON RealEstateObjectType = _REObjectType.RealEstateObjectType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;