P_EngmntProjSalesOrder

DDL: P_ENGMNTPROJSALESORDER SQL: PEPSALESORD Type: view COMPOSITE

P_EngmntProjSalesOrder is a Composite CDS View in SAP S/4HANA. It reads from 3 data sources (I_EngagementProject, I_EngagementProjectItem, I_SalesDocumentItem) and exposes 19 fields with key fields EngagementProject, WBSElement, SalesDocument, SalesDocumentItem, BillingPlan.

Data Sources (3)

SourceAliasJoin Type
I_EngagementProject ProjectData from
I_EngagementProjectItem ProjItem inner
I_SalesDocumentItem SalesOrderItem inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PEPSALESORD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject I_EngagementProject EngagementProject Engmnt Project ID
KEY WBSElement I_SalesDocumentItem WBSElementInternalID WBS Internal ID
KEY SalesDocument I_SalesDocumentItem SalesDocument SD Document
KEY SalesDocumentItem I_SalesDocumentItem SalesDocumentItem Sales Document Item
KEY BillingPlan I_SalesDocumentItem BillingPlan Bill. Plan No.
ProjectStartDate I_EngagementProject ProjectStartDate Latest Planned Start
ProjectEndDate I_EngagementProject ProjectEndDate Ltst Planned Finish
LastChangedByUser I_EngagementProject LastChangedByUser User Name
ProjectCurrency _EngagementProjFinancialPlan Currency Valuation Crcy
Customer
CustomerName
EngagementProjectServiceOrg I_EngagementProject EngagementProjectServiceOrg Service Org.
ControllingArea I_EngagementProject ControllingArea Controlling Area
CompanyCode I_EngagementProject CompanyCode Receiver Company Code
ProfitCenter I_EngagementProject ProfitCenter Profit Center
CostCenter I_EngagementProject CostCenter Cost Center
Material I_SalesDocumentItem Product Product Sold
SalesDocumentItemCategory I_SalesDocumentItem SalesDocumentItemCategory Item Category
BillAmtInProjCrcy I_SalesDocumentItem NetAmount Stated Amount

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_EngmntProjSalesOrder.
-- 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: PEPSALESORD

CREATE VIEW P_EngmntProjSalesOrder AS
SELECT
  ProjectData.EngagementProject AS EngagementProject,
  SalesOrderItem.WBSElementInternalID AS WBSElement,
  SalesOrderItem.SalesDocument AS SalesDocument,
  SalesOrderItem.SalesDocumentItem AS SalesDocumentItem,
  SalesOrderItem.BillingPlan AS BillingPlan,
  ProjectData.ProjectStartDate AS ProjectStartDate,
  ProjectData.ProjectEndDate AS ProjectEndDate,
  ProjectData.LastChangedByUser AS LastChangedByUser,
  _EngagementProjFinancialPlan.Currency AS ProjectCurrency,
  ProjectData._Customer.Customer AS Customer,
  ProjectData._Customer.CustomerName AS CustomerName,
  ProjectData.EngagementProjectServiceOrg AS EngagementProjectServiceOrg,
  ProjectData.ControllingArea AS ControllingArea,
  ProjectData.CompanyCode AS CompanyCode,
  ProjectData.ProfitCenter AS ProfitCenter,
  ProjectData.CostCenter AS CostCenter,
  SalesOrderItem.Product AS Material,
  SalesOrderItem.SalesDocumentItemCategory AS SalesDocumentItemCategory,
  SalesOrderItem.NetAmount AS BillAmtInProjCrcy
FROM I_EngagementProject AS ProjectData
INNER JOIN I_EngagementProjectItem AS ProjItem ON /* join condition not captured in parsed metadata */
INNER JOIN I_SalesDocumentItem AS SalesOrderItem ON /* join condition not captured in parsed metadata */
;