I_PurgDocCommodity

DDL: I_PURGDOCCOMMODITY SQL: IPURDOCCMDTY Type: view BASIC

Commodity Pricing Commodity Description

I_PurgDocCommodity is a Basic CDS View that provides data about "Commodity Pricing Commodity Description" in SAP S/4HANA. It reads from 1 data source (tbac_physcommt) and exposes 4 fields with key fields Commodity, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tbac_physcommt tbac_physcommt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPURDOCCMDTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey Commodity view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Commodity Pricing Commodity Description view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Commodity commodity Commodity Code
KEY Language langu Primary lang.
PurgDocCmmdtyDesc text User Group
_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_PurgDocCommodity.
-- 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: IPURDOCCMDTY

CREATE VIEW I_PurgDocCommodity AS
SELECT
  Commodity,
  langu AS Language,
  text AS PurgDocCmmdtyDesc
FROM tbac_physcommt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;