I_REArchitectureObjectVH

DDL: I_REARCHITECTUREOBJECTVH Type: view_entity COMPOSITE Package: VDM_RE_OB

Real Estate Architecture Object

I_REArchitectureObjectVH is a Composite CDS View (Dimension) that provides data about "Real Estate Architecture Object" in SAP S/4HANA. It reads from 1 data source (I_REArchitectureObject) and exposes 12 fields with key field REArchitectureObjectNumber. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F9079). Part of development package VDM_RE_OB.

Data Sources (1)

SourceAliasJoin Type
I_REArchitectureObject I_REArchitectureObject from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_REObjectTypeDetails _REObjectTypeDetails $projection.InternalRealEstateNumber = _REObjectTypeDetails.InternalRealEstateNumber

Annotations (16)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.technicalName IREOBVH view
Analytics.internalName #LOCAL view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey REArchitectureObjectNumber view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
EndUserText.label Real Estate Architecture Object view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F9079 ASQL_F9079 C2 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY REArchitectureObjectNumber REArchitectureObjectNumber Architecture Object Number
InternalRealEstateNumber InternalRealEstateNumber RE Key
REArchitectureObjectType REArchitectureObjectType Architecture Object Type
REIdentification _REObjectTypeDetails REIdentification Object
REArchtrObjectAlternativeID REArchtrObjectAlternativeID Alternative ID
REArchitectureObjectName REArchitectureObjectName Architecture Object Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
REAuthorizationGroup REAuthorizationGroup Authoriz. Group
REStatusObject REStatusObject Val. Obj. No.
_REAuthorizationGroup _REAuthorizationGroup
_StatusObject _StatusObject

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_REArchitectureObjectVH.
-- 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_REArchitectureObjectVH AS
SELECT
  REArchitectureObjectNumber,
  InternalRealEstateNumber,
  REArchitectureObjectType,
  _REObjectTypeDetails.REIdentification AS REIdentification,
  REArchtrObjectAlternativeID,
  REArchitectureObjectName,
  ValidityStartDate,
  ValidityEndDate,
  REAuthorizationGroup,
  REStatusObject
FROM I_REArchitectureObject
LEFT OUTER JOIN I_REObjectTypeDetails AS _REObjectTypeDetails ON InternalRealEstateNumber = _REObjectTypeDetails.InternalRealEstateNumber  -- association [1..1]
;