I_REIntegObjectValidity

DDL: I_REINTEGOBJECTVALIDITY SQL: IREINTOBJVAL Type: view COMPOSITE

Real Estate Integ Obj Validity

I_REIntegObjectValidity is a Composite CDS View that provides data about "Real Estate Integ Obj Validity" in SAP S/4HANA. It reads from 2 data sources (I_REIntegrationObjectBasicData, I_REIntegrationObjectBasicData) and exposes 4 fields with key field InternalRealEstateNumber. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_REIntegrationObjectBasicData _REIntegrationObject from
I_REIntegrationObjectBasicData _REIntegrationObject union_all

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_REIntegrationObjectTimeline _REIntegrationObjectTimeline _REIntegrationObject.InternalRealEstateNumber = _REIntegrationObjectTimeline.InternalRealEstateNumber and _REIntegrationObjectTimeline.REIntegrationObjectIsActive = 'X'
[0..1] I_REIntegrationObjectTimeline _REIntegObjectTimelineRltn _REIntegrationObjectRelation.InternalRealEstateNumberRltn = _REIntegObjectTimelineRltn.InternalRealEstateNumber and _REIntegObjectTimelineRltn.REIntegrationObjectIsActive = 'X'

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IREINTOBJVAL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Integ Obj Validity 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
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber I_REIntegrationObjectBasicData InternalRealEstateNumber RE Key
RealEstateExternalID I_REIntegrationObjectBasicData RealEstateExternalID External Key
InternalRealEstateNumber RE Key
RealEstateExternalID I_REIntegrationObjectBasicData RealEstateExternalID External Key

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_REIntegObjectValidity.
-- 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: IREINTOBJVAL

CREATE VIEW I_REIntegObjectValidity AS
SELECT
  _REIntegrationObject.InternalRealEstateNumber AS InternalRealEstateNumber,
  _REIntegrationObject.RealEstateExternalID AS RealEstateExternalID
FROM I_REIntegrationObjectBasicData AS _REIntegrationObject
LEFT OUTER JOIN I_REIntegrationObjectTimeline AS _REIntegrationObjectTimeline ON _REIntegrationObject.InternalRealEstateNumber = _REIntegrationObjectTimeline.InternalRealEstateNumber AND _REIntegrationObjectTimeline.REIntegrationObjectIsActive = 'X'  -- association [0..1]
LEFT OUTER JOIN I_REIntegrationObjectTimeline AS _REIntegObjectTimelineRltn ON _REIntegrationObjectRelation.InternalRealEstateNumberRltn = _REIntegObjectTimelineRltn.InternalRealEstateNumber AND _REIntegObjectTimelineRltn.REIntegrationObjectIsActive = 'X'  -- association [0..1]
-- UNION ALL with additional select branch(es): I_REIntegrationObjectBasicData
;