E_ProjectNetworkVersion

DDL: E_PROJECTNETWORKVERSION SQL: EPROJNTWKVERS Type: view EXTENSION Package: VDM_PS_ST

Project Network Version - Extension Include View

E_ProjectNetworkVersion is a Extension CDS View that provides data about "Project Network Version - Extension Include View" in SAP S/4HANA. It reads from 1 data source (vsaufk_cn) and exposes 2 fields with key fields Version, ProjectNetwork. Part of development package VDM_PS_ST.

Data Sources (1)

SourceAliasJoin Type
vsaufk_cn Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EPROJNTWKVERS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Project Network Version - Extension Include View view
VDM.viewType #EXTENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Version vsnmr Vers. key
KEY ProjectNetwork aufnr SettlementOrder

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 E_ProjectNetworkVersion.
-- 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: EPROJNTWKVERS

CREATE VIEW E_ProjectNetworkVersion AS
SELECT
  vsnmr AS Version,
  aufnr AS ProjectNetwork
FROM vsaufk_cn AS Persistence
;