I_CommodityOrdFillKindText

DDL: I_COMMODITYORDFILLKINDTEXT SQL: ICMMDTYFIKINDTXT Type: view BASIC

View for Commodity Order Fill Kind Text

I_CommodityOrdFillKindText is a Basic CDS View that provides data about "View for Commodity Order Fill Kind Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field CommodityOrderFillKind.

Data Sources (1)

SourceAliasJoin Type
dd07t DOMAIN from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYFIKINDTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CommodityOrderFillKind view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label View for Commodity Order Fill Kind Text view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CommodityOrderFillKind
CommodityOrderFillKindText

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_CommodityOrdFillKindText.
-- 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: ICMMDTYFIKINDTXT

CREATE VIEW I_CommodityOrdFillKindText AS
SELECT
  cast(substring(DOMAIN.domvalue_l, 1, 2) as cmmfdof_commodityorderfillkind preserving type ) AS CommodityOrderFillKind,
  cast(DOMAIN.ddtext as cmmfdof_cmmdtyordfillkindtext preserving type ) AS CommodityOrderFillKindText
FROM dd07t AS DOMAIN
;