I_REObjectTypeText

DDL: I_REOBJECTTYPETEXT SQL: IREOBJTYPET Type: view BASIC

Real Estate Object Type - Text

I_REObjectTypeText (Basic)

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

RealEstateObjectTypeText · Cross Applications

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

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentRE-FX
CapabilitiesLanguage-Dependent Text, Data Source in SQL Select, Data Source for Data Extraction, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tbo01 tbo01 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_REObjectType _REObjectType $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IREOBJTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Object Type - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RealEstateObjectType view
VDM.viewType #BASIC view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY RealEstateObjectType Object type
REObjectTypePrefix obart_ld Three-character, language-dependent value for object type
RealEstateObjectTypeName Name of Real Estate Object Type
RealEstateObjectTypeDesc RE Description 60 Characters
_REObjectType _REObjectType
_Language _Language

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_REObjectTypeText.
-- 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: IREOBJTYPET

CREATE VIEW I_REObjectTypeText AS
SELECT
  spras AS Language,
  cast(obart as recaobjtype preserving type ) AS RealEstateObjectType,
  obart_ld AS REObjectTypePrefix,
  cast(txt20 as recavdmxobjtype preserving type ) AS RealEstateObjectTypeName,
  cast (txt60 as recadesc60 preserving type ) AS RealEstateObjectTypeDesc
FROM tbo01
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]
;