I_REServiceGroup

DDL: I_RESERVICEGROUP SQL: IRESERVICEGRP Type: view_entity BASIC

Real Estate Service Group

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

Data Sources (1)

SourceAliasJoin Type
vicssg vicssg from

Associations (16)

CardinalityTargetAliasCondition
[1..1] I_REKeyAssgmt _REKeyAssgmt $projection.InternalRealEstateNumber = _REKeyAssgmt.InternalRealEstateNumber
[0..1] I_REAuthorizationGroup _REAuthorizationGroup $projection.REAuthorizationGroup = _REAuthorizationGroup.REAuthorizationGroup and _REAuthorizationGroup.RealEstateObjectType = 'J6'
[1..1] I_REServiceGroupType _REServiceGroupType $projection.REServiceGroupType = _REServiceGroupType.REServiceGroupType
[1..1] I_REServiceGroupCategory _REServiceGroupCategory $projection.REServiceGroupCategory = _REServiceGroupCategory.REServiceGroupCategory
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_StatusObject _StatusObject $projection.REStatusObject = _StatusObject.StatusObject
[1..*] I_StatusObjectStatus _StatusObjectStatus $projection.REStatusObject = _StatusObjectStatus.StatusObject
[1..*] I_RESrvcGrpToContractAssgmt _RESrvcGrpToContractAssgmt $projection.REStatusObject = _RESrvcGrpToContractAssgmt.REStatusObjectSource
[0..1] I_REArchitectureObject _REArchitectureObject $projection.REServiceGroupParentUUID = _REArchitectureObject.REArchitectureObjectUUID
[0..*] I_RESrvcGrpArchtrObjPartcipn _RESrvcGrpArchtrObjPartcipn $projection.REServiceGroupUUID = _RESrvcGrpArchtrObjPartcipn.REServiceGroupUUID
[0..*] I_RESrvcGrpSettlementRule _RESrvcGrpSettlementRule $projection.REServiceGroupUUID = _RESrvcGrpSettlementRule.REServiceGroupUUID
[0..*] I_RESrvcGrpSettlmtRule2CostCat _RESrvcGrpSettlmtRule2CostCat $projection.REServiceGroupUUID = _RESrvcGrpSettlmtRule2CostCat.REServiceGroupUUID
[0..*] I_REApportionmentRule _REApportionmentRule $projection.REServiceGroupUUID = _REApportionmentRule.REServiceGroupUUID
[0..*] I_RESrvcGrpDenominatorRule _REDenominatorRule $projection.REServiceGroupUUID = _REDenominatorRule.REServiceGroupUUID
[0..*] I_REServiceGroupAcctObjAssgmt _REServiceGroupAcctObjAssgmt $projection.REServiceGroupUUID = _REServiceGroupAcctObjAssgmt.REServiceGroupUUID
[1..1] E_REServiceGroup _Extension $projection.REServiceGroupUUID = _Extension.REServiceGroupUUID

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Real Estate Service Group view
ObjectModel.representativeKey REServiceGroupUUID 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 #BASIC view

Fields (32)

