I_CmmdtyOrdReqExchTypeText

DDL: I_CMMDTYORDREQEXCHTYPETEXT SQL: ICMMDTYORDEXCTXT Type: view BASIC

Cmmdty Order Request Exchange Type Text

I_CmmdtyOrdReqExchTypeText is a Basic CDS View that provides data about "Cmmdty Order Request Exchange Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field CmmdtyOrderRequestExchangeType.

Data Sources (1)

SourceAliasJoin Type
dd07t Domain from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYORDEXCTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
ObjectModel.representativeKey CmmdtyOrderRequestExchangeType view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Cmmdty Order Request Exchange Type Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CmmdtyOrderRequestExchangeType
CmmdtyOrdReqExchangeTypeText
Language dd07t ddlanguage Lang.

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_CmmdtyOrdReqExchTypeText.
-- 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: ICMMDTYORDEXCTXT

CREATE VIEW I_CmmdtyOrdReqExchTypeText AS
SELECT
  cast ( substring(Domain.domvalue_l, 1, 3) as cmmfdor_ordreqexchangetype preserving type ) AS CmmdtyOrderRequestExchangeType,
  cast( Domain.ddtext as cmmfdor_ordreqexchangetypetext preserving type ) AS CmmdtyOrdReqExchangeTypeText,
  Domain.ddlanguage AS Language
FROM dd07t AS Domain
;