I_ATPSelOptnToolUnitOfMeasure
Selection Option Tool Unit of Measure
I_ATPSelOptnToolUnitOfMeasure is a Basic CDS View that provides data about "Selection Option Tool Unit of Measure" in SAP S/4HANA. It reads from 1 data source (t006) and exposes 5 fields with key field UnitOfMeasure. It has 3 associations to related views. Part of development package ATP_SOT_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t006 | t006 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_UnitOfMeasureText | _Text | $projection.UnitOfMeasure = _Text.UnitOfMeasure |
| [0..1] | I_UnitOfMeasureDimension | _Dimension | $projection.UnitOfMeasureDimension = _Dimension.UnitOfMeasureDimension |
| [0..*] | I_UnitOfMeasureDimensionText | _DimensionText | $projection.UnitOfMeasureDimension = _DimensionText.UnitOfMeasureDimension |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | UnitOfMeasure | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Analytics.technicalName | IATPSelOptnToolUOM | view | |
| EndUserText.label | Selection Option Tool Unit of Measure | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitOfMeasure | msehi | ||
| UnitOfMeasureDimension | dimid | |||
| _Text | _Text | |||
| _Dimension | _Dimension | |||
| _DimensionText | _DimensionText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'UnitOfMeasure',
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
} }
@Analytics.technicalName: 'IATPSelOptnToolUOM'
@EndUserText.label: 'Selection Option Tool Unit of Measure'
define view entity I_ATPSelOptnToolUnitOfMeasure
as select from t006
association [0..*] to I_UnitOfMeasureText as _Text on $projection.UnitOfMeasure = _Text.UnitOfMeasure
association [0..1] to I_UnitOfMeasureDimension as _Dimension on $projection.UnitOfMeasureDimension = _Dimension.UnitOfMeasureDimension
association [0..*] to I_UnitOfMeasureDimensionText as _DimensionText on $projection.UnitOfMeasureDimension = _DimensionText.UnitOfMeasureDimension
{
@ObjectModel.text.association: '_Text'
key msehi as UnitOfMeasure,
@ObjectModel.foreignKey.association: '_Dimension'
dimid as UnitOfMeasureDimension,
_Text,
_Dimension,
_DimensionText
}
where
dimid = 'TIME'
and zaehl = 86400 -- only support day for now
and nennr = 1 -- not perfect, but well enough for now
and primary = 'X'
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