I_EHSLocationType
EHS Location Type
I_EHSLocationType is a Basic CDS View (Dimension) that provides data about "EHS Location Type" in SAP S/4HANA. It reads from 1 data source (ehfndc_loc_typ) and exposes 2 fields with key field EHSLocationType. It has 1 association to related views. It is exposed through 1 OData service (UI_EHSEMDDATA_MANAGE). Part of development package EHFND_BO_LOC_CFG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_loc_typ | ehfndc_loc_typ | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EHSLocationTypeText | _Text | $projection.EHSLocationType = _Text.EHSLocationType |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EHS Location Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ILOCTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | EHSLocationType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.sapObjectNodeType.name | EHSLocationType | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_EHSEMDDATA_MANAGE | UI_EHSEMDDATA_MANAGE | V4 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSLocationType | |||
| _Text | _Text |
@EndUserText.label: 'EHS Location Type'
@Analytics: { dataCategory:#DIMENSION , dataExtraction.enabled:true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: { sqlViewName: 'ILOCTYPE',
compiler.compareFilter: true,
buffering: { type: #FULL,
status: #ACTIVE } }
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for customizing access
@ObjectModel: { representativeKey: 'EHSLocationType',
resultSet.sizeCategory: #XS,
sapObjectNodeType.name: 'EHSLocationType',
supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET ],
modelingPattern: #NONE,
usageType:{ serviceQuality: #A,
sizeCategory: #S, // < 1.000
dataClass: #CUSTOMIZING } }
@Metadata.ignorePropagatedAnnotations:true
define view I_EHSLocationType
as select from ehfndc_loc_typ
association [0..*] to I_EHSLocationTypeText as _Text on $projection.EHSLocationType = _Text.EHSLocationType
{
@ObjectModel.text.association: '_Text'
key cast( code as ehfnd_loc_type_code_nc preserving type ) as EHSLocationType,
@ObjectModel.association.boundFields.dataMatchesSourceAndTargetTypes: true
_Text
}
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