I_DocumentInfoRecordAuthznGrp

DDL: I_DOCUMENTINFORECORDAUTHZNGRP SQL: ICVDOCAUTHGRP Type: view BASIC

Document Info Record Authorization Group

I_DocumentInfoRecordAuthznGrp (Basic)

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

R&D Engineering

I_DocumentInfoRecordAuthznGrp is a Basic CDS View (Dimension) that provides data about "Document Info Record Authorization Group" 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.

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentCA-DMS
CapabilitiesData Provider for Value Help, Analytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tbrg tbrg from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCAUTHGRP view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
ObjectModel.representativeKey AuthorizationGroup view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
EndUserText.label Document Info Record Authorization Group view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AuthorizationGroup tbrg brgru Authorization Group
DocInfoRecdAuthznObject tbrg brobj Authorization 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_DocumentInfoRecordAuthznGrp.
-- 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: ICVDOCAUTHGRP

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