I_NotificationPriority
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)
| Source | Alias | Join Type |
|---|---|---|
| t356 | t356 | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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