I_EWM_PtwyControlStrategy

DDL: I_EWM_PTWYCONTROLSTRATEGY Type: view_entity BASIC

Putaway Control Strategy

I_EWM_PtwyControlStrategy is a Basic CDS View that provides data about "Putaway Control Strategy" in SAP S/4HANA. It reads from 1 data source (/scwm/t305q) and exposes 4 fields with key fields EWMWarehouse, EWMPtwyControlStrategy. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/t305q PtwyControlStrategy from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _Warehouse $projection.EWMWarehouse = _Warehouse.EWMWarehouse
[0..*] I_EWM_PtwyControlStrategyText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMPtwyControlStrategy = _Text.EWMPtwyControlStrategy

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Putaway Control Strategy view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMPtwyControlStrategy view
ObjectModel.compositionRoot true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse /scwm/t305q lgnum Whse Number
KEY EWMPtwyControlStrategy /scwm/t305q put_stra Putaway Control
_Text _Text
_Warehouse _Warehouse

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 I_EWM_PtwyControlStrategy.
-- 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 I_EWM_PtwyControlStrategy AS
SELECT
  PtwyControlStrategy.lgnum AS EWMWarehouse,
  PtwyControlStrategy.put_stra AS EWMPtwyControlStrategy
FROM /scwm/t305q AS PtwyControlStrategy
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _Warehouse ON EWMWarehouse = _Warehouse.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_PtwyControlStrategyText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMPtwyControlStrategy = _Text.EWMPtwyControlStrategy  -- association [0..*]
;