I_EHSCmplncScenDataColl

DDL: I_EHSCMPLNCSCENDATACOLL SQL: IEHSCMPLSCENCOLL Type: view BASIC

EHS Compliance Scenario Data Collection

I_EHSCmplncScenDataColl is a Basic CDS View that provides data about "EHS Compliance Scenario Data Collection" in SAP S/4HANA. It reads from 1 data source (ehenvd_scen_meas) and exposes 8 fields with key fields EHSCmplncScenDataCollUUID, EHSComplianceScenarioRootUUID.

Data Sources (1)

SourceAliasJoin Type
ehenvd_scen_meas ehenvd_scen_meas from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IEHSCMPLSCENCOLL view
EndUserText.label EHS Compliance Scenario Data Collection view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY EHSCmplncScenDataCollUUID db_key UUID
KEY EHSComplianceScenarioRootUUID parent_key UUID
CreationDateTime datetime_cr Created On/At
LastChangeDateTime datetime_ch Changed On/At
CreatedByUser user_id_cr Created By
LastChangedByUser user_id_ch Changed By
DataCollectionUUID mdef_root_key_ref NodeID
ActyIsOwndByEHSCmplncScen is_owned_indicator Select

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_EHSCmplncScenDataColl.
-- 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: IEHSCMPLSCENCOLL

CREATE VIEW I_EHSCmplncScenDataColl AS
SELECT
  db_key AS EHSCmplncScenDataCollUUID,
  parent_key AS EHSComplianceScenarioRootUUID,
  datetime_cr AS CreationDateTime,
  datetime_ch AS LastChangeDateTime,
  user_id_cr AS CreatedByUser,
  user_id_ch AS LastChangedByUser,
  mdef_root_key_ref AS DataCollectionUUID,
  is_owned_indicator AS ActyIsOwndByEHSCmplncScen
FROM ehenvd_scen_meas
;