A_CostCenterText

DDL: A_COSTCENTERTEXT SQL: AFICOSTCENTERT Type: view BASIC Package: FINS_FIS_API_COSTCENTER

Cost Center Text

A_CostCenterText is a Basic CDS View that provides data about "Cost Center Text" in SAP S/4HANA. It reads from 1 data source (I_CostCenterText) and exposes 8 fields with key fields CostCenter, ControllingArea, Language, ValidityEndDate. It has 1 association to related views. Part of development package FINS_FIS_API_COSTCENTER.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterText I_CostCenterText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CostCenter _CostCenter $projection.ControllingArea = _CostCenter.ControllingArea and $projection.CostCenter = _CostCenter.CostCenter and $projection.ValidityEndDate = _CostCenter.ValidityEndDate

Annotations (11)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CostCenter CostCenter
KEY ControllingArea ControllingArea
KEY Language Language
KEY ValidityEndDate ValidityEndDate
ValidityStartDate ValidityStartDate
CostCenterName CostCenterName
CostCenterDescription CostCenterDescription
_CostCenter _CostCenter
@EndUserText.label: 'Cost Center Text'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFICOSTCENTERT'
@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #M
}

// A-view annotations

@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

define view A_CostCenterText
  as select from I_CostCenterText
  association [1..1] to A_CostCenter as _CostCenter on  $projection.ControllingArea = _CostCenter.ControllingArea
                                                    and $projection.CostCenter      = _CostCenter.CostCenter
                                                    and $projection.ValidityEndDate = _CostCenter.ValidityEndDate

{
      //A_CostCenterText

  key CostCenter,
  key ControllingArea,
  key Language,
  key ValidityEndDate,
      ValidityStartDate,
      CostCenterName,
      CostCenterDescription,
      /* Associations */
      _CostCenter
}