CDS_prctr_v
Profit Center Set
CDS_prctr_v is a CDS View that provides data about "Profit Center Set" in SAP S/4HANA. It reads from 2 data sources (cepc, cepct) and exposes 12 fields. Part of development package ODATA_SEGMENT.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CDS_V_PRCTR | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| Client | cepc | mandt | ||
| Profitcenterarea | cepc | khinr | ||
| Validfromdate | cepc | datab | ||
| Segment | cepc | segment | ||
| Validtodate | cepc | datbi | ||
| Personresponsible | cepc | verak | ||
| Profitcenter | cepc | prctr | ||
| Controlarea | cepc | kokrs | ||
| OriginalLanguage | cepc | spras | ||
| Language | cepct | spras | ||
| Generalname | cepct | ktext | ||
| Lockindicator | cepc | lock_ind |
@AbapCatalog.sqlViewName: 'CDS_V_PRCTR'
@ObjectModel.usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #XL
}
define view CDS_prctr_v as
select from cepc as prctrset
left outer join cepct as prctrtext
on prctrset.kokrs = prctrtext.kokrs
and prctrset.prctr = prctrtext.prctr
and prctrset.datbi = prctrtext.datbi
{
prctrset.mandt as Client,
prctrset.khinr as Profitcenterarea,
prctrset.datab as Validfromdate,
prctrset.segment as Segment,
prctrset.datbi as Validtodate,
prctrset.verak as Personresponsible,
prctrset.prctr as Profitcenter,
prctrset.kokrs as Controlarea,
prctrset.spras as OriginalLanguage,
prctrtext.spras as Language,
prctrtext.ktext as Generalname,
prctrset.lock_ind as Lockindicator
}
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