I_PMNotificationTypeText

DDL: I_PMNOTIFICATIONTYPETEXT Type: view_entity BASIC Package: IWOC

Notification Type - Text

I_PMNotificationTypeText is a Basic CDS View that provides data about "Notification Type - Text" in SAP S/4HANA. It reads from 1 data source (tq80_t) and exposes 5 fields with key fields NotificationType, Language. It has 2 associations to related views. Part of development package IWOC.

Data Sources (1)

SourceAliasJoin Type
tq80_t tq80_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PMNotificationType _PMNotificationType _PMNotificationType.NotificationType = $projection.NotificationType
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (15)

NameValueLevelField
EndUserText.label Notification Type - Text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IPMNOTIFTYPETXT view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey NotificationType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY NotificationType tq80_t qmart
KEY Language tq80_t spras
NotificationTypeName tq80_t qmartx Notification Type Text
_PMNotificationType _PMNotificationType
_Language _Language
@EndUserText.label: 'Notification Type - Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IPMNOTIFTYPETXT'
@VDM.viewType: #BASIC
@Analytics: { dataExtraction : { enabled: true , delta.changeDataCapture.automatic: true } }
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'NotificationType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable: true
@ObjectModel.supportedCapabilities: [#EXTRACTION_DATA_SOURCE,#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT

define view entity I_PMNotificationTypeText
  as select from tq80_t
  association [0..1] to I_PMNotificationType as _PMNotificationType on _PMNotificationType.NotificationType = $projection.NotificationType
  association [0..1] to I_Language           as _Language           on _Language.Language = $projection.Language
{

      @ObjectModel.foreignKey.association: '_PMNotificationType'
  key tq80_t.qmart  as NotificationType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key tq80_t.spras  as Language,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @EndUserText.label: 'Notification Type Text'
      tq80_t.qmartx as NotificationTypeName,

      // Propagate associations

      _PMNotificationType,
      _Language
}