A_CostCenterText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CostCenterText | I_CostCenterText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_CostCenter | _CostCenter | $projection.ControllingArea = _CostCenter.ControllingArea and $projection.CostCenter = _CostCenter.CostCenter and $projection.ValidityEndDate = _CostCenter.ValidityEndDate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA