C_UoMMaxPackTemp
Unit of Measure packing View
C_UoMMaxPackTemp is a Consumption CDS View that provides data about "Unit of Measure packing View" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 2 fields with key field UnitForMaxPackagingDimensions. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasure | UnitOfMeasure | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_UnitOfMeasureText | _Text | $projection.UnitForMaxPackagingDimensions = _Text.UnitOfMeasure |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CUOMPACKTEMP | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_UnitOfMeasure | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | UnitForMaxPackagingDimensions | view | |
| EndUserText.label | Unit of Measure packing View | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitForMaxPackagingDimensions | I_UnitOfMeasure | UnitOfMeasure | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CUOMPACKTEMP'
@VDM:{
viewType: #CONSUMPTION,
lifecycle: {
status: #DEPRECATED,
successor: 'I_UnitOfMeasure'
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'UnitForMaxPackagingDimensions'
@EndUserText.label: 'Unit of Measure packing View'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
define view C_UoMMaxPackTemp
as select from I_UnitOfMeasure as UnitOfMeasure
association [0..*] to I_UnitOfMeasureText as _Text on $projection.UnitForMaxPackagingDimensions = _Text.UnitOfMeasure
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
key UnitOfMeasure.UnitOfMeasure as UnitForMaxPackagingDimensions,
_Text
}
where
UnitOfMeasure.UnitOfMeasureDimension = 'LENGTH'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE"
],
"ASSOCIATED":
[
"I_UNITOFMEASURETEXT"
],
"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