I_ConcnUnitOfMsmtValueHelp
Unit of Measurement for Concentration Values in Composition
I_ConcnUnitOfMsmtValueHelp is a Composite CDS View that provides data about "Unit of Measurement for Concentration Values in Composition" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasure | I_UnitOfMeasure | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Unit of Measurement for Concentration Values in Composition | view | |
| AbapCatalog.sqlViewName | ICONCUMOVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| UnitofmeasurementkeyUnitOfMeasure | ||||
| UnitOfMeasureTechnicalName | ||||
| UnitOfMeasureLongName | ||||
| _Text | _Text |
--Label of view
@EndUserText.label: 'Unit of Measurement for Concentration Values in Composition'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'ICONCUMOVH',
--If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
compiler.compareFilter: true,
preserveKey: true
}
--Access Control: Authorizations Checks
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel:
{
--for value help
dataCategory: #VALUE_HELP,
resultSet.sizeCategory: #XS,
usageType:
{
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #B
}
}
@Search.searchable: true
define view I_ConcnUnitOfMsmtValueHelp
as select from I_UnitOfMeasure
{
--Unit of measurement
@Search:
{
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@ObjectModel.text.element: ['UnitOfMeasureTechnicalName']
key UnitOfMeasure,
--Short description (3 chars) of unit of measurement
@Search:
{
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
UnitOfMeasure_E,
--Short description (6 chars) of unit of measurement
@Search:
{
defaultSearchElement: true,
fuzzinessThreshold: 0.9,
ranking: #HIGH
}
_Text[1: Language = $session.system_language].UnitOfMeasureTechnicalName,
--Long description
@Search:
{
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
_Text[1: Language = $session.system_language].UnitOfMeasureLongName,
/*Association*/
_Text
}
where
UnitOfMeasure = '%'
or UnitOfMeasure = 'PPM'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE",
"I_UNITOFMEASURETEXT"
],
"ASSOCIATED":
[
"I_UNITOFMEASURETEXT"
],
"BASE":
[
"I_UNITOFMEASURE"
],
"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