I_ACMUnitOfMeasurement
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)
| Source | Alias | Join Type |
|---|---|---|
| t006 | t006 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [*] | I_ACMUnitOfMeasurementTxt | _UnitOfMeasurementText | |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA