P_ACMCancelledQtyFinalData

DDL: P_ACMCANCELLEDQTYFINALDATA Type: view_entity COMPOSITE

P_ACMCancelledQtyFinalData is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_ACMCancelledQtyCnvrsn) and exposes 10 fields with key fields TradingContractNumber, TradingContractItem.

Data Sources (1)

SourceAliasJoin Type
P_ACMCancelledQtyCnvrsn P_ACMCancelledQtyCnvrsn from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
ACMCanceledQtyInBaseUnit ACMCanceledQtyInBaseUnit
AggregatedCanceledQty AggregatedCanceledQty
AggregatedCanceledQtyUnit AggregatedCanceledQtyUnit
ACMSourcePricingLotID ACMSourcePricingLotID
ContractPlant ContractPlant
ContractStorageLocation ContractStorageLocation
ContractMaterial ContractMaterial
PhysicalCommodity PhysicalCommodity

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 P_ACMCancelledQtyFinalData.
-- 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 P_ACMCancelledQtyFinalData AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  ACMCanceledQtyInBaseUnit,
  AggregatedCanceledQty,
  AggregatedCanceledQtyUnit,
  ACMSourcePricingLotID,
  ContractPlant,
  ContractStorageLocation,
  ContractMaterial,
  PhysicalCommodity
FROM P_ACMCancelledQtyCnvrsn
;