I_NotifCauseCodeGroupText

DDL: I_NOTIFCAUSECODEGROUPTEXT Type: view_entity BASIC Package: VDM_QM_NOTIFICATION

Notification Cause Code Group - Text

I_NotifCauseCodeGroupText is a Basic CDS View that provides data about "Notification Cause Code Group - Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 7 fields with key fields NotificationCauseCodeCatalog, NotificationCauseCodeGroup, Language. It has 3 associations to related views. Part of development package VDM_QM_NOTIFICATION.

Data Sources (1)

SourceAliasJoin Type
qpgt qpgt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_NotifCauseCodeCatalog _NotifCauseCodeCatalog $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog
[1..1] I_NotifCauseCodeGroup _NotifCauseCodeGroup $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroup.NotificationCauseCodeCatalog and $projection.NotificationCauseCodeGroup = _NotifCauseCodeGroup.NotificationCauseCodeGroup
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey NotificationCauseCodeGroup view
Analytics.technicalName INOTIFCAUCDGRTXT view
EndUserText.label Notification Cause Code Group - Text view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY NotificationCauseCodeCatalog katalogart
KEY NotificationCauseCodeGroup codegruppe
KEY Language sprache
NotificationCauseCodeGroupText kurztext
_NotifCauseCodeCatalog _NotifCauseCodeCatalog
_NotifCauseCodeGroup _NotifCauseCodeGroup
_Language _Language
@AccessControl.authorizationCheck: #CHECK
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}

@ObjectModel:{
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    dataCategory: #TEXT,
    representativeKey: 'NotificationCauseCodeGroup'
}
@Analytics.technicalName: 'INOTIFCAUCDGRTXT'
@EndUserText.label: 'Notification Cause Code Group - Text'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_NotifCauseCodeGroupText as select from qpgt 

    association [0..1] to I_NotifCauseCodeCatalog as _NotifCauseCodeCatalog on $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog
    association [1..1] to I_NotifCauseCodeGroup as _NotifCauseCodeGroup on   $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroup.NotificationCauseCodeCatalog and
                                                                                    $projection.NotificationCauseCodeGroup =  _NotifCauseCodeGroup.NotificationCauseCodeGroup
    association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_NotifCauseCodeCatalog'
    key katalogart as NotificationCauseCodeCatalog,
    @ObjectModel:{
        foreignKey.association: '_NotifCauseCodeGroup',
        text.element: ['NotificationCauseCodeGroupText']
    }
    key codegruppe as NotificationCauseCodeGroup,
    @ObjectModel.foreignKey.association: '_Language'
    @Semantics.language: true
    key sprache as Language,
    
    @Semantics.text: true
    kurztext as NotificationCauseCodeGroupText,
    
    _NotifCauseCodeCatalog,
    _NotifCauseCodeGroup,
    _Language
}