I_EHSActiveScenDataColl

DDL: I_EHSACTIVESCENDATACOLL SQL: IEHSACTSCENDC Type: view BASIC

EHS Data Collections of active scenarios

I_EHSActiveScenDataColl is a Basic CDS View that provides data about "EHS Data Collections of active scenarios" in SAP S/4HANA. It reads from 2 data sources (I_EHSActiveScen, ehenvd_scen_root) and exposes 3 fields with key field EHSCmplncScenDataCollUUID.

Data Sources (2)

SourceAliasJoin Type
I_EHSActiveScen I_EHSActiveScen inner
ehenvd_scen_root scen_root inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEHSACTSCENDC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label EHS Data Collections of active scenarios view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EHSCmplncScenDataCollUUID ehenvd_scen_meas db_key UUID
DataCollectionUUID mdef_root_key_ref NodeID
EHSCmplncScenOrignRootUUID object_key UUID

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_EHSActiveScenDataColl.
-- 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: IEHSACTSCENDC

CREATE VIEW I_EHSActiveScenDataColl AS
SELECT
  ehenvd_scen_meas.db_key AS EHSCmplncScenDataCollUUID,
  mdef_root_key_ref AS DataCollectionUUID,
  object_key AS EHSCmplncScenOrignRootUUID
INNER JOIN ehenvd_scen_root AS scen_root ON /* join condition not captured in parsed metadata */
INNER JOIN I_EHSActiveScen ON /* join condition not captured in parsed metadata */
;