I_EHSNotificationType

DDL: I_EHSNOTIFICATIONTYPE SQL: IEHSNOTIFTYP Type: view BASIC

EHS Notification Type

I_EHSNotificationType is a Basic CDS View that provides data about "EHS Notification Type" in SAP S/4HANA. It reads from 2 data sources (tq80, ehfndc_notif_typ) and exposes 2 fields with key field NotificationType. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
tq80 cat left_outer
ehfndc_notif_typ notif_type from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSNotificationTypeText _Text $projection.NotificationType = _Text.NotificationType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEHSNOTIFTYP view
EndUserText.label EHS Notification Type view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey NotificationType view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY NotificationType notif_type_code
_Text _Text
@AbapCatalog.sqlViewName: 'IEHSNOTIFTYP'
@EndUserText.label: 'EHS Notification Type'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#VALUE_HELP
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: { representativeKey: 'NotificationType', 
                usageType: {serviceQuality: #C,
                            sizeCategory: #L, 
                            dataClass: #META},
                resultSet.sizeCategory: #XS 
                }

define view I_EHSNotificationType as select from ehfndc_notif_typ as notif_type
left outer join tq80  as cat  on cat.qmart = notif_type.notif_type_code
association [0..*] to I_EHSNotificationTypeText as _Text  on $projection.NotificationType = _Text.NotificationType

{

@ObjectModel.text.association: '_Text'
key notif_type_code as NotificationType,

 // Propagate association

 _Text

} where cat.qmtyp = '01' // filter out records which are not plant maintenance related

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDC_NOTIF_TYP",
"TQ80"
],
"ASSOCIATED":
[
"I_EHSNOTIFICATIONTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/