I_CmmdtyOrdReqReasonText

DDL: I_CMMDTYORDREQREASONTEXT SQL: ICMMDTYORDRSTXT Type: view BASIC

Order Request Reason Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t Domain from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYORDRSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Order Request Reason 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 CmmdtyOrderRequestReason view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CmmdtyOrderRequestReason
CmmdtyOrderRequestReasonText dd07t 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_CmmdtyOrdReqReasonText.
-- 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: ICMMDTYORDRSTXT

CREATE VIEW I_CmmdtyOrdReqReasonText AS
SELECT
  substring(Domain.domvalue_l, 1, 2) AS CmmdtyOrderRequestReason,
  Domain.ddtext AS CmmdtyOrderRequestReasonText
FROM dd07t AS Domain
;