I_EWM_StagingAreaDetnGroupText

DDL: I_EWM_STAGINGAREADETNGROUPTEXT Type: view_entity BASIC

Staging Area Determination Group - Text

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

Data Sources (1)

SourceAliasJoin Type
/scwm/tdrdetgrt EWMStggAreaDetnText from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..1] I_EWM_StagingAreaDetnGroup _StagingAreaDetnGroup $projection.EWMStggAreaDeterminationGroup = _StagingAreaDetnGroup.EWMStggAreaDeterminationGroup and $projection.EWMWarehouse = _StagingAreaDetnGroup.EWMWarehouse
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
Analytics.technicalName IEWMSTGGARDEGTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Staging Area Determination Group - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EWMStggAreaDeterminationGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse /scwm/tdrdetgrt lgnum Whse Number
KEY EWMStggAreaDeterminationGroup /scwm/tdrdetgrt drdetgr StgAr/DoorDetGr
KEY Language /scwm/tdrdetgrt langu Primary lang.
EWMStggAreaDetnGroupText /scwm/tdrdetgrt text User Group
_WarehouseNumber _WarehouseNumber
_Language _Language
_StagingAreaDetnGroup _StagingAreaDetnGroup

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_StagingAreaDetnGroupText.
-- 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_StagingAreaDetnGroupText AS
SELECT
  EWMStggAreaDetnText.lgnum AS EWMWarehouse,
  EWMStggAreaDetnText.drdetgr AS EWMStggAreaDeterminationGroup,
  EWMStggAreaDetnText.langu AS Language,
  EWMStggAreaDetnText.text AS EWMStggAreaDetnGroupText
FROM /scwm/tdrdetgrt AS EWMStggAreaDetnText
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_StagingAreaDetnGroup AS _StagingAreaDetnGroup ON EWMStggAreaDeterminationGroup = _StagingAreaDetnGroup.EWMStggAreaDeterminationGroup AND EWMWarehouse = _StagingAreaDetnGroup.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;