I_EWM_BulkStorageMethod

DDL: I_EWM_BULKSTORAGEMETHOD Type: view_entity BASIC

Bulk Storage Method

I_EWM_BulkStorageMethod is a Basic CDS View that provides data about "Bulk Storage Method" in SAP S/4HANA. It reads from 1 data source (/scwm/t338) and exposes 4 fields with key fields EWMWarehouse, EWMBulkStorageMethod. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/t338 BulkStorageMethod from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _Warehouse $projection.EWMWarehouse = _Warehouse.EWMWarehouse
[0..*] I_EWM_BulkStorageMethodText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMBulkStorageMethod = _Text.EWMBulkStorageMethod

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bulk Storage Method view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMBulkStorageMethod view
ObjectModel.compositionRoot true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse /scwm/t338 lgnum Whse Number
KEY EWMBulkStorageMethod /scwm/t338 block Bulk Storage
_Text _Text
_Warehouse _Warehouse

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_BulkStorageMethod.
-- 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_BulkStorageMethod AS
SELECT
  BulkStorageMethod.lgnum AS EWMWarehouse,
  BulkStorageMethod.block AS EWMBulkStorageMethod
FROM /scwm/t338 AS BulkStorageMethod
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _Warehouse ON EWMWarehouse = _Warehouse.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_BulkStorageMethodText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMBulkStorageMethod = _Text.EWMBulkStorageMethod  -- association [0..*]
;