I_ProgressResult

DDL: I_PROGRESSRESULT SQL: IPROGRES Type: view BASIC

Progress Result with PS ID

I_ProgressResult is a Basic CDS View that provides data about "Progress Result with PS ID" in SAP S/4HANA. It reads from 1 data source (I_ProgressData) and exposes 6 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProgressData I_ProgressData from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MasterProjectItem _MasterProject $projection.projectobject = _MasterProject.MasterProjectItem

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPROGRES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Progress Result with PS ID view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
Project I_Project Project WBS Element
ProjectObject I_Project ProjectObject Object number
WBSElementObject I_ProgressData WBSElementObject Object number
UnitOfMeasure I_ProgressData UnitOfMeasure Unit Protected Qty
ProgressVersion I_ProgressData ProgressVersion XML Vers.
_MasterProject _MasterProject

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_ProgressResult.
-- 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: IPROGRES

CREATE VIEW I_ProgressResult AS
SELECT
  I_Project.Project AS Project,
  I_Project.ProjectObject AS ProjectObject,
  I_ProgressData.WBSElementObject AS WBSElementObject,
  I_ProgressData.UnitOfMeasure AS UnitOfMeasure,
  I_ProgressData.ProgressVersion AS ProgressVersion
FROM I_ProgressData
LEFT OUTER JOIN I_MasterProjectItem AS _MasterProject ON projectobject = _MasterProject.MasterProjectItem  -- association [1..1]
;