I_EWM_WarehouseMaterialGroupT

DDL: I_EWM_WAREHOUSEMATERIALGROUPT Type: view_entity BASIC

Warehouse Product Group - Text

I_EWM_WarehouseMaterialGroupT is a Basic CDS View that provides data about "Warehouse Product Group - Text" in SAP S/4HANA. It reads from 1 data source (twhmatgrt) and exposes 3 fields with key fields Language, WarehouseProductGroup.

Data Sources (1)

SourceAliasJoin Type
twhmatgrt twhmatgrt from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Analytics.technicalName IEWMWHSEMATGRPT view
ObjectModel.representativeKey WarehouseProductGroup view
EndUserText.label Warehouse Product Group - Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Primary lang.
KEY WarehouseProductGroup Whse Prod.Grp
WarehouseProductGroupText text User Group

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_WarehouseMaterialGroupT.
-- 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_WarehouseMaterialGroupT AS
SELECT
  cast( langu as spras preserving type ) AS Language,
  cast( whmatgr as ewm_de_product_group preserving type ) AS WarehouseProductGroup,
  text AS WarehouseProductGroupText
FROM twhmatgrt
;