C_BPAuthorizationGroupVH
Business Partner Authorization Group Value Help
C_BPAuthorizationGroupVH is a Consumption CDS View that provides data about "Business Partner Authorization Group Value Help" in SAP S/4HANA. It reads from 1 data source (tb037) and exposes 3 fields with key field AuthorizationGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb037 | tb037 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_BusPartAuthorizationGroupTxt | _Text | $projection.AuthorizationGroup = _Text.AuthorizationGroup and $projection.AuthorizationObject = _Text.AuthorizationObject |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBPAUTHGRPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Business Partner Authorization Group Value Help | view | |
| ObjectModel.representativeKey | AuthorizationGroup | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Consumption.ranked | true | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_BusPartAuthorizationGroup | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AuthorizationGroup | augrp | ||
| AuthorizationObject | auobj | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CBPAUTHGRPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Business Partner Authorization Group Value Help'
@ObjectModel.representativeKey: 'AuthorizationGroup'
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.dataCategory: #VALUE_HELP
@Consumption.ranked: true
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_BusPartAuthorizationGroup'
define view C_BPAuthorizationGroupVH
as select from tb037 //I_BusPartAuthorizationGroup
association [1..*] to I_BusPartAuthorizationGroupTxt as _Text on $projection.AuthorizationGroup = _Text.AuthorizationGroup
and $projection.AuthorizationObject = _Text.AuthorizationObject
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.association: '_Text'
@Search.ranking: #HIGH
key augrp as AuthorizationGroup, //key AuthorizationGroup,
@UI.hidden: true
@Consumption.filter.hidden: true
auobj as AuthorizationObject, // AuthorizationObject,
_Text
}
where
auobj = 'BUPA' //AuthorizationObject = 'BUPA'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB037"
],
"ASSOCIATED":
[
"I_BUSPARTAUTHORIZATIONGROUPTXT"
],
"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