I_ACMCmmdtyContrCancln_1

DDL: I_ACMCMMDTYCONTRCANCLN_1 Type: view_entity BASIC

ACM Commdty Contract Cancellation

I_ACMCmmdtyContrCancln_1 is a Basic CDS View that provides data about "ACM Commdty Contract Cancellation" in SAP S/4HANA. It reads from 1 data source (/accgo/t_cc_canc) and exposes 30 fields with key fields TradingContractNumber, TradingContractItem, ContractSubItem, ACMPrcgCancellationUUID, ACMContractPricingLotID.

Data Sources (1)

SourceAliasJoin Type
/accgo/t_cc_canc /accgo/t_cc_canc from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ACM Commdty Contract Cancellation view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber tkonn Trading Contract
KEY TradingContractItem tposn Item Number
KEY ContractSubItem tposn_com Com. item num.
KEY ACMPrcgCancellationUUID cancl_guid Contract GUID
KEY ACMContractPricingLotID new_plot_id Pricing Lot ID
ACMCancellationType cancl_typ Cancellation Type
CreatedByUser created_by Version Created By
CreationDate created_on Variant created on
LastChangedByUser changed_by User Name
LastChangeDateTime changed_on Variant Changed on
ACMTrdgContrUnderFillID underfill_id Underfill ID
ACMSourcePricingLotID src_plot_id Source Prc. Lot ID
CmmdtyPrcgPriceFixationGroupID group_id UUID
CmmdtyPrcgPrcFixationGroupUUID prcfixgrp_guid Price Fix Group ID
PurgReasonForDocCancellation absgr Reas. for Canc.
ACMObligationLinkID ob_linkid Obligtn LinkID
FinalSettlementIndicator settlmt_indi Settlement
ACMContrCanclnSqncNmbr seq_no Value Number
Side side Side
ACMNumberOfVehicles number_of_vehicles Number of Vehicles
LinkUUID prlink_id Plot Link ID
ACMContractItemTotCancelledQty total_cancld_qty
TrdgContractItemUnitOfMeasure cancl_unit Base Unit
ACMPricingCancellationQuantity cancld_qty
BaseUnit cancld_qty_uom Base Unit
CmmdtyPrcgFutureConditionType cond_type_1 Canc. Price Cond. 1
ACMCmmdtyPrcgPrimBsCndnType cond_type_2 Canc. Price Cond. 2
ACMAssignmentUUID assgn_guid Assignment GUID
PrcgCndnTrmPrSettingMethodUUID psmguid PSM GUID
PriceSettingMethodStatus psmstatus PSM Status

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_ACMCmmdtyContrCancln_1.
-- 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 I_ACMCmmdtyContrCancln_1 AS
SELECT
  tkonn AS TradingContractNumber,
  tposn AS TradingContractItem,
  tposn_com AS ContractSubItem,
  cancl_guid AS ACMPrcgCancellationUUID,
  new_plot_id AS ACMContractPricingLotID,
  cancl_typ AS ACMCancellationType,
  created_by AS CreatedByUser,
  created_on AS CreationDate,
  changed_by AS LastChangedByUser,
  changed_on AS LastChangeDateTime,
  underfill_id AS ACMTrdgContrUnderFillID,
  src_plot_id AS ACMSourcePricingLotID,
  group_id AS CmmdtyPrcgPriceFixationGroupID,
  prcfixgrp_guid AS CmmdtyPrcgPrcFixationGroupUUID,
  absgr AS PurgReasonForDocCancellation,
  ob_linkid AS ACMObligationLinkID,
  settlmt_indi AS FinalSettlementIndicator,
  seq_no AS ACMContrCanclnSqncNmbr,
  Side,
  number_of_vehicles AS ACMNumberOfVehicles,
  prlink_id AS LinkUUID,
  total_cancld_qty AS ACMContractItemTotCancelledQty,
  cancl_unit AS TrdgContractItemUnitOfMeasure,
  cancld_qty AS ACMPricingCancellationQuantity,
  cancld_qty_uom AS BaseUnit,
  cond_type_1 AS CmmdtyPrcgFutureConditionType,
  cond_type_2 AS ACMCmmdtyPrcgPrimBsCndnType,
  assgn_guid AS ACMAssignmentUUID,
  psmguid AS PrcgCndnTrmPrSettingMethodUUID,
  psmstatus AS PriceSettingMethodStatus
FROM /accgo/t_cc_canc
;