I_EHSNotificationTypeText
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq80_t | tq80_t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ80_T"
],
"ASSOCIATED":
[
"I_EHSNOTIFICATIONTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA