I_UserGroupText

DDL: I_USERGROUPTEXT Type: view_entity BASIC Package: SUSR

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)

SourceAliasJoin Type
usgrpt usgrpt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_UserGroup _UserGroup $projection.UserGroup = _UserGroup.UserGroup

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}