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

I_EWM_SrceStorBinAccTypeText

DDL: I_EWM_SRCESTORBINACCTYPETEXT Type: view BASIC

Source Storage Bin Access Type - Text

I_EWM_SrceStorBinAccTypeText is a Basic CDS View that provides data about "Source Storage Bin Access Type - Text" in SAP S/4HANA. It reads from 1 data source (/scwm/tbin_att) and exposes 5 fields with key fields Language, Warehouse, SourceStorageBinAccessType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tbin_att /scwm/tbin_att from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _Warehouse $projection.Warehouse = _Warehouse.EWMWarehouse

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IEWMSSBINACCTYT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SourceStorageBinAccessType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
EndUserText.label Source Storage Bin Access Type - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_StorageBinAccTypeText view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY Warehouse lgnum Whse Number
KEY SourceStorageBinAccessType bin_at Bin Access Type
StorageBinAccessTypeDesc text User Group
_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_SrceStorBinAccTypeText.
-- 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_SrceStorBinAccTypeText AS
SELECT
  langu AS Language,
  lgnum AS Warehouse,
  bin_at AS SourceStorageBinAccessType,
  text AS StorageBinAccessTypeDesc
FROM /scwm/tbin_att
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _Warehouse ON Warehouse = _Warehouse.EWMWarehouse  -- association [0..1]
;