I_REServiceGroup

DDL: I_RESERVICEGROUP SQL: IRESERVICEGRP Type: view_entity COMPOSITE

Real Estate Service Group

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

Data Sources (1)

SourceAliasJoin Type
I_REServiceGroupBasicData I_REServiceGroupBasicData from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_REServiceGroupValidity _REServiceGroupValidity $projection.InternalRealEstateNumber = _REServiceGroupValidity.InternalRealEstateNumber
[1..1] E_REServiceGroup _Extension $projection.InternalRealEstateNumber = _Extension.InternalRealEstateNumber

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Real Estate Service Group view
ObjectModel.representativeKey InternalRealEstateNumber view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Metadata.allowExtensions true view
VDM.viewType #COMPOSITE view

Fields (42)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber InternalRealEstateNumber RE Key
REStatusObject REStatusObject Val. Obj. No.
RealEstateServiceGroupNumber RealEstateServiceGroupNumber Service Group
ValidityStartDate
ValidityEndDate
REServiceGroupType REServiceGroupType Service Group Type
REServiceGroupCategory REServiceGroupCategory Service Group Category
REServiceGroupName REServiceGroupName Service Group Name (Short)
REServiceGroupLongName REServiceGroupLongName Service Group Name (Long)
REParentIntRealEstateNumber REParentIntRealEstateNumber Parent Number
CompanyCode CompanyCode Receiver Company Code
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
RESourceOfCreation RESourceOfCreation Source.In.Entry
LastChangedByUser LastChangedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
RESourceOfChange RESourceOfChange Editing Source
Responsible Responsible User Name
REAuthorizationGroup REAuthorizationGroup Authoriz. Group
_ChangedByUser _ChangedByUser
_CompanyCode _CompanyCode
_CreatedByUser _CreatedByUser
_REAuthorizationGroup _REAuthorizationGroup
_REKeyAssgmt _REKeyAssgmt
_REObjectAssgmt _REObjectAssgmt
_REPartnerAssgmt _REPartnerAssgmt
_REReminderRule _REReminderRule
_REServiceGroupType _REServiceGroupType
_REServiceGroupCategory _REServiceGroupCategory
_RESrvcGrpObjectRelation _RESrvcGrpObjectRelation
_ResponsibleUser _ResponsibleUser
_StatusObject _StatusObject
_StatusObjectStatus _StatusObjectStatus
_REParentIntegrationObject _REParentIntegrationObject
_RESrvcGrpToContractAssgmt _RESrvcGrpToContractAssgmt
_REServiceGroupAcctObjAssgmt _REServiceGroupAcctObjAssgmt
_RESrvcGrpSettlementRule _RESrvcGrpSettlementRule
_RESrvcGrpSettlmtRule2CostCat _RESrvcGrpSettlmtRule2CostCat
_REApportionmentRule _REApportionmentRule
_REDenominatorRule _REDenominatorRule

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_REServiceGroup.
-- 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: IRESERVICEGRP

CREATE VIEW I_REServiceGroup AS
SELECT
  InternalRealEstateNumber,
  REStatusObject,
  RealEstateServiceGroupNumber,
  cast( _REServiceGroupValidity.ValidityStartDate as rebdvdmvalidfrom preserving type ) AS ValidityStartDate,
  cast( _REServiceGroupValidity.ValidityEndDate as rebdvdmvalidto preserving type ) AS ValidityEndDate,
  REServiceGroupType,
  REServiceGroupCategory,
  REServiceGroupName,
  REServiceGroupLongName,
  REParentIntRealEstateNumber,
  CompanyCode,
  CreatedByUser,
  CreationDate,
  CreationTime,
  RESourceOfCreation,
  LastChangedByUser,
  LastChangeDate,
  LastChangeTime,
  RESourceOfChange,
  Responsible,
  REAuthorizationGroup
FROM I_REServiceGroupBasicData
LEFT OUTER JOIN I_REServiceGroupValidity AS _REServiceGroupValidity ON InternalRealEstateNumber = _REServiceGroupValidity.InternalRealEstateNumber  -- association [1..1]
LEFT OUTER JOIN E_REServiceGroup AS _Extension ON InternalRealEstateNumber = _Extension.InternalRealEstateNumber  -- association [1..1]
;