I_REServiceGroupValidity

DDL: I_RESERVICEGROUPVALIDITY SQL: IRESERVGRPVAL Type: view_entity COMPOSITE

Real Estate Service Group Validity

I_REServiceGroupValidity is a Composite CDS View that provides data about "Real Estate Service Group Validity" in SAP S/4HANA. It reads from 1 data source (I_REServiceGroupBasicData) and exposes 1 field with key field InternalRealEstateNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_REServiceGroupBasicData _REServiceGroup from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_REIntegrationObjectTimeline _REIntegObjectTimelineRltn _RESrvcGrpObjectRelation.InternalRealEstateNumberRltn = _REIntegObjectTimelineRltn.InternalRealEstateNumber and _REIntegObjectTimelineRltn.REIntegrationObjectIsActive = 'X'

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Service Group Validity view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber I_REServiceGroupBasicData InternalRealEstateNumber RE 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_REServiceGroupValidity.
-- 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: IRESERVGRPVAL

CREATE VIEW I_REServiceGroupValidity AS
SELECT
  _REServiceGroup.InternalRealEstateNumber AS InternalRealEstateNumber
FROM I_REServiceGroupBasicData AS _REServiceGroup
LEFT OUTER JOIN I_REIntegrationObjectTimeline AS _REIntegObjectTimelineRltn ON _RESrvcGrpObjectRelation.InternalRealEstateNumberRltn = _REIntegObjectTimelineRltn.InternalRealEstateNumber AND _REIntegObjectTimelineRltn.REIntegrationObjectIsActive = 'X'  -- association [0..1]
;