I_EWM_StorageTypeVH

DDL: I_EWM_STORAGETYPEVH Type: view_entity COMPOSITE

Storage Type

I_EWM_StorageTypeVH is a Composite CDS View that provides data about "Storage Type" in SAP S/4HANA. It reads from 1 data source (I_EWM_StorageType_2) and exposes 3 fields with key fields EWMWarehouse, EWMStorageType.

Data Sources (1)

SourceAliasJoin Type
I_EWM_StorageType_2 I_EWM_StorageType_2 from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Storage Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey EWMStorageType view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse EWMWarehouse Warehouse No.
KEY EWMStorageType EWMStorageType Storage Type
_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_EWM_StorageTypeVH.
-- 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_StorageTypeVH AS
SELECT
  EWMWarehouse,
  EWMStorageType
FROM I_EWM_StorageType_2
;