Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_StorageBinTypeText_2 instead. View all deprecated CDS views →

I_ProdEWMStorBinTypeText

DDL: I_PRODEWMSTORBINTYPETEXT SQL: IEWMSTORBINTXT Type: view BASIC

Text view for EWM storage bin type

I_ProdEWMStorBinTypeText is a Basic CDS View that provides data about "Text view for EWM storage bin type" in SAP S/4HANA. It reads from 1 data source (/scwm/t303t) and exposes 6 fields with key fields Warehouse, StorageBinType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/t303t EWMStorageBinTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProdEWMStorageBinType _ProdEWMStorageBinType $projection.StorageBinType = _ProdEWMStorageBinType.StorageBinType and $projection.Warehouse = _ProdEWMStorageBinType.Warehouse
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_StorageBinTypeText_2 view
AbapCatalog.sqlViewName IEWMSTORBINTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text view for EWM storage bin type view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StorageBinType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Warehouse /scwm/t303t lgnum Whse Number
KEY StorageBinType /scwm/t303t lptyp Stor. Bin Type
KEY Language /scwm/t303t spras Off. Language
EWMStorageBinTypeText /scwm/t303t ptypt Description
_Language _Language
_ProdEWMStorageBinType _ProdEWMStorageBinType

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_ProdEWMStorBinTypeText.
-- 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.
-- SQL view name: IEWMSTORBINTXT

CREATE VIEW I_ProdEWMStorBinTypeText AS
SELECT
  EWMStorageBinTypeText.lgnum AS Warehouse,
  EWMStorageBinTypeText.lptyp AS StorageBinType,
  EWMStorageBinTypeText.spras AS Language,
  EWMStorageBinTypeText.ptypt AS EWMStorageBinTypeText
FROM /scwm/t303t AS EWMStorageBinTypeText
LEFT OUTER JOIN I_ProdEWMStorageBinType AS _ProdEWMStorageBinType ON StorageBinType = _ProdEWMStorageBinType.StorageBinType AND Warehouse = _ProdEWMStorageBinType.Warehouse  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;