I_EWAWasteVH

DDL: I_EWAWASTEVH Type: view_entity BASIC

Waste Material values

I_EWAWasteVH is a Basic CDS View that provides data about "Waste Material values" in SAP S/4HANA. It reads from 4 data sources (makt, mara, t134, tewa_el_006) and exposes 2 fields with key field EWAWaste.

Data Sources (4)

SourceAliasJoin Type
makt makt inner
mara mara from
t134 t134 inner
tewa_el_006 tewa_el_006 inner

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Waste Material values view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey EWAWaste view
Search.searchable true view
AccessControl.personalData.blocking #REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EWAWaste mara matnr Waste Material
EWAWasteText makt maktx Waste Description

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_EWAWasteVH.
-- 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_EWAWasteVH AS
SELECT
  mara.matnr AS EWAWaste,
  makt.maktx AS EWAWasteText
FROM mara
INNER JOIN t134 ON /* join condition not captured in parsed metadata */
INNER JOIN tewa_el_006 ON /* join condition not captured in parsed metadata */
INNER JOIN makt ON /* join condition not captured in parsed metadata */
;