I_CmmdtyHedgeRequestStatusText

DDL: I_CMMDTYHEDGEREQUESTSTATUSTEXT SQL: ICMMHDGREQSTST Type: view COMPOSITE

Commodity Hedge Requests Status - Text

I_CmmdtyHedgeRequestStatusText is a Composite CDS View that provides data about "Commodity Hedge Requests Status - Text" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 5 fields with key fields SystemStatus, Language.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICMMHDGREQSTST 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 #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
EndUserText.label Commodity Hedge Requests Status - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus System status
KEY Language Language Report Text Language
CmmdtyHedgeRequestStatusText Text
_SystemStatus _SystemStatus
_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_CmmdtyHedgeRequestStatusText.
-- 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: ICMMHDGREQSTST

CREATE VIEW I_CmmdtyHedgeRequestStatusText AS
SELECT
  SystemStatus,
  Language,
  cast( SystemStatusName as abap.char( 20 ) ) AS CmmdtyHedgeRequestStatusText
FROM I_SystemStatusText
;