I_WarehouseStagingArea

DDL: I_WAREHOUSESTAGINGAREA SQL: ILEWRHSSTGGAREA Type: view BASIC

Warehouse Staging Area

I_WarehouseStagingArea is a Basic CDS View (Dimension) that provides data about "Warehouse Staging Area" in SAP S/4HANA. It reads from 1 data source (t30c) and exposes 4 fields with key fields Warehouse, WarehouseStagingArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t30c t30c from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Warehouse _Warehouse $projection.Warehouse = _Warehouse.Warehouse
[0..*] I_WarehouseStagingAreaText _Text $projection.Warehouse = _Text.Warehouse and $projection.WarehouseStagingArea = _Text.WarehouseStagingArea

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey WarehouseStagingArea view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Warehouse Staging Area view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEWRHSSTGGAREA view
Metadata.allowExtensions true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY WarehouseStagingArea lgbzo Staging Area
_Warehouse _Warehouse
_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_WarehouseStagingArea.
-- 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: ILEWRHSSTGGAREA

CREATE VIEW I_WarehouseStagingArea AS
SELECT
  lgnum AS Warehouse,
  lgbzo AS WarehouseStagingArea
FROM t30c
LEFT OUTER JOIN I_Warehouse AS _Warehouse ON Warehouse = _Warehouse.Warehouse  -- association [0..1]
LEFT OUTER JOIN I_WarehouseStagingAreaText AS _Text ON Warehouse = _Text.Warehouse AND WarehouseStagingArea = _Text.WarehouseStagingArea  -- association [0..*]
;