I_JournalEntryCompanyCodeVH

DDL: I_JOURNALENTRYCOMPANYCODEVH Type: view_entity COMPOSITE Package: FIN_COMPANY_CODE_VDM

Company Code

I_JournalEntryCompanyCodeVH is a Composite CDS View that provides data about "Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 7 fields with key field CompanyCode. Part of development package FIN_COMPANY_CODE_VDM.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (12)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CompanyCode view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Company Code view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_CompanyCode CompanyCode
CompanyCodeName I_CompanyCode CompanyCodeName
CityName I_CompanyCode CityName
Country I_CompanyCode Country
Currency I_CompanyCode Currency
_Currency I_CompanyCode _Currency
_Country I_CompanyCode _Country
@VDM.viewType: #COMPOSITE

@ObjectModel: { dataCategory: #VALUE_HELP,
                representativeKey: 'CompanyCode',
                usageType.sizeCategory: #S,
                usageType.dataClass: #ORGANIZATIONAL,
                usageType.serviceQuality: #B,
                supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY],
                modelingPattern: #VALUE_HELP_PROVIDER }

@AccessControl.authorizationCheck: #MANDATORY

@Search.searchable: true
@Consumption.ranked: true

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Company Code'
define view entity I_JournalEntryCompanyCodeVH as select from I_CompanyCode as I_CompanyCode {
  @ObjectModel.text.element: ['CompanyCodeName']
  @Search.defaultSearchElement: true
  @Search.ranking: #HIGH
  @Search.fuzzinessThreshold: 0.7
  key I_CompanyCode.CompanyCode,

  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.7
  @Semantics.text: true
  I_CompanyCode.CompanyCodeName,
  
  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.8        
  I_CompanyCode.CityName,
  I_CompanyCode.Country,
  I_CompanyCode.Currency,
  
  I_CompanyCode._Currency,
  I_CompanyCode._Country
  
}