A_WarehouseStorageType

DDL: A_WAREHOUSESTORAGETYPE Type: view_entity BASIC

Warehouse Storage Type

A_WarehouseStorageType is a Basic CDS View that provides data about "Warehouse Storage Type" in SAP S/4HANA. It reads from 1 data source (I_EWM_StorageType) and exposes 3 fields with key fields Warehouse, StorageType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_EWM_StorageType _StorageType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_WarehouseStorageTypeText _WarehouseStorageTypeText _StorageType.Warehouse = _WarehouseStorageTypeText.Warehouse and _StorageType.StorageType = _WarehouseStorageTypeText.StorageType

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Warehouse Storage Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Warehouse Warehouse Warehouse No.
KEY StorageType StorageType Storage Type
_WarehouseStorageTypeText _WarehouseStorageTypeText

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 A_WarehouseStorageType.
-- 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 A_WarehouseStorageType AS
SELECT
  Warehouse,
  StorageType
FROM I_EWM_StorageType AS _StorageType
LEFT OUTER JOIN A_WarehouseStorageTypeText AS _WarehouseStorageTypeText ON _StorageType.Warehouse = _WarehouseStorageTypeText.Warehouse AND _StorageType.StorageType = _WarehouseStorageTypeText.StorageType  -- association [0..*]
;