I_WarehouseStdVH

DDL: I_WAREHOUSESTDVH SQL: IW__VH Type: view COMPOSITE

Warehouse

I_WarehouseStdVH is a Composite CDS View that provides data about "Warehouse" in SAP S/4HANA. It reads from 1 data source (I_Warehouse) and exposes 3 fields with key field Warehouse.

Data Sources (1)

SourceAliasJoin Type
I_Warehouse _Warehouse from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Warehouse view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Warehouse view
AbapCatalog.sqlViewName IW__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Warehouse Warehouse Warehouse No.
WarehouseName
_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_WarehouseStdVH.
-- 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: IW__VH

CREATE VIEW I_WarehouseStdVH AS
SELECT
  Warehouse,
  cast(_Warehouse._Text[1: Language=$session.system_language].WarehouseName as bezei30) AS WarehouseName
FROM I_Warehouse AS _Warehouse
;