I_BusPartAuthorizationGroup
Business Partner Authorization Group
I_BusPartAuthorizationGroup is a Basic CDS View that provides data about "Business Partner Authorization Group" in SAP S/4HANA. It reads from 1 data source (tb037) and exposes 3 fields with key fields AuthorizationGroup, AuthorizationObject. It has 1 association to related views. Part of development package MDC_BUPA_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb037 | tb037 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusPartAuthorizationGroupTxt | _Text | $projection.AuthorizationGroup = _Text.AuthorizationGroup and $projection.AuthorizationObject = _Text.AuthorizationObject |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPAUTHGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Business Partner Authorization Group | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | AuthorizationGroup | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AuthorizationGroup | augrp | ||
| KEY | AuthorizationObject | auobj | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IBPAUTHGRP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Authorization Group'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AuthorizationGroup'
@Search.searchable: true
define view I_BusPartAuthorizationGroup
as select from tb037
association [0..*] to I_BusPartAuthorizationGroupTxt as _Text on $projection.AuthorizationGroup = _Text.AuthorizationGroup
and $projection.AuthorizationObject = _Text.AuthorizationObject
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key augrp as AuthorizationGroup,
@Search : { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #MEDIUM }
key auobj as AuthorizationObject,
_Text
}
where
auobj = 'BUPA'
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