I_REAuthorizationGroup

DDL: I_REAUTHORIZATIONGROUP SQL: IREAUTHGROUP Type: view_entity BASIC

Real Estate Authorization Group

I_REAuthorizationGroup (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Real Estate Authorization Group · Cross Applications

I_REAuthorizationGroup is a Basic CDS View (Dimension) that provides data about "Real Estate Authorization Group" in SAP S/4HANA. It reads from 3 data sources (tbo00, tivcaauthgrp, tivcaobjtype) and exposes 4 fields with key fields RealEstateObjectType, REAuthorizationGroup. It has 2 associations to related views.

SAP Help Documentation

CategoryMeta
Data CategoryDimension
Purpose
This CDS view is designed to provide a structured representation of authorization groups related to objects within contract and lease management. It integrates data from multiple tables to form a comprehensive view that can be used for analytical purposes, ensuring that users have the necessary permissions to access specific real estate data. This CDS view provides the data to answer the following business questions: What are the authorization groups associated with different types of objects? How can we ensure that users have the correct permissions to access specific data? Which object types are linked to authorization groups within the system? How can we retrieve text descriptions for authorization groups and real estate object types for better understanding and reporting? What are the relationships between object types and their corresponding authorization groups? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: Restriction Type ID Restriction Type BUKRS_BERGRP Company Code / Real Estate Authorization Group You can use the Display Restriction Types app to find out in which business catalogs these restriction types are included.

Structure
Important Fields Important fields in this view include the following: Field Name Description RealEstateObjectType Object Type REAuthorizationGroup Authorization Group

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentRE-FX
CapabilitiesData Source for Defining CDS Entities, Analytical Dimension, Data Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Data Extraction, Data Source for Search
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (3)

SourceAliasJoin Type
tbo00 tbo00 from
tivcaauthgrp tivcaauthgrp inner
tivcaobjtype tivcaobjtype inner

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_REAuthorizationGroupText _Text $projection.RealEstateObjectType = _Text.RealEstateObjectType and $projection.REAuthorizationGroup = _Text.REAuthorizationGroup
[0..1] I_REObjectType _REObjectType $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType

Annotations (15)

NameValueLevelField
EndUserText.label Real Estate Authorization Group view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey REAuthorizationGroup view
ObjectModel.sapObjectNodeType.name RealEstateAuthorizationGroup view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.allowExtensions true view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RealEstateObjectType tbo00 obart Object type
KEY REAuthorizationGroup tivcaauthgrp authgrp Authorization Group
_Text _Text
_REObjectType _REObjectType

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_REAuthorizationGroup.
-- 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: IREAUTHGROUP

CREATE VIEW I_REAuthorizationGroup AS
SELECT
  tbo00.obart AS RealEstateObjectType,
  tivcaauthgrp.authgrp AS REAuthorizationGroup
FROM tbo00
INNER JOIN tivcaauthgrp ON /* join condition not captured in parsed metadata */
INNER JOIN tivcaobjtype ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_REAuthorizationGroupText AS _Text ON RealEstateObjectType = _Text.RealEstateObjectType AND REAuthorizationGroup = _Text.REAuthorizationGroup  -- association [0..*]
LEFT OUTER JOIN I_REObjectType AS _REObjectType ON RealEstateObjectType = _REObjectType.RealEstateObjectType  -- association [0..1]
;