I_CollsCompanyCodeVH

DDL: I_COLLSCOMPANYCODEVH Type: view BASIC

Company Code VH

I_CollsCompanyCodeVH is a Basic CDS View that provides data about "Company Code VH" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 8 fields with key field CompanyCode. It is exposed through 1 OData service (UI_PROCESSRECEIVABLES_MANAGE).

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICLLSCMPVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Company Code VH view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CompanyCode view
Search.searchable true view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PROCESSRECEIVABLES_MANAGE UI_PROCESSRECEIVABLES_MAN V2 C1 NOT_TO_BE_RELEASED_STABLE

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
CompanyCodeName CompanyCodeName
Country Country
CityName CityName
Currency Currency
CurrencyName
_Country _Country
_Currency _Currency
@AbapCatalog: { sqlViewName: 'ICLLSCMPVH',
                compiler: { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@EndUserText: { label: 'Company Code VH' }
@VDM: { viewType:  #BASIC,
        lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #B,
                             sizeCategory: #M,
                             dataClass: #MASTER },
                dataCategory: #VALUE_HELP,
                semanticKey: [ 'CompanyCode' ],
                representativeKey: 'CompanyCode' }
@Search: { searchable: true }
@Consumption: { ranked: true }

define view I_CollsCompanyCodeVH
  as select from I_CompanyCode
{

      // VDM Fields

      @UI: { lineItem: [ { position:   10,
                           importance: #HIGH } ] }
      @ObjectModel: { text: { element: [ 'CompanyCodeName' ] } }
      @Search: { defaultSearchElement: true,
                 ranking:              #HIGH,
                 fuzzinessThreshold:   0.9 }
  key CompanyCode,

      @UI: { lineItem: [ { position:   20,
                           importance: #MEDIUM } ] }
      @Search: { defaultSearchElement: true,
                 ranking:              #LOW,
                 fuzzinessThreshold:   0.9 }
      CompanyCodeName,

      @UI: { lineItem: [ { position: 30,
                           importance: #HIGH } ] }
      @Search: { defaultSearchElement: true,
                 ranking:              #LOW,
                 fuzzinessThreshold:   0.9 }
      @Consumption: { valueHelpDefinition: [ { entity: { name:    'I_CountryVH',
                                                         element: 'Country' } } ] }
      Country,

      @UI: { lineItem: [ { position: 40,
                           importance: #HIGH } ] }
      @Search: { defaultSearchElement: true,
                 ranking:              #LOW,
                 fuzzinessThreshold:   0.9 }
      CityName,

      @UI: { lineItem: [ { position: 50,
                           importance: #HIGH } ] }
      @ObjectModel: { text: { element: [ 'CurrencyName' ] } }
      
      @Consumption: { valueHelpDefinition: [ { entity: { name:    'I_CurrencyStdVH',
                                                         element: 'Currency' } } ] }
      Currency,

      @Semantics: { text: true }
      @UI: { hidden: true }
      _Currency._Text[1:Language = $session.system_language].CurrencyName as CurrencyName,

      // Exposed Associations

      _Country,
      _Currency

}