P_ProdnSupplyAreaControlCycle

DDL: P_PRODNSUPPLYAREACONTROLCYCLE Type: view_entity COMPOSITE

P_ProdnSupplyAreaControlCycle is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_KanbanControlCycle) and exposes 9 fields with key field KanbanControlCycle.

Data Sources (1)

SourceAliasJoin Type
I_KanbanControlCycle I_KanbanControlCycle from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY KanbanControlCycle KanbanControlCycle
ProductionSupplyArea ProductionSupplyArea Supply Area
Plant Plant Valuation Area
KanbanControlCycleCategory KanbanControlCycleCategory
Product Product Product Sold
LastChangeDateTime LastChangeDateTime Timestamp
ReleaseDate ReleaseDate
LockDate LockDate Lock Date
_Plant _Plant

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_ProdnSupplyAreaControlCycle.
-- 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_ProdnSupplyAreaControlCycle AS
SELECT
  KanbanControlCycle,
  ProductionSupplyArea,
  Plant,
  KanbanControlCycleCategory,
  Product,
  LastChangeDateTime,
  ReleaseDate,
  LockDate
FROM I_KanbanControlCycle
;