P_PlannedOrderWBSElement

DDL: P_PLANNEDORDERWBSELEMENT Type: view_entity CONSUMPTION Package: ODATA_PP_PLANNED_ORDER

WBS Element for Planned Order

P_PlannedOrderWBSElement is a Consumption CDS View that provides data about "WBS Element for Planned Order" in SAP S/4HANA. It reads from 1 data source (I_PlannedOrder) and exposes 5 fields with key field PlannedOrder. Part of development package ODATA_PP_PLANNED_ORDER.

Data Sources (1)

SourceAliasJoin Type
I_PlannedOrder _PlannedOrder from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label WBS Element for Planned Order view
VDM.viewType #CONSUMPTION view
VDM.private true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PlannedOrder PlannedOrder Planned Order
Material Material Vehicle Model
MRPController MRPController MRP Controller
MRPPlant MRPPlant Plant
WBSElementInternalID

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_PlannedOrderWBSElement.
-- 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.

CREATE VIEW P_PlannedOrderWBSElement AS
SELECT
  PlannedOrder,
  Material,
  MRPController,
  MRPPlant,
  _PlannedOrder._WBSElementBasic2.WBSElementInternalID AS WBSElementInternalID
FROM I_PlannedOrder AS _PlannedOrder
;