A_CnsldtnBaseUnitT
Unit of Measure - Text
A_CnsldtnBaseUnitT is a Basic CDS View that provides data about "Unit of Measure - Text" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasureText) and exposes 5 fields with key fields Language, UnitOfMeasure. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasureText | I_UnitOfMeasureText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_CnsldtnBaseUnit | _CnsldtnBaseUnit | $projection.UnitOfMeasure = _CnsldtnBaseUnit.UnitOfMeasure |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSBASEUNITTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Unit of Measure - Text | view | |
| OData.entitySet.name | BaseUnitText | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | UnitOfMeasure | |||
| BaseUnitText | ||||
| UnitOfMeasure_E | UnitOfMeasure_E | |||
| _CnsldtnBaseUnit | _CnsldtnBaseUnit |
@AbapCatalog:{
sqlViewName: 'ACSBASEUNITTEXT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #S},
dataCategory: #TEXT,
representativeKey: ['UnitOfMeasure']
}
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@EndUserText.label: 'Unit of Measure - Text'
@OData.entitySet.name: 'BaseUnitText'
define view A_CnsldtnBaseUnitT
as select from I_UnitOfMeasureText
association [0..1] to A_CnsldtnBaseUnit as _CnsldtnBaseUnit on $projection.UnitOfMeasure = _CnsldtnBaseUnit.UnitOfMeasure
{
@Semantics.language: true
key Language,
@Semantics.unitOfMeasure: true
@ObjectModel.foreignKey.association: '_CnsldtnBaseUnit'
key cast(UnitOfMeasure as fincs_runit preserving type ) as UnitOfMeasure,
@Semantics.text: true
cast(UnitOfMeasureName as fincs_runit_t preserving type) as BaseUnitText,
UnitOfMeasure_E,
_CnsldtnBaseUnit
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURETEXT"
],
"ASSOCIATED":
[
"A_CNSLDTNBASEUNIT"
],
"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