Deprecated PUBLIC_LOCAL_API
This CDS view is deprecated in S/4HANA. Use I_DocumentInfoRecordAuthznGrp instead. View all deprecated CDS views →

I_DocInfoRecdAuthGroup

DDL: I_DOCINFORECDAUTHGROUP SQL: ICVAUTHGRP Type: view BASIC

Authorization Group Details

I_DocInfoRecdAuthGroup is a Basic CDS View (Dimension) that provides data about "Authorization Group Details" in SAP S/4HANA. It reads from 1 data source (tbrg) and exposes 3 fields with key field AuthorizationGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tbrg tbrg from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocInfoRecdAuthGrpText _Text $projection.AuthorizationGroup = _Text.AuthorizationGroup and $projection.DocInfoRecdAuthznObject = _Text.DocInfoRecdAuthznObject

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICVAUTHGRP view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Authorization Group Details view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.representativeKey AuthorizationGroup view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_DocumentInfoRecordAuthznGrp view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AuthorizationGroup tbrg brgru Authorization
DocInfoRecdAuthznObject tbrg brobj Object
_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_DocInfoRecdAuthGroup.
-- 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: ICVAUTHGRP

CREATE VIEW I_DocInfoRecdAuthGroup AS
SELECT
  tbrg.brgru AS AuthorizationGroup,
  tbrg.brobj AS DocInfoRecdAuthznObject
FROM tbrg
LEFT OUTER JOIN I_DocInfoRecdAuthGrpText AS _Text ON AuthorizationGroup = _Text.AuthorizationGroup AND DocInfoRecdAuthznObject = _Text.DocInfoRecdAuthznObject  -- association [0..*]
;