P_PPM_ProjCostMappingWBS

DDL: P_PPM_PROJCOSTMAPPINGWBS SQL: PPPMPROJCOSTMAPW Type: view COMPOSITE

P_PPM_ProjCostMappingWBS is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_Project, I_ProjectStructure) and exposes 2 fields.

Data Sources (2)

SourceAliasJoin Type
I_Project PSProject inner
I_ProjectStructure Struct from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PPPMPROJCOSTMAPW view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
AccessControl.authorizationCheck #CHECK view

Fields (2)

KeyFieldSource TableSource FieldDescription
WBSObjectNode I_ProjectStructure ProjectObjectNode Object number
ProjectInternalID I_Project ProjectInternalID Project Def.

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 P_PPM_ProjCostMappingWBS.
-- 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: PPPMPROJCOSTMAPW

CREATE VIEW P_PPM_ProjCostMappingWBS AS
SELECT
  Struct.ProjectObjectNode AS WBSObjectNode,
  PSProject.ProjectInternalID AS ProjectInternalID
FROM I_ProjectStructure AS Struct
INNER JOIN I_Project AS PSProject ON /* join condition not captured in parsed metadata */
;