I_EWMQtyClassification

DDL: I_EWMQTYCLASSIFICATION SQL: IEWMQTYCLF Type: view BASIC

Basic View: EWM Qty Classification

I_EWMQtyClassification is a Basic CDS View that provides data about "Basic View: EWM Qty Classification" in SAP S/4HANA. It reads from 1 data source (/scwm/tquancla) and exposes 2 fields with key field EWMProdQuantityClassification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tquancla EWMProdQuantityClass from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EWMQtyClassificationText _Text $projection.EWMProdQuantityClassification = _Text.EWMProdQuantityClassification

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEWMQTYCLF view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic View: EWM Qty Classification view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMProdQuantityClassification view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EWMProdQuantityClassification /scwm/tquancla quancla Qty Classific.
_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_EWMQtyClassification.
-- 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: IEWMQTYCLF

CREATE VIEW I_EWMQtyClassification AS
SELECT
  EWMProdQuantityClass.quancla AS EWMProdQuantityClassification
FROM /scwm/tquancla AS EWMProdQuantityClass
LEFT OUTER JOIN I_EWMQtyClassificationText AS _Text ON EWMProdQuantityClassification = _Text.EWMProdQuantityClassification  -- association [0..*]
;