FAC_PROFITCENTERVH

DDL: FAC_PROFITCENTERVH SQL: FACPROFITCENTER Type: view

Value help for profit center

FAC_PROFITCENTERVH is a CDS View that provides data about "Value help for profit center" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenter) and exposes 5 fields with key fields ProfitCenter, ControllingArea, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FACPROFITCENTER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help for profit center view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProfitCenter ProfitCenter
KEY ControllingArea ControllingArea
KEY ValidityEndDate ValidityEndDate
ValidityStartDate ValidityStartDate
ProfitCenterName
@AbapCatalog.sqlViewName: 'FACPROFITCENTER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Value help for profit center'
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #M
}
@Search.searchable: true
define view FAC_PROFITCENTERVH
  as select from I_ProfitCenter
{
  @ObjectModel.text.element:  [ 'ProfitCenterName' ]
  @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key ProfitCenter,

  key ControllingArea,
  
      @Semantics.businessDate.to: true
  key ValidityEndDate,
      @Semantics.businessDate.from: true
      ValidityStartDate,

  @Semantics.text: true
  @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
  _Text[1: Language = $session.system_language].ProfitCenterName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PROFITCENTER",
"I_PROFITCENTERTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/