I_ActivityBasedCostingTmpl
CO-ABC Template Master Data
I_ActivityBasedCostingTmpl is a Basic CDS View (Dimension) that provides data about "CO-ABC Template Master Data" in SAP S/4HANA. It reads from 1 data source (cotpl) and exposes 7 fields with key fields ControllingArea, ActivityBasedCostingEnvrmt, ActivityBasedCostingTemplate.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cotpl | cotpl | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACTYBSDCOSTTMPL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | ActivityBasedCostingTemplate | view | |
| Metadata.allowExtensions | true | view | |
| EndUserText.label | CO-ABC Template Master Data | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | kokrs | ||
| KEY | ActivityBasedCostingEnvrmt | class | ||
| KEY | ActivityBasedCostingTemplate | template | ||
| ActivityBasedCostingTmplDesc | ||||
| _Text | _Text | |||
| _ControllingArea | _ControllingArea | |||
| _ActivityBasedCostingEnvrmt | _ActivityBasedCostingEnvrmt |
@AbapCatalog.sqlViewName: 'IACTYBSDCOSTTMPL'
@AbapCatalog.compiler.compareFilter: true
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'ActivityBasedCostingTemplate'
@Metadata.allowExtensions:true
@EndUserText.label: 'CO-ABC Template Master Data'
define view I_ActivityBasedCostingTmpl as select from cotpl
association[1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
association[1] to I_ActivityBasedCostingEnvrmt as _ActivityBasedCostingEnvrmt on $projection.ActivityBasedCostingEnvrmt = _ActivityBasedCostingEnvrmt.ActivityBasedCostingEnvrmt
association[0..*] to I_ActyBasedCostingTmplText as _Text on $projection.ControllingArea = _Text.ControllingArea
and $projection.ActivityBasedCostingEnvrmt = _Text.ActivityBasedCostingEnvrmt
and $projection.ActivityBasedCostingTemplate = _Text.ActivityBasedCostingTemplate
{
@ObjectModel.foreignKey.association: '_ControllingArea'
key kokrs as ControllingArea,
@ObjectModel.foreignKey.association: '_ActivityBasedCostingEnvrmt'
key class as ActivityBasedCostingEnvrmt,
@ObjectModel.text.association: '_Text'
key template as ActivityBasedCostingTemplate,
@Semantics.text: true
_Text[1:Language=$session.system_language].ActivityBasedCostingTmplDesc,
_Text,
_ControllingArea,
_ActivityBasedCostingEnvrmt
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ACTYBASEDCOSTINGTMPLTEXT",
"COTPL"
],
"ASSOCIATED":
[
"I_ACTIVITYBASEDCOSTINGENVRMT",
"I_ACTYBASEDCOSTINGTMPLTEXT",
"I_CONTROLLINGAREA"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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