I_CFD_UnitOfMeasure
Unit of Measure
I_CFD_UnitOfMeasure is a Basic CDS View (Dimension) that provides data about "Unit of Measure" in SAP S/4HANA. It reads from 1 data source (t006) and exposes 2 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 |
|---|---|---|---|
| [1..*] | I_CFD_UnitOfMeasureText | _Text | $projection.UnitOfMeasure = _Text.UnitOfMeasure |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICFDUNITOFMSR | view | |
| EndUserText.label | Unit of Measure | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitOfMeasure | msehi | ||
| _Text | _Text |
//copied from package VDM_FND in sSUITE Dev System
@AbapCatalog.sqlViewName: 'ICFDUNITOFMSR'
@EndUserText.label: 'Unit of Measure'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
//@VDM.CoreEntityView : true
@VDM.viewType: #BASIC
define view I_CFD_UnitOfMeasure as select from t006
association [1..*] to I_CFD_UnitOfMeasureText as _Text
on $projection.UnitOfMeasure = _Text.UnitOfMeasure
{
key msehi as UnitOfMeasure,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T006"
],
"ASSOCIATED":
[
"I_CFD_UNITOFMEASURETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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