I_ProjectResultAnalysisData

DDL: I_PROJECTRESULTANALYSISDATA SQL: IPROJ_RA_DATA Type: view BASIC

Result Analysis Data for Projects

I_ProjectResultAnalysisData is a Basic CDS View that provides data about "Result Analysis Data for Projects" in SAP S/4HANA. It reads from 5 data sources (proj, cosb, cokey, tka01, t001).

Data Sources (5)

SourceAliasJoin Type
proj b inner
cosb c inner
cokey d left_outer
tka01 e inner
t001 f inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPROJ_RA_DATA view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Result Analysis Data for Projects view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

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_ProjectResultAnalysisData.
-- 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.
-- SQL view name: IPROJ_RA_DATA

CREATE VIEW I_ProjectResultAnalysisData AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN proj AS b ON /* join condition not captured in parsed metadata */
INNER JOIN cosb AS c ON /* join condition not captured in parsed metadata */
INNER JOIN tka01 AS e ON /* join condition not captured in parsed metadata */
INNER JOIN t001 AS f ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cokey AS d ON /* join condition not captured in parsed metadata */
;