I_NotifProcessingPhase
Notification Processing Phase
I_NotifProcessingPhase is a Basic CDS View that provides data about "Notification Processing Phase" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field NotifProcessingPhase.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOTIFPHSE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | NotifProcessingPhase | view | |
| EndUserText.label | Notification Processing Phase | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NotifProcessingPhase | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'INOTIFPHSE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:{
usageType:{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
representativeKey: 'NotifProcessingPhase'
}
@EndUserText.label: 'Notification Processing Phase'
define view I_NotifProcessingPhase as select from dd07l
association[1..*] to I_NotifProcessingPhaseDesc as _Text on $projection.NotifProcessingPhase = _Text.NotifProcessingPhase
{
@ObjectModel.text.association: '_Text'
key cast ( substring( domvalue_l, 1, 1 ) as vdm_qm_phase preserving type ) as NotifProcessingPhase,
_Text
} where dd07l.domname = 'QM_PHASE' and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_NOTIFPROCESSINGPHASEDESC"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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