R_WorkAssignmentCompanyCodeVH

DDL: R_WORKASSIGNMENTCOMPANYCODEVH Type: view_entity COMPOSITE

Select: Company Code

R_WorkAssignmentCompanyCodeVH is a Composite CDS View that provides data about "Select: Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 3 fields with key field CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #MANDATORY view
Analytics.technicalName RWORKASSIGNMENTCOMPANYCODEVH view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
ObjectModel.representativeKey CompanyCode view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
EndUserText.label Select: Company Code view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Company Code
CompanyCodeName CompanyCodeName
Country Country
@AbapCatalog.viewEnhancementCategory: [#NONE]
@ObjectModel.dataCategory:#VALUE_HELP
@AccessControl.authorizationCheck: #MANDATORY
@Analytics.technicalName: 'RWORKASSIGNMENTCOMPANYCODEVH'
@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked:true
@ObjectModel.representativeKey:'CompanyCode'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #SAP_INTERNAL_API
}
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@Search.searchable: true
@EndUserText.label: 'Select: Company Code'
define view entity R_WorkAssignmentCompanyCodeVH
  as select from I_CompanyCode
{
      @ObjectModel.text.element:  [ 'CompanyCodeName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH }
      @EndUserText.label: 'Company Code'
  key CompanyCode     as CompanyCode,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.9 }
      CompanyCodeName as CompanyCodeName,

      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.9 }
      Country         as Country
}