I_CommodityHedgeFormerMemberT

DDL: I_COMMODITYHEDGEFORMERMEMBERT SQL: ICMMFORMERMEMBER Type: view BASIC

CMM Planning Data Direction - Text

I_CommodityHedgeFormerMemberT is a Basic CDS View that provides data about "CMM Planning Data Direction - Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 4 fields with key fields CommodityHedgeFormerMember, DomainValuePosition, Language.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICMMFORMERMEMBER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
EndUserText.label CMM Planning Data Direction - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CommodityHedgeFormerMember Lower Value
KEY DomainValuePosition valpos Value key
KEY Language ddlanguage Lang.
CommodityHedgeFormerMemberText ddtext Short 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_CommodityHedgeFormerMemberT.
-- 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: ICMMFORMERMEMBER

CREATE VIEW I_CommodityHedgeFormerMemberT AS
SELECT
  cast(domvalue_l as cmm_former_member ) AS CommodityHedgeFormerMember,
  valpos AS DomainValuePosition,
  ddlanguage AS Language,
  ddtext AS CommodityHedgeFormerMemberText
FROM dd07v
;