I_EnvrmtWasteGnrtrText

DDL: I_ENVRMTWASTEGNRTRTEXT Type: view BASIC

Waste Generator Text

I_EnvrmtWasteGnrtrText is a Basic CDS View that provides data about "Waste Generator Text" in SAP S/4HANA. It reads from 1 data source (I_EHSLocationRevisionNameT) and exposes 4 fields with key fields EnvrmtWasteGnrtrUUID, Language.

Data Sources (1)

SourceAliasJoin Type
I_EHSLocationRevisionNameT I_EHSLocationRevisionNameT from

Annotations (13)

NameValueLevelField
EndUserText.label Waste Generator Text view
AbapCatalog.sqlViewName IEWSTGNRTRT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey EnvrmtWasteGnrtrUUID view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EnvrmtWasteGnrtrUUID EHSLocationUUID NodeID
KEY Language Language Report Text Language
EnvrmtWasteGnrtrName EHSLocationName Waste Generator Name
_Language _Language

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_EnvrmtWasteGnrtrText.
-- 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_EnvrmtWasteGnrtrText AS
SELECT
  EHSLocationUUID AS EnvrmtWasteGnrtrUUID,
  Language,
  EHSLocationName AS EnvrmtWasteGnrtrName
FROM I_EHSLocationRevisionNameT
;