C_ACMContrItmCancEvtDetsApprvl

DDL: C_ACMCONTRITMCANCEVTDETSAPPRVL SQL: CCITMCANCEVTDET Type: view CONSUMPTION

Consumption Qry for Contract Item Cancel Event Dets

C_ACMContrItmCancEvtDetsApprvl is a Consumption CDS View that provides data about "Consumption Qry for Contract Item Cancel Event Dets" in SAP S/4HANA. It reads from 1 data source (I_ACMTrdgContrItmCancEventDets) and exposes 14 fields with key fields TradingContractNumber, TradingContractItem, ContractQtyCancellationUUID.

Data Sources (1)

SourceAliasJoin Type
I_ACMTrdgContrItmCancEventDets I_ACMTrdgContrItmCancEventDets from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCITMCANCEVTDET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Consumption Qry for Contract Item Cancel Event Dets view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Contract
KEY TradingContractItem TradingContractItem Contract Item
KEY ContractQtyCancellationUUID ContractQtyCancellationUUID Contract GUID
ACMContrCanclnSqncNmbr ACMContrCanclnSqncNmbr Value Number
ACMObligationID ACMObligationID Obligation ID
ACMPricingCancellationQuantity ACMPricingCancellationQuantity Quantity
BaseUnit BaseUnit Unit of Measure
ACMCancelTradeQuantity ACMCancelTradeQuantity Qty In Trade UoM
ACMContrTrdUoM ACMContrTrdUoM UoM of Trade Qty
TradeUom
ACMSourcePricingLotID ACMSourcePricingLotID Source Prc. Lot ID
ACMLumpSumFee ACMLumpSumFee cancellation fee
SettlementCurrency SettlementCurrency Settlement Currency
ConditionQuantity ConditionQuantity Pricing Unit

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_ACMContrItmCancEvtDetsApprvl.
-- 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: CCITMCANCEVTDET

CREATE VIEW C_ACMContrItmCancEvtDetsApprvl AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  ContractQtyCancellationUUID,
  ACMContrCanclnSqncNmbr,
  ACMObligationID,
  ACMPricingCancellationQuantity,
  BaseUnit,
  ACMCancelTradeQuantity,
  ACMContrTrdUoM,
  ACMSourcePricingLotID,
  ACMLumpSumFee,
  SettlementCurrency,
  ConditionQuantity
FROM I_ACMTrdgContrItmCancEventDets
;