KeyFieldSource TableSource FieldDescription
KEY REServiceGroupUUID objectuuid UUID GO
InternalRealEstateNumber intreno Source Object
REStatusObject objnr Val. Obj. No.
REServiceGroupOID oid UUID
RealEstateServiceGroupNumber sgnr Service Group
REServiceGroupAlternativeID alternativeid Alternative ID
REServiceGroupName name Zone name
CompanyCode bukrs Value
REServiceGroupParentUUID parentobjectuuid UUID Parent GO
REServiceGroupType sgtype Service Group Type
REServiceGroupCategory sgcategory Service Group Category
REAuthorizationGroup authgrp Authorization Group
ValidityStartDate validfrom Vers.Valid From
ValidityEndDate validto Vers.Valid To
CreationDateTime creationdatetime Timestamp
LastChangeDateTime lastchangedatetime Timestamp
LocalLastChangeDateTime locallastchangedatetime Time Stamp
_CompanyCode _CompanyCode
_REAuthorizationGroup _REAuthorizationGroup
_REKeyAssgmt _REKeyAssgmt
_REServiceGroupType _REServiceGroupType
_REServiceGroupCategory _REServiceGroupCategory
_RESrvcGrpArchtrObjPartcipn _RESrvcGrpArchtrObjPartcipn
_StatusObject _StatusObject
_StatusObjectStatus _StatusObjectStatus
_REArchitectureObject _REArchitectureObject
_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
  objectuuid AS REServiceGroupUUID,
  intreno AS InternalRealEstateNumber,
  objnr AS REStatusObject,
  oid AS REServiceGroupOID,
  sgnr AS RealEstateServiceGroupNumber,
  alternativeid AS REServiceGroupAlternativeID,
  name AS REServiceGroupName,
  bukrs AS CompanyCode,
  parentobjectuuid AS REServiceGroupParentUUID,
  sgtype AS REServiceGroupType,
  sgcategory AS REServiceGroupCategory,
  authgrp AS REAuthorizationGroup,
  validfrom AS ValidityStartDate,
  validto AS ValidityEndDate,
  CreationDateTime,
  LastChangeDateTime,
  LocalLastChangeDateTime
FROM vicssg
LEFT OUTER JOIN I_REKeyAssgmt AS _REKeyAssgmt ON InternalRealEstateNumber = _REKeyAssgmt.InternalRealEstateNumber  -- association [1..1]
LEFT OUTER JOIN I_REAuthorizationGroup AS _REAuthorizationGroup ON REAuthorizationGroup = _REAuthorizationGroup.REAuthorizationGroup AND _REAuthorizationGroup.RealEstateObjectType = 'J6'  -- association [0..1]
LEFT OUTER JOIN I_REServiceGroupType AS _REServiceGroupType ON REServiceGroupType = _REServiceGroupType.REServiceGroupType  -- association [1..1]
LEFT OUTER JOIN I_REServiceGroupCategory AS _REServiceGroupCategory ON REServiceGroupCategory = _REServiceGroupCategory.REServiceGroupCategory  -- association [1..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_StatusObject AS _StatusObject ON REStatusObject = _StatusObject.StatusObject  -- association [0..1]
LEFT OUTER JOIN I_StatusObjectStatus AS _StatusObjectStatus ON REStatusObject = _StatusObjectStatus.StatusObject  -- association [1..*]
LEFT OUTER JOIN I_RESrvcGrpToContractAssgmt AS _RESrvcGrpToContractAssgmt ON REStatusObject = _RESrvcGrpToContractAssgmt.REStatusObjectSource  -- association [1..*]
LEFT OUTER JOIN I_REArchitectureObject AS _REArchitectureObject ON REServiceGroupParentUUID = _REArchitectureObject.REArchitectureObjectUUID  -- association [0..1]
LEFT OUTER JOIN I_RESrvcGrpArchtrObjPartcipn AS _RESrvcGrpArchtrObjPartcipn ON REServiceGroupUUID = _RESrvcGrpArchtrObjPartcipn.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN I_RESrvcGrpSettlementRule AS _RESrvcGrpSettlementRule ON REServiceGroupUUID = _RESrvcGrpSettlementRule.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN I_RESrvcGrpSettlmtRule2CostCat AS _RESrvcGrpSettlmtRule2CostCat ON REServiceGroupUUID = _RESrvcGrpSettlmtRule2CostCat.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN I_REApportionmentRule AS _REApportionmentRule ON REServiceGroupUUID = _REApportionmentRule.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN I_RESrvcGrpDenominatorRule AS _REDenominatorRule ON REServiceGroupUUID = _REDenominatorRule.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN I_REServiceGroupAcctObjAssgmt AS _REServiceGroupAcctObjAssgmt ON REServiceGroupUUID = _REServiceGroupAcctObjAssgmt.REServiceGroupUUID  -- association [0..*]
LEFT OUTER JOIN E_REServiceGroup AS _Extension ON REServiceGroupUUID = _Extension.REServiceGroupUUID  -- association [1..1]
;