I_CostAnalysisResourceText

DDL: I_COSTANALYSISRESOURCETEXT Type: view BASIC

Cost Analysis Resource - Text

I_CostAnalysisResourceText (Basic)

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

Accounting and Financial Close

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.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesLanguage-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target 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

Data Sources (1)

SourceAliasJoin Type
cskv cskv from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Cost Analysis Resource - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICOANLYSRESRCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED 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
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CostAnalysisResource Cost Analysis Resource
KEY ControllingArea Controlling Area
KEY Language cskv spras Off. Language
KEY ValidityEndDate Validity End Date
ValidityStartDate Validity Start Date
CostAnalysisResourceName Cost Analysis Resource Name
CostAnalysisResourceDesc Cost Analysis Resource Description
_ControllingArea _ControllingArea
_Language _Language

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_CostAnalysisResourceText.
-- 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_CostAnalysisResourceText AS
SELECT
  cast( cskv.resrc as fis_co_resource preserving type ) AS CostAnalysisResource,
  cast( cskv.kokrs as fis_kokrs preserving type ) AS ControllingArea,
  cskv.spras AS Language,
  cast( cskv.datbi as fis_datbi preserving type ) AS ValidityEndDate,
  cast( _md.datab as fis_datab preserving type ) AS ValidityStartDate,
  cast( cskv.ktext as fis_co_resrc_name preserving type ) AS CostAnalysisResourceName,
  cast( cskv.ltext as fis_co_resrc_desc preserving type ) AS CostAnalysisResourceDesc
FROM cskv
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;