I_PMNotificationPriority
Notification Priority
I_PMNotificationPriority is a Basic CDS View (Dimension) that provides data about "Notification Priority" in SAP S/4HANA. It reads from 1 data source (t356) and exposes 5 fields with key fields MaintPriority, MaintPriorityType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t356 | t356 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PMNotificationPriorityText | _Text | t356.artpr = _Text.MaintPriorityType and t356.priok = _Text.MaintPriority |
| [0..1] | I_PMNotificationPriorityType | _PMNotificationPriorityType | $projection.MaintPriorityType = _PMNotificationPriorityType.MaintPriorityType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Notification Priority | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPMNOTIFPRIORITY | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | MaintPriority | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #VALUE_HELP_PROVIDER | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintPriority | t356 | priok | |
| KEY | MaintPriorityType | artpr | ||
| MaintPriorityColorCode | ||||
| _Text | _Text | |||
| _PMNotificationPriorityType | _PMNotificationPriorityType |
@EndUserText.label: 'Notification Priority'
@Analytics: { dataCategory: #DIMENSION,
dataExtraction : { enabled: true ,
delta.changeDataCapture.automatic: true }
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPMNOTIFPRIORITY'
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'MaintPriority'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.supportedCapabilities: [#EXTRACTION_DATA_SOURCE, #SQL_DATA_SOURCE,#VALUE_HELP_PROVIDER,#ANALYTICAL_DIMENSION]
@ObjectModel.modelingPattern: #VALUE_HELP_PROVIDER
@Search.searchable: true
@Consumption.ranked: true
define view I_PMNotificationPriority
as select from t356
association [0..*] to I_PMNotificationPriorityText as _Text on t356.artpr = _Text.MaintPriorityType and t356.priok = _Text.MaintPriority
association [0..1] to I_PMNotificationPriorityType as _PMNotificationPriorityType on $projection.MaintPriorityType = _PMNotificationPriorityType.MaintPriorityType
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.association: '_Text'
@UI.textArrangement: #TEXT_FIRST
key t356.priok as MaintPriority,
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.foreignKey.association: '_PMNotificationPriorityType'
key artpr as MaintPriorityType,
@UI.hidden: true
@Consumption.filter.hidden: true
cast (priocc as abap.int1) as MaintPriorityColorCode,
// Propagate association
_Text,
_PMNotificationPriorityType
}
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