I_EHSNotificationTypeText

DDL: I_EHSNOTIFICATIONTYPETEXT SQL: INOTIFTYPETXT Type: view BASIC Package: EHFND_BO_TASK_DEFINITION

EHS Notification Type Text

I_EHSNotificationTypeText is a Basic CDS View that provides data about "EHS Notification Type Text" in SAP S/4HANA. It reads from 1 data source (tq80_t) and exposes 5 fields with key fields NotificationType, Language. Part of development package EHFND_BO_TASK_DEFINITION.

Data Sources (1)

SourceAliasJoin Type
tq80_t tq80_t from

Annotations (12)

NameValueLevelField
EndUserText.label EHS Notification Type Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName INOTIFTYPETXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey NotificationType view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY NotificationType tq80_t qmart
KEY Language tq80_t spras
NotificationTypeName tq80_t qmartx
_EHSNotificationType _EHSNotificationType
_Language _Language
@EndUserText.label: 'EHS Notification Type Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC 
@AbapCatalog.sqlViewName: 'INOTIFTYPETXT'
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ObjectModel.representativeKey: 'NotificationType'

@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S 

define view I_EHSNotificationTypeText
as
select from tq80_t 
association[0..1] to I_EHSNotificationType as _EHSNotificationType on _EHSNotificationType.NotificationType = $projection.NotificationType
association[0..1] to I_Language as _Language on _Language.Language = $projection.Language
{ 

  @ObjectModel.foreignKey.association: '_EHSNotificationType'
  key tq80_t.qmart as NotificationType, 
  
  @ObjectModel.foreignKey.association: '_Language'
  @Semantics.language: true
  key tq80_t.spras as Language,
    
  @Semantics.text: true
  tq80_t.qmartx as NotificationTypeName,
  
   // Propagate associations

  _EHSNotificationType,
  _Language
}