C_ConditionQuantityUnit_VH

DDL: C_CONDITIONQUANTITYUNIT_VH SQL: CCONDQUANUNITVH Type: view CONSUMPTION

Condition Quantity Unit Value Help

C_ConditionQuantityUnit_VH is a Consumption CDS View that provides data about "Condition Quantity Unit Value Help" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 3 fields with key field ConditionQuantityUnit.

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure UnitOfMeasure from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CCONDQUANUNITVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ConditionQuantityUnit view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Condition Quantity Unit Value Help view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConditionQuantityUnit I_UnitOfMeasure UnitOfMeasure
UnitOfMeasure_E
UnitOfMeasureLongName
@AbapCatalog.sqlViewName: 'CCONDQUANUNITVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'ConditionQuantityUnit'
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable:true
@Consumption.ranked:true
@EndUserText.label: 'Condition Quantity Unit Value Help'
define view C_ConditionQuantityUnit_VH
  as select from I_UnitOfMeasure as UnitOfMeasure
{

    @ObjectModel.text.element:  [ 'UnitOfMeasureLongName' ]
    @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
    @UI.lineItem.position: 10
    @UI.selectionField.position: 10
    key UnitOfMeasure.UnitOfMeasure                                                 as ConditionQuantityUnit,
    @Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8 }
    @UI.lineItem.position: 20
    @UI.selectionField.position: 20
    cast( UnitOfMeasure._Text[ 1: Language = $session.system_language ].UnitOfMeasure_E as fis_mseh3 preserving type ) as UnitOfMeasure_E,
    @Semantics.text: true
    @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
    @UI.lineItem.position: 30
    @UI.selectionField.position: 30
    UnitOfMeasure._Text[ 1: Language = $session.system_language ].UnitOfMeasureLongName  as UnitOfMeasureLongName
}

where  UnitOfMeasure._Text[ 1: Language = $session.system_language ].UnitOfMeasure_E <> '';       
               
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE",
"I_UNITOFMEASURETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/