I_WarehouseGate

DDL: I_WAREHOUSEGATE SQL: ILEWRHSGATE Type: view BASIC

Warehouse Gate

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

Data Sources (1)

SourceAliasJoin Type
t30b t30b from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Warehouse _Warehouse $projection.Warehouse = _Warehouse.Warehouse
[0..*] I_WarehouseGateText _Text $projection.Warehouse = _Text.Warehouse and $projection.WarehouseGate = _Text.WarehouseGate

Annotations (12)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY WarehouseGate lgtor Door for Whse
_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_WarehouseGate.
-- 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: ILEWRHSGATE

CREATE VIEW I_WarehouseGate AS
SELECT
  lgnum AS Warehouse,
  lgtor AS WarehouseGate
FROM t30b
LEFT OUTER JOIN I_Warehouse AS _Warehouse ON Warehouse = _Warehouse.Warehouse  -- association [0..1]
LEFT OUTER JOIN I_WarehouseGateText AS _Text ON Warehouse = _Text.Warehouse AND WarehouseGate = _Text.WarehouseGate  -- association [0..*]
;