I_EHSCtrlTypeText
EHS Control Type Text
I_EHSCtrlTypeText is a Basic CDS View that provides data about "EHS Control Type Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_acttype_t) and exposes 4 fields with key fields EHSControlType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_acttype_t | ehfndc_acttype_t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Control Type Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSControlType | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ICTRLTYPET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSControlType | |||
| KEY | Language | language | ||
| _Language | _Language | |||
| EHSControlTypeName |
@EndUserText.label: 'EHS Control Type Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'EHSControlType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ICTRLTYPET'
@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: #S, // < 1.000
dataClass: #CUSTOMIZING }
define view I_EHSCtrlTypeText as select from ehfndc_acttype_t
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( code as ehhss_control_type_code preserving type ) as EHSControlType,
@Semantics.language: true
// ObjectModel.foreignKey.association: '_Language'
key language as Language,
_Language,
@Semantics.text:true
cast( description as ehfnd_act_type_code_desc ) as EHSControlTypeName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDC_ACTTYPE_T"
],
"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