I_EHSCtrlEffectText
EHS Control Desired Effect on Risk Text
I_EHSCtrlEffectText is a Basic CDS View that provides data about "EHS Control Desired Effect on Risk Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields DesiredEHSControlEffect, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Control Desired Effect on Risk Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DesiredEHSControlEffect | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IEHSCTRLEFFT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #META | view |
@EndUserText.label: 'EHS Control Desired Effect on Risk Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DesiredEHSControlEffect'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEHSCTRLEFFT'
@AbapCatalog.compiler.compareFilter: true
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #XL, // < 100.000.000
dataClass: #META }
define view I_EHSCtrlEffectText as select from dd07t
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast(dd07t.domvalue_l as ehfnd_ctrl_goal_ctrl_effect) as DesiredEHSControlEffect,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@Semantics.text:true
dd07t.ddtext as DesiredEHSControlEffectName,
_Language
}
where dd07t.domname = 'EHFND_CTRL_GOAL_CTRL_EFFECT'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/
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