A_ProfitCenterText

DDL: A_PROFITCENTERTEXT SQL: AFIPROFITCENTERT Type: view BASIC

Profit Center Text

A_ProfitCenterText is a Basic CDS View that provides data about "Profit Center Text" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenterText) and exposes 8 fields with key fields Language, ControllingArea, ProfitCenter, ValidityEndDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenterText I_ProfitCenterText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_ProfitCenter _ProfitCenter $projection.ControllingArea = _ProfitCenter.ControllingArea and $projection.ProfitCenter = _ProfitCenter.ProfitCenter and $projection.ValidityEndDate = _ProfitCenter.ValidityEndDate

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName AFIPROFITCENTERT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Profit Center Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY ControllingArea ControllingArea
KEY ProfitCenter ProfitCenter
KEY ValidityEndDate ValidityEndDate
ValidityStartDate ValidityStartDate
ProfitCenterName ProfitCenterName
ProfitCenterLongName ProfitCenterLongName
_ProfitCenter _ProfitCenter
@AbapCatalog.sqlViewName: 'AFIPROFITCENTERT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Profit Center Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #M
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

define view A_ProfitCenterText
  as select from I_ProfitCenterText

  association [1..1] to A_ProfitCenter as _ProfitCenter on  $projection.ControllingArea = _ProfitCenter.ControllingArea
                                                        and $projection.ProfitCenter    = _ProfitCenter.ProfitCenter
                                                        and $projection.ValidityEndDate = _ProfitCenter.ValidityEndDate

{
  key Language,
  key ControllingArea,
  key ProfitCenter,
  key ValidityEndDate,
      ValidityStartDate,
      ProfitCenterName,
      ProfitCenterLongName,
      /* Associations */
      _ProfitCenter
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PROFITCENTERTEXT"
],
"ASSOCIATED":
[
"A_PROFITCENTER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/