P_EngmntProjOrgDetails

DDL: P_ENGMNTPROJORGDETAILS SQL: PEPORGDETAILS Type: view COMPOSITE

P_EngmntProjOrgDetails is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_EngagementProjectSrvcOrg, I_EngmntProjSrvcOrgDetails) and exposes 1 field with key field EngagementProjectServiceOrg.

Data Sources (2)

SourceAliasJoin Type
I_EngagementProjectSrvcOrg EngmtProjDeliveryOrg from
I_EngmntProjSrvcOrgDetails OrgId inner

Annotations (7)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PEPORGDETAILS view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY EngagementProjectServiceOrg I_EngagementProjectSrvcOrg EngagementProjectServiceOrg Service Org.

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_EngmntProjOrgDetails.
-- 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: PEPORGDETAILS

CREATE VIEW P_EngmntProjOrgDetails AS
SELECT
  EngmtProjDeliveryOrg.EngagementProjectServiceOrg AS EngagementProjectServiceOrg
FROM I_EngagementProjectSrvcOrg AS EngmtProjDeliveryOrg
INNER JOIN I_EngmntProjSrvcOrgDetails AS OrgId ON /* join condition not captured in parsed metadata */
;