I_EHSMethodOfUseText
EHS Method of Use Text
I_EHSMethodOfUseText is a Basic CDS View that provides data about "EHS Method of Use Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_meth_t) and exposes 5 fields with key fields MethodOfUse, Language. It has 1 association to related views. Part of development package EHFND_CHM_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_meth_t | ehfndc_meth_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_EHSMethodOfUse | _EHSMethodOfUse | $projection.MethodOfUse = _EHSMethodOfUse.MethodOfUse association[0..1] to I_Language as _Language on $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Method of Use Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | MethodOfUse | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IEHSMETHODOFUSET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MethodOfUse | |||
| _EHSMethodOfUse | _EHSMethodOfUse | |||
| KEY | Language | ehfndc_meth_t | language | |
| _Language | _Language | |||
| MethodOfUseName |
@EndUserText.label: 'EHS Method of Use Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MethodOfUse'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEHSMETHODOFUSET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: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_EHSMethodOfUseText
as select from ehfndc_meth_t
association [0..1] to I_EHSMethodOfUse as _EHSMethodOfUse on $projection.MethodOfUse = _EHSMethodOfUse.MethodOfUse
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast (code as ehfnd_method_of_use_nc preserving type ) as MethodOfUse,
_EHSMethodOfUse,
@Semantics.language: true
key ehfndc_meth_t.language as Language,
_Language,
@Semantics.text: true
cast ( description as ehfnd_method_of_use_desc preserving type ) as MethodOfUseName
}
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