P_PlndEffortForDmndCountConv

DDL: P_PLNDEFFORTFORDMNDCOUNTCONV SQL: PLNDEFRTCNTCONV Type: view COMPOSITE

P_PlndEffortForDmndCountConv is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_PlndEffortForDmndAggr, I_EngagementProject) and exposes 4 fields with key fields PersonWorkAgreement, WorkPackage, WorkItem.

Data Sources (2)

SourceAliasJoin Type
P_PlndEffortForDmndAggr P_PlndEffortForDmndAggr from
I_EngagementProject Project inner

Parameters (1)

NameTypeDefault
P_WorkflowTaskInternalID sww_wiid

Annotations (7)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PersonWorkAgreement Demand PersonWorkAgreement Personnel No.
KEY WorkPackage Demand WorkPackage Plan Item
KEY WorkItem Demand WorkItem Work Item ID
Demand_Count Demand Demand_Count

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_PlndEffortForDmndCountConv.
-- 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: PLNDEFRTCNTCONV
-- Parameters: P_WorkflowTaskInternalID : sww_wiid

CREATE VIEW P_PlndEffortForDmndCountConv AS
SELECT
  Demand.PersonWorkAgreement AS PersonWorkAgreement,
  Demand.WorkPackage AS WorkPackage,
  Demand.WorkItem AS WorkItem,
  Demand.Demand_Count AS Demand_Count
FROM P_PlndEffortForDmndAggr
INNER JOIN I_EngagementProject AS Project ON /* join condition not captured in parsed metadata */
;