I_EHSLocationType

DDL: I_EHSLOCATIONTYPE Type: view BASIC Package: EHFND_BO_LOC_CFG

EHS Location Type

I_EHSLocationType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

EHSLocationType · Cross Applications

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 11 OData services (ASQL_F1992, ASQL_F2527, ASQL_F2528, ...). Part of development package EHFND_BO_LOC_CFG.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentEHS-SUS-FND-EHS
CapabilitiesData Source for Data Extraction,Analytical Dimension,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the different types of locations in Environment, Health, and Safety.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>How many different types of locations are there in Environment, Health, and Safety?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
ehfndc_loc_typ ehfndc_loc_typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSLocationTypeText _Text $projection.EHSLocationType = _Text.EHSLocationType

Annotations (18)

NameValueLevelField
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 (11)

ServiceBindingVersionContractRelease
ASQL_F1992 ASQL_F1992 C2 NOT_RELEASED
ASQL_F2527 ASQL_F2527 C2 NOT_RELEASED
ASQL_F2528 ASQL_F2528 C2 NOT_RELEASED
ASQL_F3372 ASQL_F3372 C2 NOT_RELEASED
ASQL_F3406 ASQL_F3406 C2 NOT_RELEASED
ASQL_F3840 ASQL_F3840 C2 NOT_RELEASED
ASQL_F3991 ASQL_F3991 C2 NOT_RELEASED
ASQL_F4598 ASQL_F4598 C2 NOT_RELEASED
ASQL_F4758 ASQL_F4758 C2 NOT_RELEASED
ASQL_F6723 ASQL_F6723 C2 NOT_RELEASED
UI_EHSEMDDATA_MANAGE UI_EHSEMDDATA_MANAGE V4 C1 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationType Water Hazard Cl.
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_EHSLocationType.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_EHSLocationType AS
SELECT
  cast( code as ehfnd_loc_type_code_nc preserving type ) AS EHSLocationType
FROM ehfndc_loc_typ
LEFT OUTER JOIN I_EHSLocationTypeText AS _Text ON EHSLocationType = _Text.EHSLocationType  -- association [0..*]
;