I_RETermType

DDL: I_RETERMTYPE Type: view_entity BASIC

Real Estate Term Type

I_RETermType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Real Estate Term Type · Cross Applications

I_RETermType is a Basic CDS View (Dimension) that provides data about "Real Estate Term Type" in SAP S/4HANA. It reads from 1 data source (tivtmtermtype) and exposes 5 fields with key fields RealEstateObjectType, RETermType. It has 2 associations to related views.

SAP Help Documentation

CategoryCustomizing
Data CategoryDimension
Purpose
This CDS view is designed to provide a structured representation of term types associated with objects. It serves as a dimension in analytical scenarios, allowing users to categorize and analyze terms effectively. This CDS view provides the data to answer the following business questions: What are the different term types associated with specific object types? How can terms be categorized for analytical purposes? What are the textual descriptions of term types for objects? How do term types relate to object types in a business context? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description RETermCategory Group RETermType Term Category RealEstateObjectType Object Type

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentRE-FX
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tivtmtermtype tivtmtermtype from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_REObjectType _REObjectType $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
[0..*] I_RETermTypeText _Text $projection.RealEstateObjectType = _Text.RealEstateObjectType and $projection.RETermType = _Text.RETermType

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Term Type view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
Analytics.technicalName IRETERMTYPE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey RETermType view
ObjectModel.sapObjectNodeType.name RealEstateTermType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RealEstateObjectType objtype Translation OType
KEY RETermType termtype Term Category
RETermCategory termcate Group of Term Categories
_Text _Text
_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_RETermType.
-- 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.

CREATE VIEW I_RETermType AS
SELECT
  objtype AS RealEstateObjectType,
  termtype AS RETermType,
  termcate AS RETermCategory
FROM tivtmtermtype
LEFT OUTER JOIN I_REObjectType AS _REObjectType ON RealEstateObjectType = _REObjectType.RealEstateObjectType  -- association [1..1]
LEFT OUTER JOIN I_RETermTypeText AS _Text ON RealEstateObjectType = _Text.RealEstateObjectType AND RETermType = _Text.RETermType  -- association [0..*]
;