I_CurrentEHSLocationNameText

DDL: I_CURRENTEHSLOCATIONNAMETEXT SQL: ICURLOCNAMET Type: view BASIC

Current EHS Location Name Text

I_CurrentEHSLocationNameText is a Basic CDS View that provides data about "Current EHS Location Name Text" in SAP S/4HANA. It reads from 1 data source (I_EHSLocationRevisionNameT) and exposes 5 fields with key fields EHSLocationUUID, Language.

Data Sources (1)

SourceAliasJoin Type
I_EHSLocationRevisionNameT I_EHSLocationRevisionNameT from

Annotations (12)

NameValueLevelField
EndUserText.label Current EHS Location Name Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EHSLocationUUID view
AccessControl.authorizationCheck #MANDATORY view
AbapCatalog.sqlViewName ICURLOCNAMET view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID EHSLocationUUID NodeID
KEY Language Language Report Text Language
EHSLocationName EHSLocationName
_EHSLocationRoot _EHSLocationRoot
_Language _Language

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_CurrentEHSLocationNameText.
-- 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.
-- SQL view name: ICURLOCNAMET

CREATE VIEW I_CurrentEHSLocationNameText AS
SELECT
  EHSLocationUUID,
  Language,
  EHSLocationName
FROM I_EHSLocationRevisionNameT
;