FACRA_PROFITCENTERVH

DDL: FACRA_PROFITCENTERVH SQL: FACRAPCVH Type: view

Profit Center Value Help

FACRA_PROFITCENTERVH is a CDS View that provides data about "Profit Center Value Help" in SAP S/4HANA. It reads from 1 data source (cepc) and exposes 5 fields with key fields ControllingArea, ProfitCenter, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
cepc cepc from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FACRAPCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
EndUserText.label Profit Center Value Help view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea kokrs
KEY ProfitCenter prctr
KEY ValidityEndDate datbi
_ControllingArea _ControllingArea
_Text _Text
@AbapCatalog.sqlViewName: 'FACRAPCVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #M
}
@Search.searchable: true
@EndUserText.label: 'Profit Center Value Help'
define view FACRA_PROFITCENTERVH as select from cepc 
association[1..1] to I_ControllingArea           as _ControllingArea           on $projection.ControllingArea   = _ControllingArea.ControllingArea
association[0..*] to I_ProfitCenterText          as _Text                      on $projection.ControllingArea   = _Text.ControllingArea and
                                                                                  $projection.ProfitCenter      = _Text.ProfitCenter and
                                                                                  $projection.ValidityEndDate   = _Text.ValidityEndDate{
  key kokrs  as ControllingArea,
  @ObjectModel.text.association: '_Text'
  @ObjectModel.hierarchy.association: '_ProfitCenterHierarchyNode'
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  key prctr  as ProfitCenter,
  @Semantics.businessDate.to: true
  key datbi  as ValidityEndDate, 
  
  _ControllingArea,
  _Text                                                                                  
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CEPC"
],
"ASSOCIATED":
[
"I_CONTROLLINGAREA",
"I_PROFITCENTERTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/