I_UnitOfMeasureDimension

DDL: I_UNITOFMEASUREDIMENSION SQL: IUNITOFMEADIM Type: view BASIC Package: SZME

Unit of Measure Dimension

I_UnitOfMeasureDimension is a Basic CDS View (Dimension) that provides data about "Unit of Measure Dimension" in SAP S/4HANA. It reads from 1 data source (t006d) and exposes 12 fields with key field UnitOfMeasureDimension. It has 1 association to related views. Part of development package SZME.

Data Sources (1)

SourceAliasJoin Type
t006d t006d from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UnitOfMeasureDimensionText _Text $projection.UnitOfMeasureDimension = _Text.UnitOfMeasureDimension

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IUNITOFMEADIM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Unit of Measure Dimension view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey UnitOfMeasureDimension view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasureDimension dimid
LengthExponent leng
MassExponent mass
TimeExponent timex
ElectricCurrentExponent ecurr
TemperatureExponent temp
MoleQuantityExponent molqu
LuminosityExponent light
UnitOFMeasureSiUnit mssie
HasUnitsWithTemperatureSpec temp_dep
HasUnitsWithPressureSpec press_dep
_Text _Text
@AbapCatalog.sqlViewName: 'IUNITOFMEADIM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Unit of Measure Dimension'

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'UnitOfMeasureDimension'
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, 
                                     #CDS_MODELING_DATA_SOURCE, 
                                     #CDS_MODELING_ASSOCIATION_TARGET]

@Analytics.internalName: #LOCAL
@Analytics:{ dataCategory: #DIMENSION, dataExtraction.enabled: true }

define view I_UnitOfMeasureDimension 
  as select from t006d
  
  association [0..*] to I_UnitOfMeasureDimensionText as _Text 
    on $projection.UnitOfMeasureDimension = _Text.UnitOfMeasureDimension

{
    @ObjectModel.text.association: '_Text'
    key dimid as UnitOfMeasureDimension,
    leng      as LengthExponent,
    mass      as MassExponent,
    timex     as TimeExponent,
    ecurr     as ElectricCurrentExponent,
    temp      as TemperatureExponent,
    molqu     as MoleQuantityExponent,
    light     as LuminosityExponent,
    mssie     as UnitOFMeasureSiUnit,
    temp_dep  as HasUnitsWithTemperatureSpec,
    press_dep as HasUnitsWithPressureSpec,  
     
    _Text
 
}