I_CostAnalysisResourceText
Cost Analysis Resource - Text
I_CostAnalysisResourceText is a Basic CDS View that provides data about "Cost Analysis Resource - Text" in SAP S/4HANA. It reads from 1 data source (cskv) and exposes 9 fields with key fields CostAnalysisResource, ControllingArea, Language, ValidityEndDate. It has 2 associations to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cskv | cskv | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ControllingArea | _ControllingArea | $projection.ControllingArea = _ControllingArea.ControllingArea |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | false | view | |
| EndUserText.label | Cost Analysis Resource - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CostAnalysisResource | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Analytics.technicalName | IFICOANLYSRESRCT | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostAnalysisResource | |||
| KEY | ControllingArea | |||
| KEY | Language | cskv | spras | |
| KEY | ValidityEndDate | |||
| ValidityStartDate | ||||
| CostAnalysisResourceName | ||||
| CostAnalysisResourceDesc | ||||
| _ControllingArea | _ControllingArea | |||
| _Language | _Language |
@AbapCatalog.entityBuffer.definitionAllowed: false
@EndUserText.label: 'Cost Analysis Resource - Text'
@Analytics: {dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: { dataCategory: #TEXT,
representativeKey: 'CostAnalysisResource',
usageType.sizeCategory: #M,
usageType.dataClass: #MASTER,
usageType.serviceQuality: #A,
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT }
@Analytics.technicalName: 'IFICOANLYSRESRCT'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view entity I_CostAnalysisResourceText
as select from cskv
left outer to one join cskr as _md on cskv.resrc = _md.resrc
and cskv.kokrs = _md.kokrs
and cskv.datbi = _md.datbi
association [0..1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: ['CostAnalysisResourceDesc', 'CostAnalysisResourceName']
key cast( cskv.resrc as fis_co_resource preserving type ) as CostAnalysisResource,
@ObjectModel.foreignKey.association: '_ControllingArea'
key cast( cskv.kokrs as fis_kokrs preserving type ) as ControllingArea,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cskv.spras as Language,
@Semantics.businessDate.to: true
key cast( cskv.datbi as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.businessDate.from: true
cast( _md.datab as fis_datab preserving type ) as ValidityStartDate,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast( cskv.ktext as fis_co_resrc_name preserving type ) as CostAnalysisResourceName,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast( cskv.ltext as fis_co_resrc_desc preserving type ) as CostAnalysisResourceDesc,
_ControllingArea,
_Language
}
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