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 (12)

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 #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
EndUserText.label Business Partner Authorization Group Txt view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY AuthorizationObject auobj
KEY AuthorizationGroup augrp
AuthorizationGroupName bez50 Authorization Group Description
@AbapCatalog.sqlViewName: 'IBPAUTHGRPTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'AuthorizationGroup'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Business Partner Authorization Group Txt'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BusPartAuthorizationGroupTxt
  as select from tb037t
{
      @Semantics.language: true
  key spras as Language,
  key auobj as AuthorizationObject,
  key augrp as AuthorizationGroup,
      @Semantics.text: true
      @EndUserText.label: 'Authorization Group Description'
      bez50 as AuthorizationGroupName
}