Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_ProductLoadCategory instead. View all deprecated CDS views →

I_ProdEWMProdLoadCat

DDL: I_PRODEWMPRODLOADCAT SQL: IEWMPRDLOAD Type: view BASIC

Basic View - Product Load Category

I_ProdEWMProdLoadCat is a Basic CDS View that provides data about "Basic View - Product Load Category" in SAP S/4HANA. It reads from 1 data source (/scwm/twrkldgr) and exposes 3 fields with key fields Warehouse, EWMProductLoadCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/twrkldgr /scwm/twrkldgr from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdEWMProdLoadCatText _Text $projection.Warehouse = _Text.Warehouse and $projection.EWMProductLoadCategory = _Text.EWMProductLoadCategory

Annotations (12)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_ProductLoadCategory view
AbapCatalog.sqlViewName IEWMPRDLOAD view
EndUserText.label Basic View - Product Load Category view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey EWMProductLoadCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY EWMProductLoadCategory wrkldgr Prod. Load Cat.
_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_ProdEWMProdLoadCat.
-- 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: IEWMPRDLOAD

CREATE VIEW I_ProdEWMProdLoadCat AS
SELECT
  lgnum AS Warehouse,
  wrkldgr AS EWMProductLoadCategory
FROM /scwm/twrkldgr
LEFT OUTER JOIN I_ProdEWMProdLoadCatText AS _Text ON Warehouse = _Text.Warehouse AND EWMProductLoadCategory = _Text.EWMProductLoadCategory  -- association [0..*]
;