A_ACMTrdgContrItmDet

DDL: A_ACMTRDGCONTRITMDET Type: view_entity CONSUMPTION

Item

A_ACMTrdgContrItmDet is a Consumption CDS View that provides data about "Item" in SAP S/4HANA. It reads from 1 data source (R_ACMTrdgContrItmDetTP) and exposes 13 fields with key fields TradingContractNumber, TradingContractItem. It is exposed through 3 OData services (API_ACMCHGDOCS, API_ACMNOMINATION, API_ACMTRADINGCONTRACT).

Data Sources (1)

SourceAliasJoin Type
R_ACMTrdgContrItmDetTP R_ACMTrdgContrItmDetTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name TradingContractItem_Type view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Item view
AccessControl.authorizationCheck #CHECK view

OData Services (3)

ServiceBindingVersionContractRelease
API_ACMCHGDOCS API_ACMCHGDOCS V4 C2 NOT_RELEASED
API_ACMNOMINATION API_ACMNOMINATION V4 C2 NOT_RELEASED
API_ACMTRADINGCONTRACT API_ACMTRADINGCONTRACT V4 C2 NOT_RELEASED

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
TradingContractType TradingContractType
ContractMaterial ContractMaterial
Commodity Commodity Commodity Code
ACMTrdgContrActualStartDate ACMTrdgContrActualStartDate
ActualStartDateTo ActualStartDateTo
ContractPlant ContractPlant
TradingContractItemQuantity TradingContractItemQuantity
UnitOfMeasure UnitOfMeasure Unit Protected Qty
PricingApproach PricingApproach
ValuationPoint ValuationPoint
ContractStorageLocation ContractStorageLocation

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 A_ACMTrdgContrItmDet.
-- 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 A_ACMTrdgContrItmDet AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  TradingContractType,
  ContractMaterial,
  Commodity,
  ACMTrdgContrActualStartDate,
  ActualStartDateTo,
  ContractPlant,
  TradingContractItemQuantity,
  UnitOfMeasure,
  PricingApproach,
  ValuationPoint,
  ContractStorageLocation
FROM R_ACMTrdgContrItmDetTP
;