I_UserGroupText
Kurztext zur Benutzergruppe
I_UserGroupText is a Basic CDS View that provides data about "Kurztext zur Benutzergruppe" in SAP S/4HANA. It reads from 1 data source (usgrpt) and exposes 5 fields with key fields Language, UserGroup. It has 2 associations to related views. Part of development package SUSR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| usgrpt | usgrpt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_UserGroup | _UserGroup | $projection.UserGroup = _UserGroup.UserGroup |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Kurztext zur Benutzergruppe | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | UserGroup | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.allowExtensions | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | usgrpt | sprsl | |
| KEY | UserGroup | |||
| UserGroupName | ||||
| _Language | _Language | |||
| _UserGroup | _UserGroup |
@EndUserText: { label: 'Kurztext zur Benutzergruppe' }
@AccessControl: { authorizationCheck: #PRIVILEGED_ONLY
, privilegedAssociations: [ '_UserGroup' ]
}
@VDM: { viewType: #BASIC
, lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel: { compositionRoot: true
, representativeKey: 'UserGroup'
, usageType: { dataClass: #MASTER
, serviceQuality: #A
, sizeCategory: #L
}
}
@AbapCatalog: {
viewEnhancementCategory: [ #NONE ]
}
@Metadata: { allowExtensions: true }
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// This view must not be exposed directly, because it exposes internal administration information.
// Therefore, it is also protected by a NULL-DCL.
// It's currently also not possible to release it for Language Version 5 ('ABAP for Cloud
// Development') because it doesn't fulfil the content separation requirements.
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
define view entity I_UserGroupText
as select from usgrpt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_UserGroup as _UserGroup on $projection.UserGroup = _UserGroup.UserGroup
{
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key usgrpt.sprsl as Language,
@ObjectModel.foreignKey.association: '_UserGroup'
key cast( usgrpt.usergroup as vdm_usergroupid preserving type ) as UserGroup,
@Semantics.text
cast( usgrpt.text as vdm_usergrouptext preserving type ) as UserGroupName,
_Language,
_UserGroup
}
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