A_CostCenterText

DDL: A_COSTCENTERTEXT SQL: AFICOSTCENTERT Type: view BASIC

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.

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 Cost Center
KEY ControllingArea ControllingArea Controlling Area
KEY Language Language Report Text Language
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CostCenterName CostCenterName Name
CostCenterDescription CostCenterDescription Description
_CostCenter _CostCenter

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_CostCenterText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: AFICOSTCENTERT

CREATE VIEW A_CostCenterText AS
SELECT
  CostCenter,
  ControllingArea,
  Language,
  ValidityEndDate,
  ValidityStartDate,
  CostCenterName,
  CostCenterDescription
FROM I_CostCenterText
LEFT OUTER JOIN A_CostCenter AS _CostCenter ON ControllingArea = _CostCenter.ControllingArea AND CostCenter = _CostCenter.CostCenter AND ValidityEndDate = _CostCenter.ValidityEndDate  -- association [1..1]
;