C_MM_PointsUnitOfMeasure
Points Unit Of Measure
C_MM_PointsUnitOfMeasure is a Consumption CDS View that provides data about "Points Unit Of Measure" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 6 fields with key field UnitOfMeasure.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasure | UnitOfMeasure | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMMUOM_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.semanticKey | UnitOfMeasure | view | |
| ObjectModel.representativeKey | UnitOfMeasure | view | |
| EndUserText.label | Points Unit Of Measure | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitOfMeasure | UnitOfMeasure | ||
| UnitOfMeasureName | ||||
| UnitOfMeasureDimension | UnitOfMeasureDimension | |||
| UnitOfMeasureISOCode | UnitOfMeasureISOCode | |||
| UnitOfMeasureNumberOfDecimals | UnitOfMeasureNumberOfDecimals | |||
| UnitOfMeasureDspNmbrOfDcmls | UnitOfMeasureDspNmbrOfDcmls |
@AbapCatalog.sqlViewName: 'CMMUOM_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.semanticKey: 'UnitOfMeasure'
@ObjectModel.representativeKey: 'UnitOfMeasure'
@EndUserText.label: 'Points Unit Of Measure'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
define view C_MM_PointsUnitOfMeasure
as select from I_UnitOfMeasure as UnitOfMeasure
{
@ObjectModel.text.element: [ 'UnitOfMeasureName' ]
@Search: { defaultSearchElement: true, ranking: #HIGH }
key UnitOfMeasure,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
_Text[1: Language = $session.system_language].UnitOfMeasureName as UnitOfMeasureName,
UnitOfMeasureDimension,
UnitOfMeasureISOCode,
UnitOfMeasureNumberOfDecimals,
UnitOfMeasureDspNmbrOfDcmls
}
where
UnitOfMeasureDimension = 'POINTS'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE",
"I_UNITOFMEASURETEXT"
],
"ASSOCIATED":
[],
"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