I_BR_CostCenterText
Brazil Cost Center - Text
I_BR_CostCenterText is a Basic CDS View that provides data about "Brazil Cost Center - Text" in SAP S/4HANA. It reads from 1 data source (cskt) and exposes 6 fields with key fields LanguageCode, CompanyCode, CostCenter, ValidityEndDate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cskt | cskt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BR_ControllingArea | _ControllingArea | _ControllingArea.ControllingArea = cskt.kokrs |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBRCOSTCENTERTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Brazil Cost Center - Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | cskt | spras | |
| KEY | CompanyCode | _ControllingArea | CompanyCode | |
| KEY | CostCenter | cskt | kostl | |
| KEY | ValidityEndDate | cskt | datbi | |
| CostCenterName | ||||
| CostCenterDescription | cskt | ltext |
@AbapCatalog.sqlViewName: 'IBRCOSTCENTERTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Brazil Cost Center - Text'
@VDM.viewType:#BASIC
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
define view I_BR_CostCenterText
as select from cskt
association [1..1] to I_BR_ControllingArea as _ControllingArea on _ControllingArea.ControllingArea = cskt.kokrs
{
@Semantics.language: true
key cskt.spras as LanguageCode,
key _ControllingArea.CompanyCode as CompanyCode,
key cskt.kostl as CostCenter,
key cskt.datbi as ValidityEndDate,
cast(cskt.ktext as eams_costcenter_desc preserving type) as CostCenterName,
@Semantics.text: true
cskt.ltext as CostCenterDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BR_CONTROLLINGAREA",
"CSKT"
],
"ASSOCIATED":
[
"I_BR_CONTROLLINGAREA"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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