I_EnvrmtWastePartnerType

DDL: I_ENVRMTWASTEPARTNERTYPE Type: view BASIC

Waste Partner Type

I_EnvrmtWastePartnerType is a Basic CDS View that provides data about "Waste Partner Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field EnvrmtWastePartnerType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EnvrmtWastePartnerTypeText _Text $projection.EnvrmtWastePartnerType = _Text.EnvrmtWastePartnerType and _Text.Language = $session.system_language

Annotations (12)

NameValueLevelField
EndUserText.label Waste Partner Type view
AbapCatalog.sqlViewName EHEWAPATNRTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey EnvrmtWastePartnerType view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EnvrmtWastePartnerType Lower Value
_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_EnvrmtWastePartnerType.
-- 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_EnvrmtWastePartnerType AS
SELECT
  cast( domvalue_l as ehewa_waste_partner_type ) AS EnvrmtWastePartnerType
FROM dd07l
LEFT OUTER JOIN I_EnvrmtWastePartnerTypeText AS _Text ON EnvrmtWastePartnerType = _Text.EnvrmtWastePartnerType AND _Text.Language = $session.system_language  -- association [0..1]
;