R_WrhsMgmtControlCycleTP

DDL: R_WRHSMGMTCONTROLCYCLETP Type: view_entity TRANSACTIONAL Package: MD05_WM_CC_BO_RAP

Warehouse Management Control Cycle - TP

R_WrhsMgmtControlCycleTP is a Transactional CDS View that provides data about "Warehouse Management Control Cycle - TP" in SAP S/4HANA. It reads from 1 data source (I_KanbanControlCycle) and exposes 12 fields with key field WrhsMgmtControlCycle. Part of development package MD05_WM_CC_BO_RAP.

Data Sources (1)

SourceAliasJoin Type
I_KanbanControlCycle I_KanbanControlCycle from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Warehouse Management Control Cycle - TP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name WrhsMgmtControlCycle view
Metadata.ignorePropagatedAnnotations true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY WrhsMgmtControlCycle
WrhsMgmtControlCycleCategory
Product Product Product Sold
Plant Plant Valuation Area
ProductionSupplyArea ProductionSupplyArea Supply Area
MaterialStaging MaterialStaging
StoringPositionName StoringPositionName Unloading Point
Warehouse Warehouse Warehouse No.
DestinationStorageBin DestinationStorageBin Destination Bin
SupplySourcePlant SupplySourcePlant
StorageLocation StorageLocation StorageLocation
CreationDate CreationDate Time Stamp

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 R_WrhsMgmtControlCycleTP.
-- 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 R_WrhsMgmtControlCycleTP AS
SELECT
  cast(KanbanControlCycle as wrhsmgmtcontrolcycle preserving type ) AS WrhsMgmtControlCycle,
  cast(KanbanControlCycleCategory as wrhsmgmtcontrolcyclecategory preserving type ) AS WrhsMgmtControlCycleCategory,
  Product,
  Plant,
  ProductionSupplyArea,
  MaterialStaging,
  StoringPositionName,
  Warehouse,
  DestinationStorageBin,
  SupplySourcePlant,
  StorageLocation,
  CreationDate
FROM I_KanbanControlCycle
;