I_REServiceGroupCategory

DDL: I_RESERVICEGROUPCATEGORY SQL: IRESGCATE Type: view_entity BASIC

Real Estate Service Group Category

I_REServiceGroupCategory is a Basic CDS View (Dimension) that provides data about "Real Estate Service Group Category" in SAP S/4HANA. It reads from 1 data source (tivcssgcate) and exposes 5 fields with key field REServiceGroupCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tivcssgcate tivcssgcate from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_REServiceGroupCategoryText _Text $projection.REServiceGroupCategory = _Text.REServiceGroupCategory

Annotations (15)

NameValueLevelField
EndUserText.label Real Estate Service Group Category view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey REServiceGroupCategory view
Search.searchable true view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY REServiceGroupCategory sgcategory Service Group Category
REServiceGroupType sgtype Service Group Type
RESrvcGrpHasContrAssgmt assigncn Contract Assignment
RESrvcGrpNumberRangeInterval rangenr No. Range No.
_Text _Text

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_REServiceGroupCategory.
-- 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: IRESGCATE

CREATE VIEW I_REServiceGroupCategory AS
SELECT
  sgcategory AS REServiceGroupCategory,
  sgtype AS REServiceGroupType,
  assigncn AS RESrvcGrpHasContrAssgmt,
  rangenr AS RESrvcGrpNumberRangeInterval
FROM tivcssgcate
LEFT OUTER JOIN I_REServiceGroupCategoryText AS _Text ON REServiceGroupCategory = _Text.REServiceGroupCategory  -- association [0..*]
;