Deprecated PUBLIC_LOCAL_API
This CDS view is deprecated in S/4HANA. Use I_ProjectResultAnalysisData instead. View all deprecated CDS views →

I_Cosb

DDL: I_COSB SQL: ICOSB Type: view BASIC

Requirement Earned Value Calculations

I_Cosb is a Basic CDS View that provides data about "Requirement Earned Value Calculations" in SAP S/4HANA. It reads from 1 data source (P_Cosb) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
P_Cosb P_Cosb from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICOSB view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Requirement Earned Value Calculations view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.successor I_ProjectResultAnalysisData view

Fields (3)

KeyFieldSource TableSource FieldDescription
ControllingObject P_Cosb ControllingObject Object number
TransactionCurrency P_Cosb TransactionCurrency Transaction Currency
Version P_Cosb Version XML Vers.

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_Cosb.
-- 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: ICOSB

CREATE VIEW I_Cosb AS
SELECT
  P_Cosb.ControllingObject AS ControllingObject,
  P_Cosb.TransactionCurrency AS TransactionCurrency,
  P_Cosb.Version AS Version
FROM P_Cosb
;