I_BusPartAuthorizationGroupTxt

DDL: I_BUSPARTAUTHORIZATIONGROUPTXT SQL: IBPAUTHGRPTXT Type: view BASIC

Business Partner Authorization Group Txt

I_BusPartAuthorizationGroupTxt is a Basic CDS View that provides data about "Business Partner Authorization Group Txt" in SAP S/4HANA. It reads from 1 data source (tb037t) and exposes 4 fields with key fields Language, AuthorizationObject, AuthorizationGroup.

Data Sources (1)

SourceAliasJoin Type
tb037t tb037t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBPAUTHGRPTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey AuthorizationGroup view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
EndUserText.label Business Partner Authorization Group Txt view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY AuthorizationObject auobj Group object
KEY AuthorizationGroup augrp Component of the Version Number
AuthorizationGroupName bez50 Authorization Group Description

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_BusPartAuthorizationGroupTxt.
-- 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: IBPAUTHGRPTXT

CREATE VIEW I_BusPartAuthorizationGroupTxt AS
SELECT
  spras AS Language,
  auobj AS AuthorizationObject,
  augrp AS AuthorizationGroup,
  bez50 AS AuthorizationGroupName
FROM tb037t
;