I_PMNotificationPhaseText
Notification Phase Text
I_PMNotificationPhaseText is a Basic CDS View that provides data about "Notification Phase Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields NotifProcessingPhase, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PMNotificationPhase | _PMNotificationPhase | $projection.NotifProcessingPhase = _PMNotificationPhase.NotifProcessingPhase |
| [0..1] | I_Language | _Language | _Language.Language = dd07t.ddlanguage |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Notification Phase Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPMNOTIFPHASETXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | NotifProcessingPhase | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@EndUserText.label: 'Notification Phase Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPMNOTIFPHASETXT'
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ObjectModel.representativeKey: 'NotifProcessingPhase'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations:true
define view I_PMNotificationPhaseText
as select from dd07t // DD07t = Domain Values
association [0..1] to I_PMNotificationPhase as _PMNotificationPhase on $projection.NotifProcessingPhase = _PMNotificationPhase.NotifProcessingPhase
association [0..1] to I_Language as _Language on _Language.Language = dd07t.ddlanguage
{
key dd07t.domvalue_l as NotifProcessingPhase,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key dd07t.ddlanguage as Language,
@Semantics.text: true
dd07t.ddtext as NotifProcessingPhaseDesc, // Notification Phase Text
_Language,
_PMNotificationPhase
}
where
dd07t.domname = 'QM_PHASE'
and dd07t.as4local = 'A' //Updated where condition with dd07l.as4local = 'A' to report only active entries
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