C_TranspOrdCtryRegVH

DDL: C_TRANSPORDCTRYREGVH SQL: CCOLLABNCTRYREG Type: view CONSUMPTION

Country Region

C_TranspOrdCtryRegVH is a Consumption CDS View that provides data about "Country Region" in SAP S/4HANA. It reads from 1 data source (I_Country) and exposes 5 fields with key field Country.

Data Sources (1)

SourceAliasJoin Type
I_Country I_Country from

Annotations (15)

NameValueLevelField
Consumption.ranked true view
AbapCatalog.sqlViewName CCOLLABNCTRYREG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Country view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Country Region view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country
CountryName
CountryThreeLetterISOCode CountryThreeLetterISOCode
CountryThreeDigitISOCode CountryThreeDigitISOCode
_Text _Text
@Consumption.ranked:true 
@AbapCatalog.sqlViewName: 'CCOLLABNCTRYREG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: {dataCategory: #VALUE_HELP,
               representativeKey: 'Country',
               usageType:  { serviceQuality: #A,
                              sizeCategory: #S,
                              dataClass: #MASTER}

              }
@VDM.viewType: #CONSUMPTION              
@Search.searchable: true
//@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Country Region'
define view C_TranspOrdCtryRegVH
  as select from I_Country
{
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH
  //  @ObjectModel.text.element: 'Description'

    key Country,
    
   @Semantics.text: true
    @Search.ranking: #LOW
    @Search.defaultSearchElement: true
    @UI.hidden: true 
    _Text[1: Language = $session.system_language].CountryName, 
    
    @Search.defaultSearchElement: true
    CountryThreeLetterISOCode,
    @Search.defaultSearchElement: true
    CountryThreeDigitISOCode,
    
    _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COUNTRY",
"I_COUNTRYTEXT"
],
"ASSOCIATED":
[
"I_COUNTRYTEXT"
],
"BASE":
[
"I_COUNTRY"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/