I_CostAnalysisResource
Cost Analysis Resource
I_CostAnalysisResource is a Basic CDS View (Dimension) that provides data about "Cost Analysis Resource" in SAP S/4HANA. It reads from 1 data source (cskr) and exposes 7 fields with key fields ControllingArea, CostAnalysisResource, ValidityEndDate. It has 3 associations to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cskr | cskr | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ControllingArea | _ControllingAreaText | $projection.ControllingArea = _ControllingAreaText.ControllingArea |
| [1..1] | I_ControllingArea | _ControllingArea | $projection.ControllingArea = _ControllingArea.ControllingArea |
| [0..*] | I_CostAnalysisResourceText | _Text | $projection.ControllingArea = _Text.ControllingArea and $projection.CostAnalysisResource = _Text.CostAnalysisResource |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | false | view | |
| EndUserText.label | Cost Analysis Resource | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| Analytics.technicalName | IFICOANLYSRESRC | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | CostAnalysisResource | view | |
| ObjectModel.sapObjectNodeType.name | CostAnalysisResource | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.allowExtensions | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | |||
| KEY | CostAnalysisResource | |||
| KEY | ValidityEndDate | |||
| ValidityStartDate | ||||
| _ControllingArea | _ControllingArea | |||
| _Text | _Text | |||
| _ControllingAreaText | _ControllingAreaText |
@AbapCatalog.entityBuffer.definitionAllowed: false
@EndUserText.label: 'Cost Analysis Resource'
@Analytics:{
dataCategory: #DIMENSION,
dataExtraction: {
enabled: true,
delta.changeDataCapture: {
automatic: true
}
}
}
@Analytics.technicalName: 'IFICOANLYSRESRC'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: { usageType.sizeCategory: #S,
usageType.dataClass: #MASTER,
usageType.serviceQuality: #A,
representativeKey: 'CostAnalysisResource',
sapObjectNodeType.name: 'CostAnalysisResource',
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY],
modelingPattern: #ANALYTICAL_DIMENSION }
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@Metadata.allowExtensions:true
//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG
@AccessControl.privilegedAssociations: ['_ControllingAreaText']
// ]--GENERATED
define view entity I_CostAnalysisResource
as select from cskr
//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG
association [1..1] to I_ControllingArea as _ControllingAreaText on $projection.ControllingArea = _ControllingAreaText.ControllingArea
// ]--GENERATED
association [1..1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
association [0..*] to I_CostAnalysisResourceText as _Text on $projection.ControllingArea = _Text.ControllingArea
and $projection.CostAnalysisResource = _Text.CostAnalysisResource
{
//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_ControllingAreaStdVH',
element: 'ControllingArea' }
}]
@ObjectModel.text.association: '_ControllingAreaText'
// ]--GENERATED
@ObjectModel.foreignKey.association: '_ControllingArea'
key cast( cskr.kokrs as fis_kokrs preserving type ) as ControllingArea,
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key cast( cskr.resrc as fis_co_resource preserving type ) as CostAnalysisResource,
@Semantics.businessDate.to: true
key cast( cskr.datbi as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.businessDate.from: true
cast( cskr.datab as fis_datab preserving type ) as ValidityStartDate,
_ControllingArea,
_Text,
//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG
@Consumption.hidden: true
_ControllingAreaText
// ]--GENERATED
}
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