I_ProjectVersionHeader

DDL: I_PROJECTVERSIONHEADER SQL: IPROJVERSHEADER Type: view BASIC

Project Version Header Details

I_ProjectVersionHeader is a Basic CDS View that provides data about "Project Version Header Details" in SAP S/4HANA. It reads from 1 data source (P_ProjectVersionHeader) and exposes 3 fields with key fields Project, Version.

Data Sources (1)

SourceAliasJoin Type
P_ProjectVersionHeader P_ProjectVersionHeader from

Annotations (10)

NameValueLevelField
EndUserText.label Project Version Header Details view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IPROJVERSHEADER view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Project Project WBS Element
KEY Version Version XML Vers.
ProjectVersionGroupName ProjectVersionGroupName Version group

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_ProjectVersionHeader.
-- 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: IPROJVERSHEADER

CREATE VIEW I_ProjectVersionHeader AS
SELECT
  Project,
  Version,
  ProjectVersionGroupName
FROM P_ProjectVersionHeader
;