I_ProjectObjectVersionHeader

DDL: I_PROJECTOBJECTVERSIONHEADER SQL: IPROJOBJVERSHEAD Type: view BASIC

Project Object Header for Version

I_ProjectObjectVersionHeader is a Basic CDS View that provides data about "Project Object Header for Version" in SAP S/4HANA. It reads from 1 data source (vskopf) and exposes 6 fields with key field Version.

Data Sources (1)

SourceAliasJoin Type
vskopf vskopf from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPROJOBJVERSHEAD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Project Object Header for Version view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Version vskopf vsnmr Vers. key
ProjectExternalID
WBSElementExternalID
ProjectVersionDescription vskopf vstext Description
ProjectObjectVersionIsInactive vskopf vsinact Inactive
ProjectVersionGroupName vskopf vsgruppe 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_ProjectObjectVersionHeader.
-- 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: IPROJOBJVERSHEAD

CREATE VIEW I_ProjectObjectVersionHeader AS
SELECT
  vskopf.vsnmr AS Version,
  cast ( vsproj_cn.pspid_edit as ps_pspid_edit ) AS ProjectExternalID,
  cast ( vsprps_cn.posid_edit as ps_posid_edit ) AS WBSElementExternalID,
  vskopf.vstext AS ProjectVersionDescription,
  vskopf.vsinact AS ProjectObjectVersionIsInactive,
  vskopf.vsgruppe AS ProjectVersionGroupName
FROM vskopf
;