I_EHSCtrlSubtypeText
EHS Control Subtype Text
I_EHSCtrlSubtypeText is a Basic CDS View that provides data about "EHS Control Subtype Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_actsub_t) and exposes 4 fields with key fields EHSControlSubtype, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_actsub_t | ehfndc_actsub_t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Control Subtype Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSControlSubtype | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ICTRLSUBTYPET | 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 | EHSControlSubtype | |||
| KEY | Language | language | ||
| _Language | _Language | |||
| EHSControlSubtypeName |
@EndUserText.label: 'EHS Control Subtype Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'EHSControlSubtype'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ICTRLSUBTYPET'
@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_EHSCtrlSubtypeText as select from ehfndc_actsub_t
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( code as ehhss_control_subtype_code preserving type ) as EHSControlSubtype,
@Semantics.language: true
// ObjectModel.foreignKey.association: '_Language'
key language as Language,
_Language,
@Semantics.text:true
cast( description as ehfnd_act_subject_code_desc ) as EHSControlSubtypeName
}
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