Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_StagingAreaDetnGroup instead. View all deprecated CDS views →

I_ProdEWMStggAreaDetn

DDL: I_PRODEWMSTGGAREADETN SQL: IEWMSTGGAREA Type: view BASIC

Basic view for EWM staging area

I_ProdEWMStggAreaDetn is a Basic CDS View that provides data about "Basic view for EWM staging area" in SAP S/4HANA. It reads from 1 data source (/scwm/tdrdetgr) and exposes 3 fields with key fields Warehouse, EWMStggAreaDeterminationGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tdrdetgr EWMStggAreaDetn from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdEWMStggAreaDetnText _Text $projection.Warehouse = _Text.Warehouse and $projection.EWMStggAreaDeterminationGroup = _Text.EWMStggAreaDeterminationGroup

Annotations (12)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_StagingAreaDetnGroup view
AbapCatalog.sqlViewName IEWMSTGGAREA view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic view for EWM staging area view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMStggAreaDeterminationGroup view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Warehouse /scwm/tdrdetgr lgnum Whse Number
KEY EWMStggAreaDeterminationGroup /scwm/tdrdetgr drdetgr StgAr/DoorDetGr
_Text _Text

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_ProdEWMStggAreaDetn.
-- 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.
-- SQL view name: IEWMSTGGAREA

CREATE VIEW I_ProdEWMStggAreaDetn AS
SELECT
  EWMStggAreaDetn.lgnum AS Warehouse,
  EWMStggAreaDetn.drdetgr AS EWMStggAreaDeterminationGroup
FROM /scwm/tdrdetgr AS EWMStggAreaDetn
LEFT OUTER JOIN I_ProdEWMStggAreaDetnText AS _Text ON Warehouse = _Text.Warehouse AND EWMStggAreaDeterminationGroup = _Text.EWMStggAreaDeterminationGroup  -- association [0..*]
;