I_EWM_StagingAreaDetnGroup

DDL: I_EWM_STAGINGAREADETNGROUP Type: view_entity BASIC

Staging Area Determination Group

I_EWM_StagingAreaDetnGroup is a Basic CDS View that provides data about "Staging Area Determination Group" in SAP S/4HANA. It reads from 1 data source (/scwm/tdrdetgr) and exposes 4 fields with key fields EWMWarehouse, EWMStggAreaDeterminationGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tdrdetgr EWMStggAreaDetn from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..*] I_EWM_StagingAreaDetnGroupText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMStggAreaDeterminationGroup = _Text.EWMStggAreaDeterminationGroup

Annotations (8)

NameValueLevelField
EndUserText.label Staging Area Determination Group view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey EWMStggAreaDeterminationGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse /scwm/tdrdetgr lgnum Whse Number
KEY EWMStggAreaDeterminationGroup /scwm/tdrdetgr drdetgr StgAr/DoorDetGr
_WarehouseNumber _WarehouseNumber
_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_EWM_StagingAreaDetnGroup.
-- 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_StagingAreaDetnGroup AS
SELECT
  EWMStggAreaDetn.lgnum AS EWMWarehouse,
  EWMStggAreaDetn.drdetgr AS EWMStggAreaDeterminationGroup
FROM /scwm/tdrdetgr AS EWMStggAreaDetn
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_StagingAreaDetnGroupText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMStggAreaDeterminationGroup = _Text.EWMStggAreaDeterminationGroup  -- association [0..*]
;