I_ACMTradingContractSubitem

DDL: I_ACMTRADINGCONTRACTSUBITEM SQL: IACMCMMDTYSUBITM Type: view BASIC

Trading Contract: commodity sub items

I_ACMTradingContractSubitem is a Basic CDS View that provides data about "Trading Contract: commodity sub items" in SAP S/4HANA. It reads from 1 data source (wb2_d_comsub) and exposes 4 fields with key fields TradingContract, TradingContractItem.

Data Sources (1)

SourceAliasJoin Type
wb2_d_comsub wb2_d_comsub from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMCMMDTYSUBITM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Trading Contract: commodity sub items view
VDM.viewType #BASIC view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TradingContract tkonn Trading Contract
KEY TradingContractItem tposn Item Number
PrepaymentRefDocItmValdFromDte date_from Validity Start Date
PrepaymentRefDocItmValdToDte date_to Validity End Date

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_ACMTradingContractSubitem.
-- 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: IACMCMMDTYSUBITM

CREATE VIEW I_ACMTradingContractSubitem AS
SELECT
  tkonn AS TradingContract,
  tposn AS TradingContractItem,
  date_from AS PrepaymentRefDocItmValdFromDte,
  date_to AS PrepaymentRefDocItmValdToDte
FROM wb2_d_comsub
;