I_EWM_PtwyControlStrategyText

DDL: I_EWM_PTWYCONTROLSTRATEGYTEXT Type: view_entity BASIC

Putaway Control Strategy - Text

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

Data Sources (1)

SourceAliasJoin Type
/scwm/t305qt PtwyControlStrategyText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_EWM_PtwyControlStrategy _PtwyControlStrategy $projection.EWMWarehouse = _PtwyControlStrategy.EWMWarehouse and $projection.EWMPtwyControlStrategy = _PtwyControlStrategy.EWMPtwyControlStrategy
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Putaway Control Strategy - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMPtwyControlStrategy view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.technicalName IEWMPTWYCTRLT view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/t305qt langu Primary lang.
KEY EWMWarehouse /scwm/t305qt lgnum Whse Number
KEY EWMPtwyControlStrategy /scwm/t305qt put_stra Putaway Control
EWMPtwyControlStrategyText /scwm/t305qt text User Group
_Language _Language
_PtwyControlStrategy _PtwyControlStrategy

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_PtwyControlStrategyText.
-- 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_PtwyControlStrategyText AS
SELECT
  PtwyControlStrategyText.langu AS Language,
  PtwyControlStrategyText.lgnum AS EWMWarehouse,
  PtwyControlStrategyText.put_stra AS EWMPtwyControlStrategy,
  PtwyControlStrategyText.text AS EWMPtwyControlStrategyText
FROM /scwm/t305qt AS PtwyControlStrategyText
LEFT OUTER JOIN I_EWM_PtwyControlStrategy AS _PtwyControlStrategy ON EWMWarehouse = _PtwyControlStrategy.EWMWarehouse AND EWMPtwyControlStrategy = _PtwyControlStrategy.EWMPtwyControlStrategy  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;