C_EHSLocationAggregationDEX

DDL: C_EHSLOCATIONAGGREGATIONDEX Type: view_entity CONSUMPTION Package: EHENV_CNS_EMISSION_INVENTORY

EHS Location Aggregation

C_EHSLocationAggregationDEX is a Consumption CDS View (Dimension) that provides data about "EHS Location Aggregation" in SAP S/4HANA. It reads from 1 data source (I_LocAggregationRoot) and exposes 11 fields with key field LocAggregationUUID. It has 1 association to related views. Part of development package EHENV_CNS_EMISSION_INVENTORY.

Data Sources (1)

SourceAliasJoin Type
I_LocAggregationRoot I_LocAggregationRoot from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSLocationRevisionBasic _EHSLocationRevisionBasic $projection.EHSLocationUUID = _EHSLocationRevisionBasic.EHSLocationUUID

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label EHS Location Aggregation view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.sapObjectNodeType.name EHSLocationAggregation view
VDM.viewType #CONSUMPTION view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Analytics.internalName #LOCAL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY LocAggregationUUID LocAggregationUUID Location Aggregation Key
LocAggregationID LocAggregationID Location Aggregation ID
LocAggregationMigrationSource LocAggregationMigrationSource Migration Source
LocAggregationName LocAggregationName
DataUsagePeriodicity DataUsagePeriodicity
EHSLocationUUID EHSLocationUUID Location Key
UnitOfMeasure UnitOfMeasure
EHSSubjectType EHSSubjectType
EHSSubjectUUID EHSSubjectUUID Subject Key
LocAggregationTitle LocAggregationTitle Aggregation Title
_EHSLocationRevisionBasic _EHSLocationRevisionBasic
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'EHS Location Aggregation'
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions:true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #M,
  dataClass: #MASTER
}
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE ]
@ObjectModel.sapObjectNodeType.name: 'EHSLocationAggregation'
@VDM.viewType: #CONSUMPTION
@Analytics.dataExtraction.enabled:true
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.delta.changeDataCapture.automatic: true
@Analytics.internalName:#LOCAL
define view entity C_EHSLocationAggregationDEX
  as select from I_LocAggregationRoot
  association [0..*] to I_EHSLocationRevisionBasic as _EHSLocationRevisionBasic on $projection.EHSLocationUUID = _EHSLocationRevisionBasic.EHSLocationUUID
{
      @EndUserText.label: 'Location Aggregation Key'
  key LocAggregationUUID,
      @EndUserText.label: 'Location Aggregation ID'
      LocAggregationID,
      @EndUserText.label: 'Migration Source'
      LocAggregationMigrationSource,
      LocAggregationName,
      DataUsagePeriodicity,
      @EndUserText.label: 'Location Key'
      EHSLocationUUID,
      UnitOfMeasure,
      EHSSubjectType,
      @EndUserText.label: 'Subject Key'
      EHSSubjectUUID,
      @EndUserText.label: 'Aggregation Title'
      LocAggregationTitle,

      // Required for DCL

      _EHSLocationRevisionBasic
}