I_CostAnalysisResource

DDL: I_COSTANALYSISRESOURCE Type: view BASIC

Cost Analysis Resource

I_CostAnalysisResource (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private 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 has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source for Search
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

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 (21)

NameValueLevelField
EndUserText.label Cost Analysis Resource view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICOANLYSRESRC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED 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
ClientHandling.algorithm #SESSION_VARIABLE 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( kokrs as fis_kokrs preserving type ) AS ControllingArea,
  cast( resrc as fis_co_resource preserving type ) AS CostAnalysisResource,
  cast( datbi as fis_datbi preserving type ) AS ValidityEndDate,
  cast( datab as fis_datab preserving type ) AS ValidityStartDate
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..*]
;