I_BusPartAuthorizationGroupTxt
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)
| Source | Alias | Join Type |
|---|---|---|
| tb037t | tb037t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB037T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA