ICA_PROFITCENTER
ICA_PROFITCENTER is a CDS View in SAP S/4HANA. It reads from 2 data sources (cepc, cepct) and exposes 3 fields.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICAPRCTR | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view |
@AbapCatalog.sqlViewName: 'ICAPRCTR'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
define view ICA_PROFITCENTER
as select from cepc
left outer join cepct on cepct.prctr = cepc.prctr
and cepct.kokrs = cepc.kokrs
and cepct.datbi = cepc.datbi
and cepct.spras = $session.system_language
{
cepc.kokrs,
cepc.prctr,
cepct.ltext as unitName
} where cepc.mandt = $session.client
and cepc.datab <= $session.system_date
and cepc.datbi >= $session.system_date
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CEPC",
"CEPCT"
],
"ASSOCIATED":
[],
"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