I_EWM_StorageSectionIndicator

DDL: I_EWM_STORAGESECTIONINDICATOR Type: view_entity BASIC

Storage Section Indicator

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

Data Sources (1)

SourceAliasJoin Type
/scwm/t304 EWMPtwyStorageSection from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..*] I_EWM_StorageSectionIndText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMStorageSectionMethod = _Text.EWMStorageSectionMethod

Annotations (10)

NameValueLevelField
Analytics.technicalName IEWMSTORSECIND view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Storage Section Indicator view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC 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 (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse /scwm/t304 lgnum Whse Number
KEY EWMStorageSectionMethod /scwm/t304 lgbkz Storage Sect.ID
_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_StorageSectionIndicator.
-- 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_StorageSectionIndicator AS
SELECT
  EWMPtwyStorageSection.lgnum AS EWMWarehouse,
  EWMPtwyStorageSection.lgbkz AS EWMStorageSectionMethod
FROM /scwm/t304 AS EWMPtwyStorageSection
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_StorageSectionIndText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMStorageSectionMethod = _Text.EWMStorageSectionMethod  -- association [0..*]
;