I_EnvrmtProductWasteData

DDL: I_ENVRMTPRODUCTWASTEDATA SQL: IENVPRODWD Type: view COMPOSITE Package: EHEWA_CNS_ANALYTICS

Product Waste Data

I_EnvrmtProductWasteData is a Composite CDS View that provides data about "Product Waste Data" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncProdAssgmt) and exposes 3 fields with key field ChmlCmplncInfoUUID. Part of development package EHEWA_CNS_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncProdAssgmt _ProdAssignment inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IENVPRODWD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Product Waste Data view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncWasteData ChmlCmplncInfoUUID Chemical Compliance Information PP
ChmlCmplncInfoUUID Chemical Compliance Information PP
EnvrmtWasteHazardCharcID _ChmlCmplncWasteData EnvrmtWasteHazardCharcID Waste Type ID

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_EnvrmtProductWasteData.
-- 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: IENVPRODWD

CREATE VIEW I_EnvrmtProductWasteData AS
SELECT
  I_ChmlCmplncWasteData.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  _ChmlCmplncWasteData.EnvrmtWasteHazardCharcID AS EnvrmtWasteHazardCharcID
INNER JOIN I_ChmlCmplncProdAssgmt AS _ProdAssignment ON /* join condition not captured in parsed metadata */
;