I_NotificationCatalogText

DDL: I_NOTIFICATIONCATALOGTEXT SQL: INOTIFCATTXT Type: view BASIC

Notification Catalog - Text

I_NotificationCatalogText is a Basic CDS View that provides data about "Notification Catalog - Text" in SAP S/4HANA. It reads from 1 data source (tq15t) and exposes 4 fields with key fields Language, NotificationCatalog. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tq15t tq15t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_NotificationCatalog _NotificationCatalog $projection.NotificationCatalog = _NotificationCatalog.NotificationCatalog

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName INOTIFCATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey NotificationCatalog view
ObjectModel.dataCategory #TEXT view
EndUserText.label Notification Catalog - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language tq15t sprache
KEY NotificationCatalog tq15t katalogart
InspSpecAdditionalCatalogText tq15t katalogtxt
_NotificationCatalog _NotificationCatalog
@AbapCatalog.sqlViewName: 'INOTIFCATTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE 
@AccessControl.authorizationCheck: #CHECK
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel:{
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    representativeKey: 'NotificationCatalog',
    dataCategory: #TEXT
}
@EndUserText.label: 'Notification Catalog - Text'

define view I_NotificationCatalogText as select from tq15t

  association [1..1] to I_NotificationCatalog as _NotificationCatalog on  $projection.NotificationCatalog = _NotificationCatalog.NotificationCatalog

{
   @Semantics.language: true
   key tq15t.sprache         as Language,
   @ObjectModel.foreignKey.association: '_NotificationCatalog'
   key tq15t.katalogart      as NotificationCatalog,
   
   @Semantics.text: true
   tq15t.katalogtxt          as InspSpecAdditionalCatalogText //NotificationCatalogText

    
   /* Associations */
   ,_NotificationCatalog
}