C_CustCommodityQuantityItemTP

DDL: C_CUSTCOMMODITYQUANTITYITEMTP Type: view_entity CONSUMPTION

Customer Commodity Item

C_CustCommodityQuantityItemTP is a Consumption CDS View that provides data about "Customer Commodity Item" in SAP S/4HANA. It reads from 1 data source (I_CustCommodityQuantityItemTP) and exposes 15 fields with key field UniqueSpecificationItemUUID.

Data Sources (1)

SourceAliasJoin Type
I_CustCommodityQuantityItemTP I_CustCommodityQuantityItemTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Customer Commodity Item view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
Feature SW:LOG_CMM_PRC_SFWS_CMMDTY_QTY view
Search.searchable true view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY UniqueSpecificationItemUUID UniqueSpecificationItemUUID Spec ID
UniqueSpecificationUUID UniqueSpecificationUUID Spec ID
Commodity Commodity Commodity Code
CommodityName CommodityName
CommodityQuantity CommodityQuantity Commodity Quantity
CommodityQuantityUoM CommodityQuantityUoM Commodity Qty Uom
ReferenceQuantity ReferenceQuantity Comm Refer Quantity
ReferenceQuantityUoM ReferenceQuantityUoM Comm RefQty Uom
CreatedByUser CreatedByUser User Name
CreatedByUserName CreatedByUserName Person Resp.
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
ChangedByUserName ChangedByUserName Full Name
LastChangeDateTime LastChangeDateTime Timestamp
LocalLastChangeDateTime LocalLastChangeDateTime Time Stamp

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 C_CustCommodityQuantityItemTP.
-- 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.

CREATE VIEW C_CustCommodityQuantityItemTP AS
SELECT
  UniqueSpecificationItemUUID,
  UniqueSpecificationUUID,
  Commodity,
  CommodityName,
  CommodityQuantity,
  CommodityQuantityUoM,
  ReferenceQuantity,
  ReferenceQuantityUoM,
  CreatedByUser,
  CreatedByUserName,
  CreationDateTime,
  LastChangedByUser,
  ChangedByUserName,
  LastChangeDateTime,
  LocalLastChangeDateTime
FROM I_CustCommodityQuantityItemTP
;