I_BusPartAuthorizationGroupTxt

DDL: I_BUSPARTAUTHORIZATIONGROUPTXT SQL: IBPAUTHGRPTXT Type: view BASIC Package: MDC_BUPA_BO

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. Part of development package MDC_BUPA_BO.

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
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: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Business Partner Authorization Group Txt'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
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'
      @Search : { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
      bez50 as AuthorizationGroupName
}