I_CostAnalysisResource

DDL: I_COSTANALYSISRESOURCE Type: view_entity BASIC Package: FINS_FIS_FICO

Cost Analysis Resource

I_CostAnalysisResource (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public Edition with built-in and side-by-side extension capabilities.

CostAnalysisResource · Accounting and Financial Close

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.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentCO-OM-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
cskr cskr from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea Controlling Area
KEY CostAnalysisResource Cost Analysis Resource
KEY ValidityEndDate Validity End Date
ValidityStartDate Validity Start Date
_ControllingArea _ControllingArea
_Text _Text
_ControllingAreaText _ControllingAreaText

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CostAnalysisResource.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_CostAnalysisResource AS
SELECT
  cast( cskr.kokrs as fis_kokrs preserving type ) AS ControllingArea,
  cast( cskr.resrc as fis_co_resource preserving type ) AS CostAnalysisResource,
  cast( cskr.datbi as fis_datbi preserving type ) AS ValidityEndDate,
  cast( cskr.datab as fis_datab preserving type ) AS ValidityStartDate
FROM cskr
LEFT OUTER JOIN I_ControllingArea AS _ControllingAreaText ON ControllingArea = _ControllingAreaText.ControllingArea  -- association [1..1]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [1..1]
LEFT OUTER JOIN I_CostAnalysisResourceText AS _Text ON ControllingArea = _Text.ControllingArea AND CostAnalysisResource = _Text.CostAnalysisResource  -- association [0..*]
;