I_NotificationPriority

DDL: I_NOTIFICATIONPRIORITY SQL: INOTIFPRIO Type: view BASIC

Notification Priority

I_NotificationPriority is a Basic CDS View that provides data about "Notification Priority" in SAP S/4HANA. It reads from 1 data source (t356) and exposes 3 fields with key fields NotificationPriorityType, NotificationPriority.

Data Sources (1)

SourceAliasJoin Type
t356 t356 from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName INOTIFPRIO view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Notification Priority view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey NotificationPriority view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY NotificationPriorityType artpr
KEY NotificationPriority priok
_NotificationPriorityText _NotificationPriorityText
@AbapCatalog.sqlViewName: 'INOTIFPRIO'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE 
@VDM.viewType: #BASIC

@EndUserText.label: 'Notification Priority'
@ObjectModel:{
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    representativeKey: 'NotificationPriority'
}

define view I_NotificationPriority as select from t356 

    association[1..*] to I_NotificationPriorityText as _NotificationPriorityText on $projection.NotificationPriorityType = _NotificationPriorityText.NotificationPriorityType and
                                                                                    $projection.NotificationPriority     = _NotificationPriorityText.NotificationPriority

{    
    key artpr as NotificationPriorityType,
    @ObjectModel.text.association: '_NotificationPriorityText'
    key priok as NotificationPriority,
    
    
    _NotificationPriorityText   
    
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T356"
],
"ASSOCIATED":
[
"I_NOTIFICATIONPRIORITYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/