I_PMNotificationPhaseText

DDL: I_PMNOTIFICATIONPHASETEXT SQL: IPMNOTIFPHASETXT Type: view BASIC

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)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PMNotificationPhase _PMNotificationPhase $projection.NotifProcessingPhase = _PMNotificationPhase.NotifProcessingPhase
[0..1] I_Language _Language _Language.Language = dd07t.ddlanguage

Annotations (13)

NameValueLevelField
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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY NotifProcessingPhase dd07t domvalue_l
KEY Language dd07t ddlanguage
NotifProcessingPhaseDesc dd07t ddtext
_Language _Language
_PMNotificationPhase _PMNotificationPhase
@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