I_CmmdtyOrdReqMsgTypeText

DDL: I_CMMDTYORDREQMSGTYPETEXT SQL: ICMDTYMSGDT Type: view COMPOSITE

Basic View for Message Type

I_CmmdtyOrdReqMsgTypeText is a Composite CDS View that provides data about "Basic View for Message Type" in SAP S/4HANA. It reads from 1 data source (I_CommodityOrderRequest) and exposes 2 fields with key field CommodityOrderRequestUUID.

Data Sources (1)

SourceAliasJoin Type
I_CommodityOrderRequest I_CommodityOrderRequest from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICMDTYMSGDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Basic View for Message Type view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #COMPOSITE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CommodityOrderRequestUUID CommodityOrderRequestUUID Key
CmmdtyOrdReqMessageDateTime

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_CmmdtyOrdReqMsgTypeText.
-- 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: ICMDTYMSGDT

CREATE VIEW I_CmmdtyOrdReqMsgTypeText AS
SELECT
  CommodityOrderRequestUUID,
  max(_MessageLog.CmmdtyOrdReqMessageDateTime) AS CmmdtyOrdReqMessageDateTime
FROM I_CommodityOrderRequest
;