I_EWM_BulkStorageMethodText

DDL: I_EWM_BULKSTORAGEMETHODTEXT Type: view_entity BASIC

Bulk Storage Method - Text

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

Data Sources (1)

SourceAliasJoin Type
/scwm/t338t BulkStorageMethodText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_EWM_BulkStorageMethod _BulkStorageMethod $projection.EWMWarehouse = _BulkStorageMethod.EWMWarehouse and $projection.EWMBulkStorageMethod = _BulkStorageMethod.EWMBulkStorageMethod
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bulk Storage Method - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMBulkStorageMethod view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.technicalName IEWMBULKMTHT view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/t338t spras Off. Language
KEY EWMWarehouse /scwm/t338t lgnum Whse Number
KEY EWMBulkStorageMethod /scwm/t338t block Bulk Storage
EWMBulkStorageMethodText /scwm/t338t btext Stock type
_Language _Language
_BulkStorageMethod _BulkStorageMethod

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_BulkStorageMethodText.
-- 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_BulkStorageMethodText AS
SELECT
  BulkStorageMethodText.spras AS Language,
  BulkStorageMethodText.lgnum AS EWMWarehouse,
  BulkStorageMethodText.block AS EWMBulkStorageMethod,
  BulkStorageMethodText.btext AS EWMBulkStorageMethodText
FROM /scwm/t338t AS BulkStorageMethodText
LEFT OUTER JOIN I_EWM_BulkStorageMethod AS _BulkStorageMethod ON EWMWarehouse = _BulkStorageMethod.EWMWarehouse AND EWMBulkStorageMethod = _BulkStorageMethod.EWMBulkStorageMethod  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;