I_EHSLocationTypeText
EHS Location Type - Text
I_EHSLocationTypeText is a Basic CDS View that provides data about "EHS Location Type - Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_loc_typ_t) and exposes 4 fields with key fields EHSLocationType, Language. It has 1 association to related views. Part of development package EHFND_BO_LOC_CFG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_loc_typ_t | ehfndc_loc_typ_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Location Type - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ILOCTYPETEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 2 | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSLocationType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSLocationType | |||
| KEY | Language | |||
| EHSLocationTypeText | ||||
| _Language | _Language |
@EndUserText.label: 'EHS Location Type - Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: { sqlViewName: 'ILOCTYPETEXT',
compiler.compareFilter: true,
buffering: { type: #GENERIC,
numberOfKeyFields: 2,
status: #ACTIVE } }
@ObjectModel: { dataCategory: #TEXT,
representativeKey: 'EHSLocationType',
resultSet.sizeCategory: #XS,
supportedCapabilities: [ #EXTRACTION_DATA_SOURCE ],
modelingPattern: #NONE,
usageType:{ serviceQuality: #A,
sizeCategory: #S, // < 1.000
dataClass: #CUSTOMIZING } }
@Metadata.ignorePropagatedAnnotations:true
define view I_EHSLocationTypeText
as select from ehfndc_loc_typ_t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast( code as ehfnd_loc_type_code_nc preserving type ) as EHSLocationType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( language as ehfnd_langu preserving type ) as Language,
@Semantics.text:true
cast( description as ehfnd_loc_type_name preserving type ) as EHSLocationTypeText,
_Language
}
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