I_ACMUnitOfMeasurement

DDL: I_ACMUNITOFMEASUREMENT SQL: IACMUNITOFMSMNT Type: view BASIC

ACM Unit of measurement

I_ACMUnitOfMeasurement is a Basic CDS View that provides data about "ACM Unit of measurement" in SAP S/4HANA. It reads from 1 data source (t006) and exposes 7 fields with key field UnitOfMeasure. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t006 t006 from

Associations (1)

CardinalityTargetAliasCondition
[*] I_ACMUnitOfMeasurementTxt _UnitOfMeasurementText

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMUNITOFMSMNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label ACM Unit of measurement view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure
UnitOfMeasureISOCode isocode
IsPrimaryUnitForISOCode primary
UnitOfMeasureNumberOfDecimals andec
UnitOfMeasureIsCommercial kzkeh
UnitOfMeasureDimension dimid
_UnitOfMeasurementText _UnitOfMeasurementText
@AbapCatalog.sqlViewName: 'IACMUNITOFMSMNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK

@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
  }
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
               usageType: {
                 dataClass: #MASTER,
                 serviceQuality: #A,
                 sizeCategory: #L
               }
}
@EndUserText.label: 'ACM Unit of measurement'
define root view I_ACMUnitOfMeasurement
  as select from t006
  composition [*] of I_ACMUnitOfMeasurementTxt as _UnitOfMeasurementText
{

  key cast ( msehi as msehiunit preserving type ) as UnitOfMeasure,
      isocode                                     as UnitOfMeasureISOCode,
      primary                                     as IsPrimaryUnitForISOCode,
      andec                                       as UnitOfMeasureNumberOfDecimals, // for rounding

      kzkeh                                       as UnitOfMeasureIsCommercial,
      dimid                                       as UnitOfMeasureDimension,
 
      _UnitOfMeasurementText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T006"
],
"ASSOCIATED":
[
"I_ACMUNITOFMEASUREMENTTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/