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 Unit of measmnt
UnitOfMeasureISOCode isocode ISO Code
IsPrimaryUnitForISOCode primary Primary code
UnitOfMeasureNumberOfDecimals andec Rounding
UnitOfMeasureIsCommercial kzkeh Commercial Unit
UnitOfMeasureDimension dimid Dimension
_UnitOfMeasurementText _UnitOfMeasurementText

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_ACMUnitOfMeasurement.
-- 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: IACMUNITOFMSMNT

CREATE VIEW I_ACMUnitOfMeasurement AS
SELECT
  cast ( msehi as msehiunit preserving type ) AS UnitOfMeasure,
  isocode AS UnitOfMeasureISOCode,
  primary AS IsPrimaryUnitForISOCode,
  andec AS UnitOfMeasureNumberOfDecimals,
  kzkeh AS UnitOfMeasureIsCommercial,
  dimid AS UnitOfMeasureDimension
FROM t006
LEFT OUTER JOIN I_ACMUnitOfMeasurementTxt AS _UnitOfMeasurementText ON /* condition not available in parsed metadata */  -- association [*]
;