I_REObjectTypeDetails

DDL: I_REOBJECTTYPEDETAILS SQL: IREOBJTYPDET Type: view COMPOSITE

Real Estate Object Type Details

I_REObjectTypeDetails (Composite)

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

RealEstateObjectDetails · Cross Applications

I_REObjectTypeDetails is a Composite CDS View that provides data about "Real Estate Object Type Details" in SAP S/4HANA. It reads from 1 data source (I_REKeyAssgmt) and exposes 16 fields with key field REStatusObject. It has 13 associations to related views.

SAP Help Documentation

CategoryMaster
Data CategoryDimension
Purpose
This CDS view provides detailed information about real estate objects, including their types, identification keys, and associated entities. It serves as a dimension in analytical scenarios, enabling users to extract and analyze data related to object types and their relationships with other business entities. This CDS view provides the data to answer the following business questions: What are the details of various objects, including their types and identification keys? How are objects associated with contracts, and rental objects? What are the names and prefixes of object types in the system language? How can objects be integrated with other business processes and service groups? 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 REObjectTypeDetails Object Number InternalRealEstateNumber Internal Real Estate Number RealEstateObjectType Object Type REIdentificationKey Obj. Identification Key REIdentification Obj. Identification REAccountingObjectName Object Name

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, Data Source for Data Extraction, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_REKeyAssgmt _REObjectTypeDetails from

Associations (13)

CardinalityTargetAliasCondition
[1..1] I_REKeyAssgmt _REKeyAssgmt $projection.REStatusObject = _REKeyAssgmt.REStatusObject
[0..1] I_REObjectTypeText _REObjectTypeText _REObjectTypeText.RealEstateObjectType = $projection.RealEstateObjectType and _REObjectTypeText.Language = $session.system_language
[0..1] I_REContract _REContract $projection.REStatusObject = _REContract.REStatusObject
[0..1] I_REBusinessEntity _REBusinessEntity $projection.REStatusObject = _REBusinessEntity.REStatusObject
[0..1] I_REBuilding _REBuilding $projection.REStatusObject = _REBuilding.REStatusObject
[0..1] I_REProperty _REProperty $projection.REStatusObject = _REProperty.REStatusObject
[0..1] I_RERentalObject _RERentalObject $projection.REStatusObject = _RERentalObject.REStatusObject
[0..1] I_RESettlementUnit _RESettlementUnit $projection.REStatusObject = _RESettlementUnit.REStatusObject
[0..1] I_REIntegrationObject _REIntegrationObject $projection.REStatusObject = _REIntegrationObject.REStatusObject
[0..1] I_REServiceGroup _REServiceGroup $projection.REStatusObject = _REServiceGroup.REStatusObject
[0..1] I_REUsableObject _REUsableObject $projection.REStatusObject = _REUsableObject.REStatusObject
[0..1] I_RERentableObject _RERentableObject $projection.REStatusObject = _RERentableObject.REStatusObject
[0..1] I_REGenericRentalObject _REGenericRentalObject $projection.REStatusObject = _REGenericRentalObject.REStatusObject

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IREOBJTYPDET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Object Type Details view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey REStatusObject view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY REStatusObject REStatusObject Val. Obj. No.
InternalRealEstateNumber InternalRealEstateNumber Internal Key of Real Estate Object
RealEstateObjectType RealEstateObjectType Object Type
REIdentificationKey REIdentificationKey ID Part Key, for example "1000/123"
_REKeyAssgmt _REKeyAssgmt
_REContract _REContract
_REBusinessEntity _REBusinessEntity
_REBuilding _REBuilding
_REProperty _REProperty
_RERentalObject _RERentalObject
_RESettlementUnit _RESettlementUnit
_REIntegrationObject _REIntegrationObject
_REServiceGroup _REServiceGroup
_REUsableObject _REUsableObject
_RERentableObject _RERentableObject
_REGenericRentalObject _REGenericRentalObject

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_REObjectTypeDetails.
-- 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: IREOBJTYPDET

CREATE VIEW I_REObjectTypeDetails AS
SELECT
  REStatusObject,
  InternalRealEstateNumber,
  RealEstateObjectType,
  REIdentificationKey
FROM I_REKeyAssgmt AS _REObjectTypeDetails
LEFT OUTER JOIN I_REKeyAssgmt AS _REKeyAssgmt ON REStatusObject = _REKeyAssgmt.REStatusObject  -- association [1..1]
LEFT OUTER JOIN I_REObjectTypeText AS _REObjectTypeText ON _REObjectTypeText.RealEstateObjectType = RealEstateObjectType AND _REObjectTypeText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_REContract AS _REContract ON REStatusObject = _REContract.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REBusinessEntity AS _REBusinessEntity ON REStatusObject = _REBusinessEntity.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REBuilding AS _REBuilding ON REStatusObject = _REBuilding.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REProperty AS _REProperty ON REStatusObject = _REProperty.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_RERentalObject AS _RERentalObject ON REStatusObject = _RERentalObject.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_RESettlementUnit AS _RESettlementUnit ON REStatusObject = _RESettlementUnit.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REIntegrationObject AS _REIntegrationObject ON REStatusObject = _REIntegrationObject.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REServiceGroup AS _REServiceGroup ON REStatusObject = _REServiceGroup.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REUsableObject AS _REUsableObject ON REStatusObject = _REUsableObject.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_RERentableObject AS _RERentableObject ON REStatusObject = _RERentableObject.REStatusObject  -- association [0..1]
LEFT OUTER JOIN I_REGenericRentalObject AS _REGenericRentalObject ON REStatusObject = _REGenericRentalObject.REStatusObject  -- association [0..1]
;