I_EHSControlType
EHS Control Type
I_EHSControlType is a Basic CDS View that provides data about "EHS Control Type" in SAP S/4HANA. It reads from 1 data source (ehfndc_acttype) and exposes 4 fields with key field EHSControlType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_acttype | ehfndc_acttype | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EHSCtrlTypeText | _Text | $projection.EHSControlType = _Text.EHSControlType |
| [0..*] | I_EHSControlSubtype | _EHSControlSubtype | $projection.EHSControlType = _EHSControlSubtype.EHSControlType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Control Type | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | EHSControlType | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ICTRLTYPE | 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 | |||
| EHSControlTypePriorityValue | priority | |||
| _Text | _Text | |||
| _EHSControlSubtype | _EHSControlSubtype |
@EndUserText.label: 'EHS Control Type'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'EHSControlType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ICTRLTYPE'
@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_EHSControlType
as select from ehfndc_acttype
association [0..*] to I_EHSCtrlTypeText as _Text on $projection.EHSControlType = _Text.EHSControlType
association [0..*] to I_EHSControlSubtype as _EHSControlSubtype on $projection.EHSControlType = _EHSControlSubtype.EHSControlType
{
@ObjectModel.text.association: '_Text'
key cast ( code as ehhss_control_type_code preserving type ) as EHSControlType,
priority as EHSControlTypePriorityValue,
_Text,
_EHSControlSubtype
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDC_ACTTYPE"
],
"ASSOCIATED":
[
"I_EHSCONTROLSUBTYPE",
"I_EHSCTRLTYPETEXT"
],
"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