I_EHSLocAggrgnClassifier

DDL: I_EHSLOCAGGRGNCLASSIFIER SQL: IEHSADEFCLSF Type: view BASIC Package: EHENV_BO_ADEF_IMPL

Location Aggregation Classifier

I_EHSLocAggrgnClassifier is a Basic CDS View that provides data about "Location Aggregation Classifier" in SAP S/4HANA. It reads from 1 data source (ehenvd_adef_acla) and exposes 5 fields with key field AggrgnClassifierUUID. Part of development package EHENV_BO_ADEF_IMPL.

Data Sources (1)

SourceAliasJoin Type
ehenvd_adef_acla ehenvd_adef_acla from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEHSADEFCLSF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Location Aggregation Classifier view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AggrgnClassifierUUID db_key UUID
LocAggregationUUID parent_key UUID
EHSDataClassifierIsActive set_ind Select
EHSDataClassifierUUID aggr_classifier_root_key_ref NodeID
EHSDataClassifierCodeUUID aggr_classifier_code_key_ref

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_EHSLocAggrgnClassifier.
-- 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: IEHSADEFCLSF

CREATE VIEW I_EHSLocAggrgnClassifier AS
SELECT
  db_key AS AggrgnClassifierUUID,
  parent_key AS LocAggregationUUID,
  set_ind AS EHSDataClassifierIsActive,
  aggr_classifier_root_key_ref AS EHSDataClassifierUUID,
  aggr_classifier_code_key_ref AS EHSDataClassifierCodeUUID
FROM ehenvd_adef_acla
;