I_CmmdtyOrdReqStatusText

DDL: I_CMMDTYORDREQSTATUSTEXT SQL: ICMMDTYORDSTSTXT Type: view BASIC

Commodity Order Request Status Text

I_CmmdtyOrdReqStatusText is a Basic CDS View that provides data about "Commodity Order Request Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field CmmdtyOrderRequestStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t Domain from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYORDSTSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Commodity Order Request Status Text 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 CmmdtyOrderRequestStatus view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CmmdtyOrderRequestStatus
CmmdtyOrderRequestStatusText

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_CmmdtyOrdReqStatusText.
-- 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: ICMMDTYORDSTSTXT

CREATE VIEW I_CmmdtyOrdReqStatusText AS
SELECT
  cast(substring(Domain.domvalue_l, 1, 2) as cmmfdor_orderrequeststatus preserving type ) AS CmmdtyOrderRequestStatus,
  cast(Domain.ddtext as cmmfdor_ordreqstatustext preserving type ) AS CmmdtyOrderRequestStatusText
FROM dd07t AS Domain
;