I_EWM_StorageSectionIndText

DDL: I_EWM_STORAGESECTIONINDTEXT Type: view_entity BASIC

Storage Section Indicator - Text

I_EWM_StorageSectionIndText is a Basic CDS View that provides data about "Storage Section Indicator - Text" in SAP S/4HANA. It reads from 1 data source (/scwm/t304t) and exposes 7 fields with key fields EWMWarehouse, EWMStorageSectionMethod, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/t304t EWMPtwyStorageSectionText from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..1] I_EWM_StorageSectionIndicator _StorageSectionIndicator $projection.EWMStorageSectionMethod = _StorageSectionIndicator.EWMStorageSectionMethod and $projection.EWMWarehouse = _StorageSectionIndicator.EWMWarehouse
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Storage Section Indicator - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EWMStorageSectionMethod 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/t304t lgnum Whse Number
KEY EWMStorageSectionMethod /scwm/t304t lgbkz Storage Sect.ID
KEY Language /scwm/t304t spras Off. Language
EWMStorageSectionMethodText /scwm/t304t lbkzt Description
_StorageSectionIndicator _StorageSectionIndicator
_WarehouseNumber _WarehouseNumber
_Language _Language

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_StorageSectionIndText.
-- 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_StorageSectionIndText AS
SELECT
  EWMPtwyStorageSectionText.lgnum AS EWMWarehouse,
  EWMPtwyStorageSectionText.lgbkz AS EWMStorageSectionMethod,
  EWMPtwyStorageSectionText.spras AS Language,
  EWMPtwyStorageSectionText.lbkzt AS EWMStorageSectionMethodText
FROM /scwm/t304t AS EWMPtwyStorageSectionText
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_StorageSectionIndicator AS _StorageSectionIndicator ON EWMStorageSectionMethod = _StorageSectionIndicator.EWMStorageSectionMethod AND EWMWarehouse = _StorageSectionIndicator.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;