I_EHSTaskDefMaintenanceNotif
EHS Task Definition Reference
I_EHSTaskDefMaintenanceNotif is a Basic CDS View that provides data about "EHS Task Definition Reference" in SAP S/4HANA. It reads from 1 data source (ehfndd_tdef_mntf) and exposes 8 fields with key field EHSTaskDefMaintenanceUUID. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndd_tdef_mntf | EHSTaskDefMaintenance | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_EHSTaskDefinition | _EHSTaskDefinition | $projection.EHSTaskDefinitionUUID = _EHSTaskDefinition.EHSTaskDefinitionUUID |
| [0..*] | I_TechnicalObjectText | _TechnicalObjectText | _TechnicalObjectText.TechnicalObject = $projection.TechnicalObject |
| [1..1] | I_EHSNotificationType | _EHSNotificationType | $projection.NotificationType = _EHSNotificationType.NotificationType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEHSTASKDEFMAINT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | EHS Task Definition Reference | view | |
| ObjectModel.representativeKey | EHSTaskDefMaintenanceUUID | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | false | view | |
| VDM.viewType | #BASIC | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSTaskDefMaintenanceUUID | ehfndd_tdef_mntf | ehstaskdefmaintenanceuuid | |
| EHSTaskDefinitionUUID | ehfndd_tdef_mntf | ehstaskdefinitionuuid | ||
| NotificationType | ehfndd_tdef_mntf | notificationtype | ||
| TechnicalObject | ||||
| TechnicalObjectLabel | ||||
| _EHSTaskDefinition | _EHSTaskDefinition | |||
| _EHSNotificationType | _EHSNotificationType | |||
| _TechnicalObjectText | _TechnicalObjectText |
@AbapCatalog.sqlViewName: 'IEHSTASKDEFMAINT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'EHS Task Definition Reference'
@ObjectModel.representativeKey: 'EHSTaskDefMaintenanceUUID'
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #M, // < 100.000
dataClass: #MASTER }
@Search.searchable: false
@VDM.viewType: #BASIC
define view I_EHSTaskDefMaintenanceNotif
as select from ehfndd_tdef_mntf as EHSTaskDefMaintenance
association [1..1] to I_EHSTaskDefinition as _EHSTaskDefinition on $projection.EHSTaskDefinitionUUID = _EHSTaskDefinition.EHSTaskDefinitionUUID
//association [0..*] to I_TechnicalObject as _TechnicalObject on $projection.TechnicalObject = _TechnicalObject.TechnicalObject
association [0..*] to I_TechnicalObjectText as _TechnicalObjectText on _TechnicalObjectText.TechnicalObject = $projection.TechnicalObject
association [1..1] to I_EHSNotificationType as _EHSNotificationType on $projection.NotificationType = _EHSNotificationType.NotificationType
{
key EHSTaskDefMaintenance.ehstaskdefmaintenanceuuid as EHSTaskDefMaintenanceUUID,
@ObjectModel.foreignKey.association: '_EHSTaskDefinition'
EHSTaskDefMaintenance.ehstaskdefinitionuuid as EHSTaskDefinitionUUID,
@ObjectModel.foreignKey.association: '_EHSNotificationType'
EHSTaskDefMaintenance.notificationtype as NotificationType,
@ObjectModel.text.association: '_TechnicalObjectText'
@UI.textArrangement: #TEXT_ONLY
cast(EHSTaskDefMaintenance.technicalobject as eams_tech_obj_conv) as TechnicalObject,
cast(EHSTaskDefMaintenance.technicalobjectlabel as eams_tech_obj_conv) as TechnicalObjectLabel,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
#TO_COMPOSITION_ROOT]
_EHSTaskDefinition,
_EHSNotificationType,
_TechnicalObjectText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDD_TDEF_MNTF"
],
"ASSOCIATED":
[
"I_EHSNOTIFICATIONTYPE",
"I_EHSTASKDEFINITION",
"I_TECHNICALOBJECTTEXT"
],
"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