I_EHSLocationAuthznGroup

DDL: I_EHSLOCATIONAUTHZNGROUP Type: view BASIC

EHS Location Authorization Group

I_EHSLocationAuthznGroup is a Basic CDS View (Dimension) that provides data about "EHS Location Authorization Group" in SAP S/4HANA. It reads from 1 data source (ehfndc_loc_aut) and exposes 2 fields with key field EHSLocationAuthorizationGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ehfndc_loc_aut ehfndc_loc_aut from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSLocationAuthznGrpTxt _Text $projection.EHSLocationAuthorizationGroup = _Text.EHSLocationAuthorizationGroup

Annotations (14)

NameValueLevelField
EndUserText.label EHS Location Authorization Group view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.representativeKey EHSLocationAuthorizationGroup view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ILOCAUTHGROUP view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.status #ACTIVE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationAuthorizationGroup ehfndc_loc_aut code 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_EHSLocationAuthznGroup.
-- 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_EHSLocationAuthznGroup AS
SELECT
  ehfndc_loc_aut.code AS EHSLocationAuthorizationGroup
FROM ehfndc_loc_aut
LEFT OUTER JOIN I_EHSLocationAuthznGrpTxt AS _Text ON EHSLocationAuthorizationGroup = _Text.EHSLocationAuthorizationGroup  -- association [0..*]
;